Skip to content

Commit cf39d8f

Browse files
committed
Fix missing LLVM libraries
1 parent d0ee6c4 commit cf39d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ ifeq ($(call has, JIT), 1)
254254
ifeq ("$(CHECK_LLVM_LIBS)", "0")
255255
OBJS_EXT += t2c.o
256256
CFLAGS += -g $(shell $(LLVM_CONFIG) --cflags)
257-
LDFLAGS += $(shell $(LLVM_CONFIG) --libs)
257+
LDFLAGS += $(shell $(LLVM_CONFIG) --libfiles)
258258
else
259259
$(error No llvm-config-18 installed. Check llvm-config-18 installation in advance, or use "ENABLE_T2C=0" to disable tier-2 LLVM compiler)
260260
endif

0 commit comments

Comments
 (0)