From 26965a8d83cfc9b974836ce5e296b20242c6e832 Mon Sep 17 00:00:00 2001 From: Oleg Yukhnevich Date: Fri, 29 Dec 2023 19:11:25 +0200 Subject: [PATCH] fix profiles to run tests --- profiles/android | 1 - profiles/apple | 1 + profiles/linux-arm64 | 1 + profiles/linux-x64 | 1 + 4 files changed, 3 insertions(+), 1 deletion(-) diff --git a/profiles/android b/profiles/android index 5eb4eed..4a7451e 100644 --- a/profiles/android +++ b/profiles/android @@ -3,7 +3,6 @@ include(base) os=Android os.api_level=21 compiler=clang -compiler.libcxx=libc++ compiler.version=14 [tool_requires] diff --git a/profiles/apple b/profiles/apple index 2ecb564..45176e3 100644 --- a/profiles/apple +++ b/profiles/apple @@ -2,3 +2,4 @@ include(base) [settings] compiler=apple-clang compiler.version=15 +compiler.libcxx=libc++ diff --git a/profiles/linux-arm64 b/profiles/linux-arm64 index 0657fdb..be605ea 100644 --- a/profiles/linux-arm64 +++ b/profiles/linux-arm64 @@ -3,6 +3,7 @@ include(base) os=Linux arch=armv8 compiler=gcc +compiler.libcxx=libstdc++11 compiler.version=8 [buildenv] CC=/usr/bin/aarch64-linux-gnu-gcc-8 diff --git a/profiles/linux-x64 b/profiles/linux-x64 index 75e972f..22872ec 100644 --- a/profiles/linux-x64 +++ b/profiles/linux-x64 @@ -3,6 +3,7 @@ include(base) os=Linux arch=x86_64 compiler=gcc +compiler.libcxx=libstdc++11 compiler.version=8 [buildenv] CC=/usr/bin/x86_64-linux-gnu-gcc-8