diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-09-27 20:58:01 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-09-27 20:58:01 +0000 |
commit | 199c563cc8d08b7157c7976ad5f4a945275b5841 (patch) | |
tree | f348d7896ae3c6792d96c6797a1cfb95d1c9778c /llvm/unittests/Makefile.unittest | |
parent | 67b216a1d9b0642d59603297df9e3fff0fa8f84f (diff) | |
download | bcm5719-llvm-199c563cc8d08b7157c7976ad5f4a945275b5841.tar.gz bcm5719-llvm-199c563cc8d08b7157c7976ad5f4a945275b5841.zip |
Link order: it matters.
llvm-svn: 82925
Diffstat (limited to 'llvm/unittests/Makefile.unittest')
-rw-r--r-- | llvm/unittests/Makefile.unittest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Makefile.unittest b/llvm/unittests/Makefile.unittest index 355e6a34f51..214a1e865ea 100644 --- a/llvm/unittests/Makefile.unittest +++ b/llvm/unittests/Makefile.unittest @@ -25,7 +25,7 @@ LIBS += -lGoogleTest -lUnitTestMain $(LLVMUnitTestExe): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(Echo) Linking $(BuildMode) unit test $(TESTNAME) $(StripWarnMsg) $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \ - $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS) + $(LIBS) $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(Echo) ======= Finished Linking $(BuildMode) Unit test $(TESTNAME) \ $(StripWarnMsg) |