From e244f85c0b5b753aabfd4e37a2f4ca70b2a12ae0 Mon Sep 17 00:00:00 2001 From: Kjell Braden Date: Sat, 21 Dec 2019 17:46:29 +0100 Subject: use llvm-config from env for version check --- llvm_mode/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm_mode/Makefile b/llvm_mode/Makefile index f1b7cb23..5a836a0e 100644 --- a/llvm_mode/Makefile +++ b/llvm_mode/Makefile @@ -136,8 +136,8 @@ else endif ifneq "$(CLANGVER)" "$(LLVMVER)" - CC = $(shell llvm-config --bindir)/clang - CXX = $(shell llvm-config --bindir)/clang++ + CC = $(shell $(LLVM_CONFIG) --bindir)/clang + CXX = $(shell $(LLVM_CONFIG) --bindir)/clang++ endif # If prerequisites are not given, warn, do not build anything, and exit with code 0 -- cgit 1.4.1 From 49b3c9e0a0e8c5d90ccb43dfced3b5c61c12e5bf Mon Sep 17 00:00:00 2001 From: Kjell Braden Date: Sat, 21 Dec 2019 17:48:03 +0100 Subject: remove remainder of git submodule commit 7028c9b59d6171426457494a179cd55022cd483b only removed the .gitmodules entry. this commit removes the corresponding directory, so `git submodule status` won't fail anymore. --- unicorn_mode/unicorn | 1 - 1 file changed, 1 deletion(-) delete mode 160000 unicorn_mode/unicorn diff --git a/unicorn_mode/unicorn b/unicorn_mode/unicorn deleted file mode 160000 index db248c8d..00000000 --- a/unicorn_mode/unicorn +++ /dev/null @@ -1 +0,0 @@ -Subproject commit db248c8d8167e47ee07943961d1ce6244d57602b -- cgit 1.4.1