[Scummvm-git-logs] scummvm master -> 871c9d26b20c73c0df43475362c289d19c72bdbc

csnover csnover at users.noreply.github.com
Sun Jan 15 18:18:20 CET 2017


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
871c9d26b2 BUILD: Fix compilation of test runner on Dreamcast


Commit: 871c9d26b20c73c0df43475362c289d19c72bdbc
    https://github.com/scummvm/scummvm/commit/871c9d26b20c73c0df43475362c289d19c72bdbc
Author: Colin Snover (github.com at zetafleet.com)
Date: 2017-01-15T11:17:52-06:00

Commit Message:
BUILD: Fix compilation of test runner on Dreamcast

LIBS needs to go after LDFLAGS for the Dreamcast linker to run
correctly.

Changed paths:
    test/module.mk


diff --git a/test/module.mk b/test/module.mk
index 9ab1a8b..5ccfe16 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





More information about the Scummvm-git-logs mailing list