From 85063f493c44266fb947a2add206e252c03adc47 Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Thu, 1 Sep 2011 05:02:44 -0700 Subject: [PATCH] Revert attempt to be clever about which LLVM libraries to link in--just link all of them. (This was causing build problems for some folks.) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 70ac778f..79bf0f3d 100644 --- a/Makefile +++ b/Makefile @@ -11,9 +11,9 @@ CLANG_LIBS = -lclangFrontend -lclangDriver \ -lclangAnalysis -lclangAST -lclangLex -lclangBasic ISPC_LIBS=$(CLANG_LIBS) \ - $(shell llvm-config --ldflags --libs backend bitreader bitwriter codegen engine mcjit scalaropts native analysis core instcombine ipa ipo linker instrumentation) \ + $(shell llvm-config --ldflags --libs) \ -lpthread -ldl -ISPC_TEST_LIBS=$(shell llvm-config --ldflags --libs bitreader backend interpreter engine jit mcjit) \ +ISPC_TEST_LIBS=$(shell llvm-config --ldflags --libs) \ -lpthread -ldl LLVM_CXXFLAGS=$(shell llvm-config --cppflags)