This file contains hidden or 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
| #!/bin/bash | |
| # Canonical way to install folly on OS 10.9 (Mavericks) | |
| # For deps try: brew install boost glog gflags jemalloc scons autoconf automake libtool | |
| git clone git@github.com:facebook/folly.git fb-folly | |
| cd fb-folly | |
| # Commit 79c25e6f4a breaks complilation on OS X, so checkout previous version | |
| git checkout 6d89f3d33268eaa12d5eb03a4afa5caa856306c5 | |
| git clone https://code.google.com/p/double-conversion/ |