From 5a8ae1b28e46cb8d68534985610d4fcd959b32f9 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Sat, 28 Feb 2026 10:52:27 +0100 Subject: [PATCH] Fix asan --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index a27c36c..6893e79 100644 --- a/conanfile.py +++ b/conanfile.py @@ -40,7 +40,7 @@ class Bin2CPP(ConanFile): if self.settings.os == "Windows": del self.options.fPIC - if(self.options.asan and (self.settings.build_type == "RelWithDebInfo" or self.settings.build_type == "Debug")): + if(self.options.asan): self.options["mimalloc"].asan = True def requirements(self):