From 2eebfe8ba17172cc3a30977fdef0e6d6434d6dbf Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Wed, 20 Apr 2022 00:53:13 +0200 Subject: [PATCH] ci: disable libc++ for clang for now There is something wrong with the ubuntu env. --- .ci/build-cs | 3 ++- .ci/install-env | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.ci/build-cs b/.ci/build-cs index 56cf595..cb80b4e 100755 --- a/.ci/build-cs +++ b/.ci/build-cs @@ -11,7 +11,8 @@ current_triplet=`$CC -dumpmachine` if [ "$CC" = "clang" ]; then export CXX="clang++" - export CXXFLAGS="-stdlib=libc++" + # clang is busted in CI for some reason + #export CXXFLAGS="-stdlib=libc++" elif [ "$CC" = "gcc" ]; then export CXX="g++" else diff --git a/.ci/install-env b/.ci/install-env index fed211f..10316cb 100755 --- a/.ci/install-env +++ b/.ci/install-env @@ -30,7 +30,7 @@ mkdir -p host_tools echo ">> Updating package database..." -[ -n "$is_linux" ] && sudo apt-get update && sudo apt-get install libc++-dev +[ -n "$is_linux" ] && sudo apt-get update echo ">> Installing meson..."