[Scummvm-git-logs] scummvm master -> 41e1dc00beb81fe675f56648c6f3a8fe373c02d1

bluegr bluegr at gmail.com
Sun Feb 16 15:54:40 UTC 2020


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:
41e1dc00be Fix building when selected engines don't have their own debugger


Commit: 41e1dc00beb81fe675f56648c6f3a8fe373c02d1
    https://github.com/scummvm/scummvm/commit/41e1dc00beb81fe675f56648c6f3a8fe373c02d1
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2020-02-16T17:54:36+02:00

Commit Message:
Fix building when selected engines don't have their own debugger

In this case, the linker optimizes out Debugger which get required
later by Engine due to @dreammaster rework. Building with all engines
prevents optimization because several engines subclass Debugger and they
are included before gui.a in linker command line

Changed paths:
    Makefile.common


diff --git a/Makefile.common b/Makefile.common
index 1867d50..950f52e 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -27,9 +27,9 @@ MODULES := test devtools base $(MODULES)
 
 # After the game specific modules follow the shared modules
 MODULES += \
+	engines \
 	gui \
 	backends \
-	engines \
 	video \
 	image \
 	graphics \




More information about the Scummvm-git-logs mailing list