reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #!/bin/bash -xe export BASE=`pwd` export LLVM_SRC=${BASE}/llvm export POLLY_SRC=${LLVM_SRC}/tools/polly export CLANG_SRC=${LLVM_SRC}/tools/clang export LLVM_BUILD=${BASE}/llvm_build if [ -e /proc/cpuinfo ]; then procs=`cat /proc/cpuinfo | grep processor | wc -l` else procs=1 fi if ! test -d ${LLVM_SRC}; then git clone http://llvm.org/git/llvm.git ${LLVM_SRC} fi if ! test -d ${POLLY_SRC}; then git clone http://llvm.org/git/polly.git ${POLLY_SRC} fi if ! test -d ${CLANG_SRC}; then git clone http://llvm.org/git/clang.git ${CLANG_SRC} fi mkdir -p ${LLVM_BUILD} cd ${LLVM_BUILD} cmake ${LLVM_SRC} make -j$procs -l$procs make check-polly |