[Scummvm-git-logs] scummvm master -> b8e8c9c6356a609ab1a0619cc8cac0b5e08e6225

zeldin marcus at mc.pp.se
Sat Oct 22 13:47:31 CEST 2016


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:
cd6f1e3f24 DC: Add Dreamcast specific clean target
b8e8c9c635 DC: Remove workaround for GCC bug #42841


Commit: cd6f1e3f245e137573b893bb49ad35db697de789
    https://github.com/scummvm/scummvm/commit/cd6f1e3f245e137573b893bb49ad35db697de789
Author: Marcus Comstedt (marcus at mc.pp.se)
Date: 2016-10-22T13:46:58+02:00

Commit Message:
DC: Add Dreamcast specific clean target

Changed paths:
    backends/platform/dc/dreamcast.mk



diff --git a/backends/platform/dc/dreamcast.mk b/backends/platform/dc/dreamcast.mk
index 9d8a53e..98b5bae 100644
--- a/backends/platform/dc/dreamcast.mk
+++ b/backends/platform/dc/dreamcast.mk
@@ -6,6 +6,8 @@ ASFLAGS := $(CXXFLAGS)
 
 dist : SCUMMVM.BIN IP.BIN plugin_dist
 
+clean : dcclean
+
 plugin_dist : plugins
 	@[ -z "$(PLUGINS)" ] || for p in $(or $(PLUGINS),none); do \
 	  t="`basename \"$$p\" | LC_CTYPE=C tr '[:lower:]' '[:upper:]'`"; \
@@ -37,3 +39,10 @@ ip.txt : $(srcdir)/backends/platform/dc/ip.txt.in
 dcdist : dist
 	mkdir -p dcdist/scummvm
 	cp scummvm.elf SCUMMVM.BIN IP.BIN *.PLG dcdist/scummvm/
+
+dcclean :
+	$(RM) backends/platform/dc/plugin_head.o
+	$(RM) scummvm.bin SCUMMVM.BIN ip.txt IP.BIN *.PLG
+	$(RM_REC) dcdist
+
+.PHONY: dcclean


Commit: b8e8c9c6356a609ab1a0619cc8cac0b5e08e6225
    https://github.com/scummvm/scummvm/commit/b8e8c9c6356a609ab1a0619cc8cac0b5e08e6225
Author: Marcus Comstedt (marcus at mc.pp.se)
Date: 2016-10-22T13:46:58+02:00

Commit Message:
DC: Remove workaround for GCC bug #42841

We now require GCC 4.6, where this bug has been fixed.

Changed paths:
    configure



diff --git a/configure b/configure
index b22a7e6..e5d5129 100755
--- a/configure
+++ b/configure
@@ -2827,8 +2827,6 @@ if test -n "$_host"; then
 			append_var CXXFLAGS "-fschedule-insns2"
 			append_var CXXFLAGS "-fomit-frame-pointer"
 			append_var CXXFLAGS "-fdelete-null-pointer-checks"
-			# no-delayed-branch is a workaround for GCC bug #42841 - "SH: Assembler complains pcrel too far."
-			append_var CXXFLAGS "-fno-delayed-branch"
 			_backend="dc"
 			_build_scalers=no
 			_mad=yes





More information about the Scummvm-git-logs mailing list