Skip to content

Instantly share code, notes, and snippets.

@alfredbaudisch
Last active January 7, 2016 12:07
Show Gist options
  • Save alfredbaudisch/68b99e84c058c82dc264 to your computer and use it in GitHub Desktop.
Save alfredbaudisch/68b99e84c058c82dc264 to your computer and use it in GitHub Desktop.
Install Erlang for Elixir on OS X with working Observer to fix the wxe_driver.so not found error
- Download Erlang source from http://www.erlang.org/download.html
- tar zxvf otp_src_18.2.1.tar.gz
- Configure for 32 bits (wxe_driver.so won't be generated for 64-bits):
- CFLAGS=-O0 ./configure --disable-hipe --enable-smp-support --enable-threads --enable-kernel-poll
- ./otp_build autoconf
- ./configure && make && sudo make install
- which erl
- Install Elixir
- iex
- :observer.start should finally work
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment