浏览代码

Paths fixed.

main
offa 7 年前
父节点
当前提交
80d4113667
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. +3
    -2
      script/ci_install.sh

+ 3
- 2
script/ci_install.sh 查看文件

@@ -26,8 +26,6 @@ cd ${DEPENDENCY_DIR}
# --- LibC++
if [[ "${CXX}" = clang* ]]
then
mkdir build && cd build

if [[ ! -d "$(ls -A ${DEPENDENCY_DIR}/llvm-source)" ]]
then
LLVM_RELEASE=release_50
@@ -35,6 +33,7 @@ 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

mkdir build && cd build

cmake -DCMAKE_C_COMPILER=${CC} \
-DCMAKE_CXX_COMPILER=${CXX} \
@@ -42,6 +41,8 @@ then
-DCMAKE_INSTALL_PREFIX=/usr \
../llvm-source
make cxx -j4
else
cd build
fi

sudo make install-cxxabi install-cxx

正在加载...
取消
保存