This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Quick Instructions for Compiling under OS X | |
1. Install gcc from Homebrew and set the env variables + aliases: | |
export CC=/usr/local/bin/gcc-5 | |
export CXX=/usr/local/bin/g++-5 | |
export CPP=/usr/local/bin/cpp-5 | |
export LD=/usr/local/bin/gcc-5 | |
alias c++=/usr/local/bin/c++-5 | |
alias g++=/usr/local/bin/g++-5 |