Skip to content

Instantly share code, notes, and snippets.

@sushihangover
Created February 11, 2014 23:50
Show Gist options
  • Save sushihangover/8946898 to your computer and use it in GitHub Desktop.
Save sushihangover/8946898 to your computer and use it in GitHub Desktop.
OS-X LLVM / CLANG Initial Build Script
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