diff options
| author | gingerBill <bill@gingerbill.org> | 2021-04-24 21:58:44 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-04-24 21:58:44 +0100 |
| commit | 5c26cf9d73b441af2cc49549e4fb299126f82717 (patch) | |
| tree | a32f39e633f7c71acc3d388189bb53c9829b29d0 /Makefile | |
| parent | 6048d25d360fdb537258ffb6e0783a0482595fb7 (diff) | |
Try `llvm-config-11` in the Makefil
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,8 +12,8 @@ ifeq ($(OS), Darwin) LDFLAGS:=$(LDFLAGS) $(shell llvm-config) -lLLVM-C endif ifeq ($(OS), Linux) - CFLAGS:=$(CFLAGS) $(shell llvm-config --cxxflags --ldflags) -DLLVM_BACKEND_SUPPORT -DUSE_NEW_LLVM_ABI_SYSTEM - LDFLAGS:=$(LDFLAGS) $(shell llvm-config) -lLLVM-C + CFLAGS:=$(CFLAGS) $(shell llvm-config-11 --cxxflags --ldflags) -DLLVM_BACKEND_SUPPORT -DUSE_NEW_LLVM_ABI_SYSTEM + LDFLAGS:=$(LDFLAGS) $(shell llvm-config-11) -lLLVM-C endif all: debug demo |