summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2012-01-02 17:45:16 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2012-01-02 17:45:16 +0000
commit1f0e6530386e2295d9573f3f9cb7fd75f2e87450 (patch)
treeb6e88d5b54274d053b23b2a18d3e177fb1f55ba3
parentd7b8b10fecbd352de4c5501a3ab064a818127146 (diff)
downloadrockbox-1f0e6530386e2295d9573f3f9cb7fd75f2e87450.tar.gz
rockbox-1f0e6530386e2295d9573f3f9cb7fd75f2e87450.zip
Fix cross compiling on OS X.
- The OS X specific flags must not be set when cross compiling. Check for a MinGW compiler on OS X before adding them. - Do not set CC explicitly in chinachippatcher, it will be set from Rockbox Utility's Makefile. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31527 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--rbutil/chinachippatcher/Makefile1
-rw-r--r--rbutil/libtools.make2
2 files changed, 2 insertions, 1 deletions
diff --git a/rbutil/chinachippatcher/Makefile b/rbutil/chinachippatcher/Makefile
index cdcca865b0..390260ebfd 100644
--- a/rbutil/chinachippatcher/Makefile
+++ b/rbutil/chinachippatcher/Makefile
@@ -7,7 +7,6 @@
7# $Id$ 7# $Id$
8# 8#
9CFLAGS = -g -Wall 9CFLAGS = -g -Wall
10CC = gcc
11 10
12OUTPUT = chinachippatcher 11OUTPUT = chinachippatcher
13 12
diff --git a/rbutil/libtools.make b/rbutil/libtools.make
index d25a97127c..4e66161011 100644
--- a/rbutil/libtools.make
+++ b/rbutil/libtools.make
@@ -45,12 +45,14 @@ endif
45NATIVECC = gcc 45NATIVECC = gcc
46CC ?= gcc 46CC ?= gcc
47ifeq ($(findstring Darwin,$(shell uname)),Darwin) 47ifeq ($(findstring Darwin,$(shell uname)),Darwin)
48ifneq ($(findstring mingw,$(CROSS)$(CC)),mingw)
48# building against SDK 10.4 is not compatible with gcc-4.2 (default on newer Xcode) 49# building against SDK 10.4 is not compatible with gcc-4.2 (default on newer Xcode)
49# might need adjustment for older Xcode. 50# might need adjustment for older Xcode.
50CC ?= gcc-4.0 51CC ?= gcc-4.0
51CFLAGS += -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 52CFLAGS += -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4
52NATIVECC ?= gcc-4.0 53NATIVECC ?= gcc-4.0
53endif 54endif
55endif
54WINDRES = windres 56WINDRES = windres
55 57
56BUILD_DIR ?= $(TARGET_DIR)build 58BUILD_DIR ?= $(TARGET_DIR)build