Skip to content

Commit a0a3a26

Browse files
committed
Fix make install for asan build
Now the makescript finds libclang_rt.asan-x86_64.so for example.
1 parent df5f437 commit a0a3a26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,9 @@ JL_PRIVATE_LIBS-$(USE_SYSTEM_CSL) += libpthread
255255
endif
256256
ifeq ($(SANITIZE),1)
257257
ifeq ($(USECLANG),1)
258-
JL_PRIVATE_LIBS-1 += libclang_rt.asan
258+
JL_PRIVATE_LIBS-0 += libclang_rt.asan-*
259259
else
260-
JL_PRIVATE_LIBS-1 += libasan
260+
JL_PRIVATE_LIBS-0 += libasan
261261
endif
262262
endif
263263

0 commit comments

Comments
 (0)