C3

Internal for the C3 project.

Building

Building clang (Linux and macOS)

This will require 20GB of disk space and 16GB of RAM. This method creates static binaries, which can be redistributed without hassle.

  1. Install cmake, subversion, build-essential, libffi-dev, libncursesw5-dev
  2. curl -LO http://releases.llvm.org/5.0.0/llvm-5.0.0.src.tar.xz
  3. tar xf llvm-5.0.0.src.tar.xz
  4. curl -LO http://releases.llvm.org/5.0.0/cfe-5.0.0.src.tar.xz
  5. tar xf cfe-5.0.0.src.tar.xz
  6. mv cfe-5.0.0.src llvm-5.0.0.src/tools/clang
  7. cd llvm-5.0.0.src
  8. mkdir build; cd build
  9. cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=$HOME/llvm-5-c3 -DLIBCLANG_BUILD_STATIC=ON -DLLVM_BUILD_LLVM_DYLIB=OFF -DLLVM_TARGETS_TO_BUILD=X86 -DCMAKE_BUILD_TYPE=MinSizeRel -DLLVM_POLLY_BUILD=OFF -DLLVM_BUILD_RUNTIME=OFF -DLLVM_ENABLE_TERMINFO=OFF -DLLVM_ENABLE_LIBEDIT=OFF -DLLVM_ENABLE_ZLIB=OFF -DLLVM_ENABLE_FFI=OFF ..
  10. make -j8; make install
  11. Take a nap.
  12. cp lib/libclang.a "$HOME/llvm-5-c3/lib/"
  13. Set the following variables. Note that you will need to set them every time you compile, so add them to your bashrc or make a script and source it.