[Scummvm-git-logs] scummvm master -> 9d8dada5253aa2f7864b131e01a5edabb896ad4c

Botje noreply at scummvm.org
Mon Feb 16 17:09:11 UTC 2026


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

Summary:
9d8dada525 HACK: Use --start-group to solve circular linker errors


Commit: 9d8dada5253aa2f7864b131e01a5edabb896ad4c
    https://github.com/scummvm/scummvm/commit/9d8dada5253aa2f7864b131e01a5edabb896ad4c
Author: Dries Harnie (dries at harnie.be)
Date: 2026-02-16T18:08:47+01:00

Commit Message:
HACK: Use --start-group to solve circular linker errors

Changed paths:
    Makefile.common


diff --git a/Makefile.common b/Makefile.common
index 21b7e4392fe..88351b73af9 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -129,7 +129,7 @@ endif
 
 # The build rule for the ScummVM executable
 $(EXECUTABLE): $(DETECT_OBJS) $(OBJS)
-	+$(QUIET_LINK)$(LD) $(LDFLAGS) $(PRE_OBJS_FLAGS) $+ $(POST_OBJS_FLAGS) $(LIBS) -o $@
+	+$(QUIET_LINK)$(LD) $(LDFLAGS) -Wl,--start-group $(PRE_OBJS_FLAGS) $+ $(POST_OBJS_FLAGS) -Wl,--end-group $(LIBS) -o $@
 	+$(QUIET)$(LS) $@
 
 ifdef SPLIT_DWARF




More information about the Scummvm-git-logs mailing list