소스 검색

Standard libraries of the ci builds updated.

main
offa 5 년 전
부모
커밋
69a6726f65
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      script/ci_build.sh

+ 4
- 1
script/ci_build.sh 파일 보기

@@ -14,10 +14,13 @@ cp script/settings.yml ~/.conan/
if [[ "${CXX}" == clang* ]]
then
export CXXFLAGS="-stdlib=libc++"
CONAN_STDLIB=libc++
else
CONAN_STDLIB=libstdc++11
fi

mkdir build && cd build
conan install --build missing -s compiler.libcxx=libstdc++11 ..
conan install --build missing -s compiler.libcxx=${CONAN_STDLIB} ..

cmake ..
make

Loading…
취소
저장