From ba94c8181df07c951486264a37f13656b5ea798e Mon Sep 17 00:00:00 2001 From: Scott Fennell Date: Tue, 18 Aug 2020 15:11:28 -0500 Subject: [PATCH] #1038 filter -llibxml2.tbd from llvm-config --system-libs as temporary workaround for missing library (#1039) --- trick_source/codegen/Interface_Code_Gen/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trick_source/codegen/Interface_Code_Gen/makefile b/trick_source/codegen/Interface_Code_Gen/makefile index 7715cdaa..6a188537 100644 --- a/trick_source/codegen/Interface_Code_Gen/makefile +++ b/trick_source/codegen/Interface_Code_Gen/makefile @@ -56,7 +56,7 @@ endif ifeq ($(TRICK_HOST_TYPE),Darwin) CLANGLIBS += $(shell $(LLVM_HOME)/bin/llvm-config --libs) -CLANGLIBS += $(shell $(LLVM_HOME)/bin/llvm-config --system-libs) +CLANGLIBS += $(filter-out -llibxml2.tbd,$(shell $(LLVM_HOME)/bin/llvm-config --system-libs)) CLANGLIBS += -lc++abi endif