Skip to content

Instantly share code, notes, and snippets.

@JayKickliter
Created June 27, 2020 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JayKickliter/dd0016bd5545de466e7ca158d4b19417 to your computer and use it in GitHub Desktop.
Save JayKickliter/dd0016bd5545de466e7ca158d4b19417 to your computer and use it in GitHub Desktop.
How I compile Erlang from source on macOS

How I compile Erlang from source on macOS

CFLAGS="-Og -ggdb3 -fno-omit-frame-pointer" \
CXXFLAGS="-Og -ggdb3 -fno-omit-frame-pointer" \
./configure \
      --prefix=$HOME/.local \
      --disable-silent-rules \
      --enable-dynamic-ssl-lib \
      --with-ssl=/usr/local/opt/openssl \
      --disable-hipe \
      --enable-sctp \
      --enable-shared-zlib \
      --enable-smp-support \
      --enable-threads \
      --enable-wx \
      --without-javac \
      --enable-darwin-64bit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment