Gitweb links:
...log
http://git.netsurf-browser.org/buildsystem.git/shortlog/18cfe7fc1567e9e8f...
...commit
http://git.netsurf-browser.org/buildsystem.git/commit/18cfe7fc1567e9e8ff8...
...tree
http://git.netsurf-browser.org/buildsystem.git/tree/18cfe7fc1567e9e8ff899...
The branch, master has been updated
via 18cfe7fc1567e9e8ff899ab95007e7477ce4d253 (commit)
from 2e3a468d5453109114e06940deed58a0025b2baf (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/buildsystem.git/commit/?id=18cfe7fc1567e9e...
commit 18cfe7fc1567e9e8ff899ab95007e7477ce4d253
Author: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Commit: Chris Young <chris(a)unsatisfactorysoftware.co.uk>
Set extra CFLAGS for Amiga m68k build to improve performance
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
-----------------------------------------------------------------------
Summary of changes:
makefiles/Makefile.tools | 4 ++++
1 file changed, 4 insertions(+)
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
--
NetSurf Project build system