소스 검색

Build parameters.

main
offa 7 년 전
부모
커밋
a31dcbac20
1개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. +9
    -1
      script/ci_install.sh

+ 9
- 1
script/ci_install.sh 파일 보기

@@ -33,12 +33,20 @@ then
git clone --depth=1 -b ${LLVM_RELEASE} https://github.com/llvm-mirror/libcxx.git llvm-source/projects/libcxx
git clone --depth=1 -b ${LLVM_RELEASE} https://github.com/llvm-mirror/libcxxabi.git llvm-source/projects/libcxxabi

if [[ -z "${BUILD_32_BITS}" ]]
then
export BUILD_32_BITS=OFF
echo disabling 32 bit build
fi

mkdir -p build && cd build

cmake -DCMAKE_C_COMPILER=${CC} \
-DCMAKE_CXX_COMPILER=${CXX} \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
-DLIBCXX_ABI_UNSTABLE=ON \
-DLLVM_USE_SANITIZER=${LIBCXX_SANITIZER} \
-DLLVM_BUILD_32_BITS=${BUILD_32_BITS} \
../llvm-source
make cxx -j4
else

Loading…
취소
저장