[Scummvm-git-logs] scummvm master -> 7e134dc9266da1896580a7714378d2fc41bdc11c

ccawley2011 ccawley2011 at gmail.com
Sat Oct 2 14:15:58 UTC 2021


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:
7e134dc926 RISCOS: Only use -mno-poke-function-name in non-debug builds


Commit: 7e134dc9266da1896580a7714378d2fc41bdc11c
    https://github.com/scummvm/scummvm/commit/7e134dc9266da1896580a7714378d2fc41bdc11c
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2021-10-02T15:15:42+01:00

Commit Message:
RISCOS: Only use -mno-poke-function-name in non-debug builds

Changed paths:
    configure


diff --git a/configure b/configure
index 18cf1c90d4..29bf8af4d6 100755
--- a/configure
+++ b/configure
@@ -6155,7 +6155,9 @@ case $_host_os in
 		fi
 		;;
 	riscos)
-		append_var CXXFLAGS "-mno-poke-function-name"
+		if test "$_debug_build" = no; then
+			append_var CXXFLAGS "-mno-poke-function-name"
+		fi
 		append_var CXXFLAGS "-ffunction-sections"
 		append_var CXXFLAGS "-fdata-sections"
 		append_var LDFLAGS "-Wl,--gc-sections"




More information about the Scummvm-git-logs mailing list