From a0a3a2629d1754e9fecf0b2a4d6e819c35b987b3 Mon Sep 17 00:00:00 2001 From: Zentrik Date: Sat, 26 Oct 2024 17:08:52 +0100 Subject: [PATCH] Fix `make install` for asan build Now the makescript finds libclang_rt.asan-x86_64.so for example. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4fd8b878c5d1f9..f141e56ba67831 100644 --- a/Makefile +++ b/Makefile @@ -255,9 +255,9 @@ JL_PRIVATE_LIBS-$(USE_SYSTEM_CSL) += libpthread endif ifeq ($(SANITIZE),1) ifeq ($(USECLANG),1) -JL_PRIVATE_LIBS-1 += libclang_rt.asan +JL_PRIVATE_LIBS-0 += libclang_rt.asan-* else -JL_PRIVATE_LIBS-1 += libasan +JL_PRIVATE_LIBS-0 += libasan endif endif