summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2019-07-28 23:44:10 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2019-07-28 23:44:10 +0100
commit18cfe7fc1567e9e8ff899ab95007e7477ce4d253 (patch)
treec3bbcaa45592bcfa8acf467fbb835e70610e62fc
parent2e3a468d5453109114e06940deed58a0025b2baf (diff)
downloadbuildsystem-18cfe7fc1567e9e8ff899ab95007e7477ce4d253.tar.gz
buildsystem-18cfe7fc1567e9e8ff899ab95007e7477ce4d253.tar.bz2
Set extra CFLAGS for Amiga m68k build to improve performance
-rw-r--r--makefiles/Makefile.tools4
1 files changed, 4 insertions, 0 deletions
diff --git a/makefiles/Makefile.tools b/makefiles/Makefile.tools
index 3021890..a613c93 100644
--- a/makefiles/Makefile.tools
+++ b/makefiles/Makefile.tools
@@ -206,6 +206,10 @@ else
CXXFLAGS := $(CXXFLAGS) -U__STRICT_ANSI__ -I$(GCCSDK_INSTALL_ENV)/include
LDFLAGS := $(LDFLAGS) -L$(GCCSDK_INSTALL_ENV)/lib
+ ifeq ($(HOST),m68k-unknown-amigaos)
+ CFLAGS += -fomit-frame-pointer -m68020
+ endif
+
PREFIX ?= $(GCCSDK_INSTALL_ENV)
endif