Skip to content

Instantly share code, notes, and snippets.

@menangen
Created June 17, 2018 14:38
Show Gist options
  • Save menangen/1ac066a6e91ba9fb8046c6a04892263b to your computer and use it in GitHub Desktop.
Save menangen/1ac066a6e91ba9fb8046c6a04892263b to your computer and use it in GitHub Desktop.
Tor compiling from sources (Mac OS)
# Build libevent:
./configure --prefix=/Volumes/RAMDisk/opt/libevent --disable-shared --enable-static --with-pic
make -j4
make install
# Build tor:
./configure --enable-static-libevent --with-libevent-dir=/Volumes/RAMDisk/opt/libevent/
make -j4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment