aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorColin Snover2017-01-15 11:17:15 -0600
committerColin Snover2017-01-15 11:17:52 -0600
commit871c9d26b20c73c0df43475362c289d19c72bdbc (patch)
tree3146e34493960f47492e2f4898b31be12f1d5348 /test
parentd4e2697adba99d0c3e309f11c22e78ef2c6f81d7 (diff)
downloadscummvm-rg350-871c9d26b20c73c0df43475362c289d19c72bdbc.tar.gz
scummvm-rg350-871c9d26b20c73c0df43475362c289d19c72bdbc.tar.bz2
scummvm-rg350-871c9d26b20c73c0df43475362c289d19c72bdbc.zip
BUILD: Fix compilation of test runner on Dreamcast
LIBS needs to go after LDFLAGS for the Dreamcast linker to run correctly.
Diffstat (limited to 'test')
-rw-r--r--test/module.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/module.mk b/test/module.mk
index 9ab1a8b60f..5ccfe16ff9 100644
--- a/test/module.mk
+++ b/test/module.mk
@@ -16,7 +16,7 @@ endif
#
TEST_FLAGS := --runner=StdioPrinter --no-std --no-eh --include=$(srcdir)/test/cxxtest_mingw.h
TEST_CFLAGS := $(CFLAGS) -I$(srcdir)/test/cxxtest
-TEST_LDFLAGS := $(LIBS) $(LDFLAGS)
+TEST_LDFLAGS := $(LDFLAGS) $(LIBS)
TEST_CXXFLAGS := $(filter-out -Wglobal-constructors,$(CXXFLAGS))
ifdef HAVE_GCC3