summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/rbspeex/Makefile12
-rw-r--r--tools/ucl/src/Makefile12
2 files changed, 18 insertions, 6 deletions
diff --git a/tools/rbspeex/Makefile b/tools/rbspeex/Makefile
index 785a99239a..89e21f8022 100644
--- a/tools/rbspeex/Makefile
+++ b/tools/rbspeex/Makefile
@@ -35,15 +35,21 @@ COMPILETARGET = mingw
35else 35else
36# OS X specifics. Needs to consider cross compiling for Windows. 36# OS X specifics. Needs to consider cross compiling for Windows.
37ifeq ($(findstring APPLE,$(CPPDEFINES)),APPLE) 37ifeq ($(findstring APPLE,$(CPPDEFINES)),APPLE)
38# when building libs for OS X build for both i386 and ppc at the same time. 38# When building for 10.4+ we need to use gcc. Otherwise clang is used, so use
39# that to determine if we need to set arch and isysroot.
40ifeq ($(findstring __clang__,$(CPPDEFINES)),__clang__)
41CFLAGS += -mmacosx-version-min=10.5
42else
43# when building libs for OS X 10.4+ build for both i386 and ppc at the same time.
39# This creates fat objects, and ar can only create the archive but not operate 44# This creates fat objects, and ar can only create the archive but not operate
40# on it. As a result the ar call must NOT use the u (update) flag. 45# on it. As a result the ar call must NOT use the u (update) flag.
41ARCHFLAGS = -arch ppc -arch i386 46ARCHFLAGS += -arch ppc -arch i386
42# building against SDK 10.4 is not compatible with gcc-4.2 (default on newer Xcode) 47# building against SDK 10.4 is not compatible with gcc-4.2 (default on newer Xcode)
43# might need adjustment for older Xcode. 48# might need adjustment for older Xcode.
44CC ?= gcc-4.0 49CC = gcc-4.0
45CFLAGS += -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 50CFLAGS += -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4
46NATIVECC ?= gcc-4.0 51NATIVECC ?= gcc-4.0
52endif
47COMPILETARGET = darwin 53COMPILETARGET = darwin
48else 54else
49COMPILETARGET = posix 55COMPILETARGET = posix
diff --git a/tools/ucl/src/Makefile b/tools/ucl/src/Makefile
index ca29d7c8a8..a741f1ee8c 100644
--- a/tools/ucl/src/Makefile
+++ b/tools/ucl/src/Makefile
@@ -32,15 +32,21 @@ COMPILETARGET = mingw
32else 32else
33# OS X specifics. Needs to consider cross compiling for Windows. 33# OS X specifics. Needs to consider cross compiling for Windows.
34ifeq ($(findstring APPLE,$(CPPDEFINES)),APPLE) 34ifeq ($(findstring APPLE,$(CPPDEFINES)),APPLE)
35# when building libs for OS X build for both i386 and ppc at the same time. 35# When building for 10.4+ we need to use gcc. Otherwise clang is used, so use
36# that to determine if we need to set arch and isysroot.
37ifeq ($(findstring __clang__,$(CPPDEFINES)),__clang__)
38CFLAGS += -mmacosx-version-min=10.5
39else
40# when building libs for OS X 10.4+ build for both i386 and ppc at the same time.
36# This creates fat objects, and ar can only create the archive but not operate 41# This creates fat objects, and ar can only create the archive but not operate
37# on it. As a result the ar call must NOT use the u (update) flag. 42# on it. As a result the ar call must NOT use the u (update) flag.
38ARCHFLAGS = -arch ppc -arch i386 43ARCHFLAGS += -arch ppc -arch i386
39# building against SDK 10.4 is not compatible with gcc-4.2 (default on newer Xcode) 44# building against SDK 10.4 is not compatible with gcc-4.2 (default on newer Xcode)
40# might need adjustment for older Xcode. 45# might need adjustment for older Xcode.
41CC ?= gcc-4.0 46CC = gcc-4.0
42CFLAGS += -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 47CFLAGS += -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4
43NATIVECC ?= gcc-4.0 48NATIVECC ?= gcc-4.0
49endif
44COMPILETARGET = darwin 50COMPILETARGET = darwin
45else 51else
46COMPILETARGET = posix 52COMPILETARGET = posix