BUILD: Fix compilation of test runner on Dreamcast

LIBS needs to go after LDFLAGS for the Dreamcast linker to run
correctly.
This commit is contained in:
Colin Snover 2017-01-15 11:17:15 -06:00
parent d4e2697adb
commit 871c9d26b2

View File

@ -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