Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 11th, 2012  |  syntax: None  |  size: 0.76 KB  |  hits: 20  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. MAKEFLAGS=-j1                           \
  2. CPPFLAGS='-DNDEBUG -I/opt/local/include'\
  3. CFLAGS='-O2 -arch x86_64'               \
  4. ARCHFLAGS='-arch x86_64'                \
  5. LDFLAGS=-L/opt/local/lib                \
  6. CC=/usr/bin/gcc-4.2                     \
  7. CPP=/usr/bin/cpp-4.2                    \
  8. ./configure                             \
  9.   --enable-hipe                         \
  10.   --enable-smp-support                  \
  11.   --enable-threads                      \
  12.   --enable-kernel-poll                  \
  13.   --enable-darwin-64bit                 \
  14.   --enable-dynamic-ssl-lib              \
  15.   --enable-shared-zlib                  \
  16.   --disable-debug                       \
  17.   --prefix=/opt/erlang/r14b04           \
  18. && make                                 \
  19. && sudo make install