Created
December 23, 2013 18:07
-
-
Save stevendborrelli/8101862 to your computer and use it in GitHub Desktop.
Compiling mesos on OSX 10.9.x
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
#Using homebrew | |
# gcc 4.9 build fails on template warnings | |
# clang not supported yet | |
brew tap homebrew/versions | |
brew install gcc47 | |
git clone https://github.com/apache/mesos | |
cd mesos | |
mkdir build | |
cd build | |
CC=gcc-4.7 CXX=g++-4.7 ../configure | |
make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment