[Scummvm-git-logs] scummvm master -> 26f085d44b541306bf58041ba20c480c846f3855

bgK bastien.bouclet at gmail.com
Sun Feb 4 21:52:55 CET 2018


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

Summary:
fc46db8263 PS3: Use -mno-fp-in-toc instead of -mminimal-toc
26f085d44b PS3: Enable the mt32 emulator


Commit: fc46db8263af534f2a584bf9098989b15cc0100e
    https://github.com/scummvm/scummvm/commit/fc46db8263af534f2a584bf9098989b15cc0100e
Author: Bastien Bouclet (bastien.bouclet at gmail.com)
Date: 2018-02-04T21:37:24+01:00

Commit Message:
PS3: Use -mno-fp-in-toc instead of -mminimal-toc

-mno-fp-in-toc is enough not to overflow the TOC. According to the GCC
documentation this allows for faster code to be generated than with
-mminimal-toc.

Changed paths:
    configure


diff --git a/configure b/configure
index bd001c9..77e0d89 100755
--- a/configure
+++ b/configure
@@ -2666,7 +2666,7 @@ case $_host_os in
 		_libcurlpath="$PS3DEV/portlibs/ppu:$PS3DEV/portlibs/ppu/bin"
 
 		append_var DEFINES "-DPLAYSTATION3"
-		append_var CXXFLAGS "-mcpu=cell -mminimal-toc -I$PSL1GHT/ppu/include -I$PS3DEV/portlibs/ppu/include"
+		append_var CXXFLAGS "-mcpu=cell -mno-fp-in-toc -I$PSL1GHT/ppu/include -I$PS3DEV/portlibs/ppu/include"
 		append_var LDFLAGS "-L$PSL1GHT/ppu/lib -L$PS3DEV/portlibs/ppu/lib"
 		# The network libraries are statically linked and need to be specified in the following order
 		append_var SDL_NET_LIBS "-lSDL_net -lnet -lsysmodule"


Commit: 26f085d44b541306bf58041ba20c480c846f3855
    https://github.com/scummvm/scummvm/commit/26f085d44b541306bf58041ba20c480c846f3855
Author: Bastien Bouclet (bastien.bouclet at gmail.com)
Date: 2018-02-04T21:52:33+01:00

Commit Message:
PS3: Enable the mt32 emulator

Either the newer munt, the newer toolchain or the better compiler flags
made it run well enough.

Changed paths:
    configure


diff --git a/configure b/configure
index 77e0d89..085e98d 100755
--- a/configure
+++ b/configure
@@ -3212,7 +3212,6 @@ if test -n "$_host"; then
 			fi
 			;;
 		ps3)
-			_mt32emu=no
 			_timidity=no
 			_vkeybd=yes
 			_eventrec=no





More information about the Scummvm-git-logs mailing list