Skip to content

Instantly share code, notes, and snippets.

@stevendborrelli
Created December 23, 2013 18:07
Show Gist options
  • Save stevendborrelli/8101862 to your computer and use it in GitHub Desktop.
Save stevendborrelli/8101862 to your computer and use it in GitHub Desktop.
Compiling mesos on OSX 10.9.x
#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