Created
December 27, 2014 16:33
-
-
Save tpoechtrager/4aa2c9562cb41bd9ee86 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Makefile b/Makefile | |
index e863e35..64885b5 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -1,17 +1,20 @@ | |
-PLATFORM:= $(shell ./enet/config.guess) | |
+PLATFORM_NATIVE:= $(shell ./enet/config.guess) | |
SHELL:= /bin/bash | |
-CPUINFO:= -march=native | |
OPTFLAGS:= -O3 -fomit-frame-pointer -ffast-math -fno-finite-math-only | |
DEBUG:= -ggdb3 | |
CC:= gcc | |
CXX:= g++ | |
+ifeq (, $(PLATFORM)) | |
+CPUINFO:= -march=native | |
+PLATFORM:= $(PLATFORM_NATIVE) | |
ifneq (, $(findstring 64,$(PLATFORM))) | |
override CPUINFO+= -m64 | |
else | |
override CPUINFO+= -m32 | |
endif | |
+endif | |
ifneq (, $(findstring mingw,$(PLATFORM))) | |
WIN:= 1 | |
@@ -20,10 +23,19 @@ else ifneq (,$(findstring darwin,$(PLATFORM))) | |
MAC:= 1 | |
CC:= clang | |
CXX:= clang++ | |
+IOSMIN:= 5.0 | |
OSXMIN:= 10.7 | |
-override CPUINFO+= -arch x86_64 -mmacosx-version-min=$(OSXMIN) | |
+ifneq (, $(findstring arm,$(PLATFORM))) | |
+override CPUINFO+= -mios-version-min=$(IOSMIN) -flto | |
+else | |
+override CPUINFO+= -mmacosx-version-min=$(OSXMIN) | |
+endif | |
+ifneq (, $(findstring clang,$(CXX))) | |
override CXXFLAGS+= -stdlib=libc++ | |
else | |
+override CXXFLAGS+= -static-libgcc -static-libstdc++ | |
+endif | |
+else | |
LINUX:= 1 | |
endif | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment