소스 검색

CI Debug output.

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

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

@@ -26,8 +26,12 @@ cd ${DEPENDENCY_DIR}
# --- LibC++
if [[ "${CXX}" = clang* ]]
then
if [[ ! -d "$(ls -A ${DEPENDENCY_DIR}/llvm-source)" ]]
pwd
ls

if [[ ! -d "${DEPENDENCY_DIR}/llvm-source" ]]
then
echo "*** LLVM Source not available ***"
LLVM_RELEASE=release_50
git clone --depth=1 -b ${LLVM_RELEASE} https://github.com/llvm-mirror/llvm.git llvm-source
git clone --depth=1 -b ${LLVM_RELEASE} https://github.com/llvm-mirror/libcxx.git llvm-source/projects/libcxx
@@ -42,6 +46,7 @@ then
../llvm-source
make cxx -j4
else
echo "*** LLVM Source available ***"
cd build
fi


Loading…
취소
저장