From 49090b43679e23949ea085b907d94ae0487df105 Mon Sep 17 00:00:00 2001 From: Yury Bogomolov Date: Wed, 3 Apr 2024 14:46:45 +0000 Subject: [PATCH] remove cpp compiler settings --- recipes/aerospike-client-c/all/conanfile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes/aerospike-client-c/all/conanfile.py b/recipes/aerospike-client-c/all/conanfile.py index 4ad2fe1e712d3..25aa43f0d454d 100644 --- a/recipes/aerospike-client-c/all/conanfile.py +++ b/recipes/aerospike-client-c/all/conanfile.py @@ -37,6 +37,8 @@ def validate(self): def configure(self): if self.options.shared: self.options.rm_safe("fPIC") + self.settings.rm_safe("compiler.libcxx") + self.settings.rm_safe("compiler.cppstd") def requirements(self): self.requires("openssl/[>=1.1 <4]")