summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2015-06-07 03:47:41 -0700
committerTim Angus <tim@ngus.net>2015-06-07 12:04:00 +0100
commit14eed774d4da2b49104efabb77bab8a7175a8612 (patch)
tree4a125a72d538052688d3b16577c2b01ee80f1ed5 /Makefile
parent7028ec39e80d70ccd39bfdb763fb1eb712292a29 (diff)
use osxcross compilers
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index c7289e19..eff1a6b1 100644
--- a/Makefile
+++ b/Makefile
@@ -433,13 +433,13 @@ ifeq ($(PLATFORM),darwin)
endif
ifeq ($(CROSS_COMPILING),1)
- ifeq ($(ARCH),ppc)
- CC=powerpc-apple-darwin10-gcc
- RANLIB=powerpc-apple-darwin10-ranlib
+ ifeq ($(ARCH),x86_64)
+ CC=x86_64-apple-darwin13-cc
+ RANLIB=x86_64-apple-darwin13-ranlib
else
ifeq ($(ARCH),x86)
- CC=i686-apple-darwin10-gcc
- RANLIB=i686-apple-darwin10-ranlib
+ CC=i386-apple-darwin13-cc
+ RANLIB=i386-apple-darwin13-ranlib
else
$(error Architecture $(ARCH) is not supported when cross compiling)
endif