Created
February 11, 2014 23:50
-
-
Save sushihangover/8946898 to your computer and use it in GitHub Desktop.
OS-X LLVM / CLANG Initial Build Script
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
| git clone http://llvm.org/git/llvm.git | |
| pushd llvm/tools | |
| git clone http://llvm.org/git/clang.git | |
| popd | |
| pushd llvm/projects | |
| git clone http://llvm.org/git/compiler-rt.git | |
| popd | |
| pushd llvm/projects | |
| git clone http://llvm.org/git/test-suite.git | |
| popd | |
| mkdir llvmbuild | |
| pushd llvmbuild | |
| ../llvm/configure --enable-optimized --enable-jit --prefix=/Users/administrator/llvm-install | |
| make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment