diff options
author | Max Horn | 2011-01-28 10:27:50 +0000 |
---|---|---|
committer | Max Horn | 2011-01-28 10:27:50 +0000 |
commit | a35a45aa2e2f1a31a819add3f9b090efa4adaa5d (patch) | |
tree | a5701c46542a64316a21b844e8577e14e2af7d4b | |
parent | c44f9bdb1d5122f3f7b7f08a4ff51ca58d4ef4e1 (diff) | |
download | scummvm-rg350-a35a45aa2e2f1a31a819add3f9b090efa4adaa5d.tar.gz scummvm-rg350-a35a45aa2e2f1a31a819add3f9b090efa4adaa5d.tar.bz2 scummvm-rg350-a35a45aa2e2f1a31a819add3f9b090efa4adaa5d.zip |
Patch #3149416: Support for linking with "as-needed"
svn-id: r55588
-rw-r--r-- | test/module.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/module.mk b/test/module.mk index 8b74950217..20425b6359 100644 --- a/test/module.mk +++ b/test/module.mk @@ -29,7 +29,7 @@ endif test: test/runner ./test/runner test/runner: test/runner.cpp $(TEST_LIBS) - $(QUIET_LINK)$(CXX) $(TEST_CXXFLAGS) $(CPPFLAGS) $(TEST_LDFLAGS) $(TEST_CFLAGS) -o $@ $+ + $(QUIET_LINK)$(CXX) $(TEST_CXXFLAGS) $(CPPFLAGS) $(TEST_CFLAGS) -o $@ $+ $(TEST_LDFLAGS) test/runner.cpp: $(TESTS) @mkdir -p test $(srcdir)/test/cxxtest/cxxtestgen.py $(TEST_FLAGS) -o $@ $+ |