diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-02-26 07:44:16 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-02-26 07:44:16 +0000 |
commit | 8d91e19389dfb2ae64ab1ce1cf60f1ea116bbb62 (patch) | |
tree | 2bd6f6a21ee44441efbb33c71c3b403863f6815c /unittests | |
parent | e1fbd759683ed55e389881199a63d7374796d589 (diff) | |
download | external_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.unittest | 4 |
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) |