From e2b208a5e1dfece2462f595dec2d8f8ff3c1b98f Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Fri, 2 Oct 2009 19:52:33 +0000 Subject: [PATCH] Try to fix unit test linking on linux ... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83252 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Makefile.unittest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unittests/Makefile.unittest b/unittests/Makefile.unittest index e09c08f208e..76051e497c9 100644 --- a/unittests/Makefile.unittest +++ b/unittests/Makefile.unittest @@ -20,12 +20,12 @@ LLVMUnitTestExe = $(BuildMode)/$(TESTNAME)Tests$(EXEEXT) CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/ CPP.Flags += -Wno-variadic-macros -LIBS += -lGoogleTest -lUnitTestMain +TESTLIBS = -lGoogleTest -lUnitTestMain $(LLVMUnitTestExe): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(Echo) Linking $(BuildMode) unit test $(TESTNAME) $(StripWarnMsg) $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \ - $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS) + $(TESTLIBS) $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS) $(Echo) ======= Finished Linking $(BuildMode) Unit test $(TESTNAME) \ $(StripWarnMsg)