Przeglądaj źródła

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

main
offa 6 lat temu
rodzic
commit
b3e6a9cb99
1 zmienionych plików z 2 dodań i 4 usunięć
  1. +2
    -4
      script/ci_build.sh

+ 2
- 4
script/ci_build.sh Wyświetl plik

# Conan # Conan
apt-get install -y python3-pip apt-get install -y python3-pip
pip3 install conan pip3 install conan
conan profile new default --detect


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


mkdir build && cd build mkdir build && cd build


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

Ładowanie…
Anuluj
Zapisz