From ab4a11b1f39b33b0bb4bbac76ff920c22fda36d2 Mon Sep 17 00:00:00 2001 From: Silvio Kunaschk Date: Tue, 14 May 2019 18:36:31 +0200 Subject: [PATCH] build MinGW job with libstdc++ --- azure-pipelines.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 11861077..113eac9e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -119,7 +119,10 @@ jobs: conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan mkdir build cd build - conan install .. -s build_type=Release --profile ../.ci/conan_profile_mingw_gcc8 --build=missing + # conan install .. -s build_type=Release --profile ../.ci/conan_profile_mingw_gcc8 --build=missing + # build in CI with libc++ as conan MinGW doesn't build variants with libstdc++11 for now + # see also - https://github.com/conan-io/conan-package-tools/issues/375 + conan install .. -s build_type=Release --profile ../.ci/conan_profile_mingw_gcc8 -s compiler.libcxx=libstdc++ --build=missing cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release .. cmake --build . displayName: build VCVRack