Skip to content

Commit 4ef61b8

Browse files
committed
Fix missing LLVM libraries
1 parent 8d46115 commit 4ef61b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ ifeq ($(call has, JIT), 1)
252252
ifeq ("$(CHECK_LLVM_LIBS)", "0")
253253
OBJS_EXT += t2c.o
254254
CFLAGS += -g $(shell $(LLVM_CONFIG) --cflags)
255-
LDFLAGS += $(shell $(LLVM_CONFIG) --libs)
255+
LDFLAGS += $(shell $(LLVM_CONFIG) --libfiles)
256256
else
257257
$(error No llvm-config-18 installed. Check llvm-config-18 installation in advance, or use "ENABLE_T2C=0" to disable tier-2 LLVM compiler)
258258
endif

0 commit comments

Comments
 (0)