소스 검색

Fix old GCC ABI used by Conan (#162).

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

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

@@ -5,20 +5,18 @@ set -ex
# Conan
apt-get install -y python3-pip
pip3 install conan
conan profile new default --detect

if [[ "${CXX}" == clang* ]]
then
export CXXFLAGS="-stdlib=libc++"
CONAN_STDLIB=libc++
else
CONAN_STDLIB=libstdc++11
conan profile update settings.compiler.libcxx=libstdc++11 default
fi

mkdir build && cd build

conan install \
-s compiler.libcxx=${CONAN_STDLIB} \
-g cmake_find_package \
-g cmake_paths \
..

Loading…
취소
저장