1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Description: Change some build flags
This patch contains build flags for the sh architecture.
Author: Bas Wijnen <wijnen@debian.org>
Forwarded: no
Last-Update: 2012-03-10
Index: openmsx-catapult-0.14.0/build/cpu-sh.mk
===================================================================
--- /dev/null
+++ openmsx-catapult-0.14.0/build/cpu-sh.mk
@@ -0,0 +1,10 @@
+#
+# Configuration for Renesas SuperH (Little-Endian) CPUs.
+# EXPERIMENTAL AND UNTESTED
+
+# Big or little endian?
+BIG_ENDIAN:=false
+
+# Default build flavour.
+CATAPULT_FLAVOUR?=opt
+
Index: openmsx-catapult-0.14.0/build/cpu-sheb.mk
===================================================================
--- /dev/null
+++ openmsx-catapult-0.14.0/build/cpu-sheb.mk
@@ -0,0 +1,8 @@
+#
+# Configuration for Renesas SuperH (Big-Endian) CPUs. EXPERIMENTAL AND UNTESTED
+#
+# Big or little endian?
+BIG_ENDIAN:=true
+#
+# Default build flavour.
+CATAPULT_FLAVOUR?=opt
|