From 6d4d98b82fd39173176b2ca7568b1e710b849880 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 26 Sep 2022 15:10:33 +0200 Subject: Work around issue with sanitizers messing up rpath --- build/root.build | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build/root.build b/build/root.build index 3c72be0..b6e7004 100644 --- a/build/root.build +++ b/build/root.build @@ -1,8 +1,6 @@ # file : build/root.build # license : MIT; see accompanying LICENSE file -using bash - cxx.std = latest using cxx @@ -19,3 +17,8 @@ if ($cxx.class == 'msvc') cxx.coptions += /wd4251 /wd4275 /wd4800 elif ($cxx.id == 'gcc') cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object # libbutl + +# Work around issue with sanitizers messing up rpath (see issue #1219). +# +if ($build.mode != 'skeleton') + using bash -- cgit v1.1