aboutsummaryrefslogtreecommitdiffstats
path: root/unittests
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-02-26 07:44:16 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-02-26 07:44:16 +0000
commit8d91e19389dfb2ae64ab1ce1cf60f1ea116bbb62 (patch)
tree2bd6f6a21ee44441efbb33c71c3b403863f6815c /unittests
parente1fbd759683ed55e389881199a63d7374796d589 (diff)
downloadexternal_llvm-8d91e19389dfb2ae64ab1ce1cf60f1ea116bbb62.zip
external_llvm-8d91e19389dfb2ae64ab1ce1cf60f1ea116bbb62.tar.gz
external_llvm-8d91e19389dfb2ae64ab1ce1cf60f1ea116bbb62.tar.bz2
Remove libtool.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65517 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Makefile.unittest4
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/Makefile.unittest b/unittests/Makefile.unittest
index 259e297..5832d6a 100644
--- a/unittests/Makefile.unittest
+++ b/unittests/Makefile.unittest
@@ -21,11 +21,11 @@ include $(LEVEL)/Makefile.common
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
CPP.Flags += -Wno-variadic-macros
-LD.Flags += -lGoogleTest -lUnitTestMain
+LIBS += -lGoogleTest -lUnitTestMain
$(LLVMUnitTestExe): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
$(Echo) Linking $(BuildMode) unit test $(TESTNAME) $(StripWarnMsg)
- $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
+ $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
$(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
$(Echo) ======= Finished Linking $(BuildMode) Unit test $(TESTNAME) \
$(StripWarnMsg)