3 # Compile and install OSXCROSS: https://github.com/tpoechtrager/osxcross
5 #########################
6 # Check the host platform
8 include $(BUILD_DIR)/Makefile.common.hostcheck
10 #########################
11 # Set the target platform
13 TARGET_PLATFORM = osx_x86
18 CC = $(OSXCROSS_ROOT_DIR)/target/bin/i386-apple-darwin13-cc
19 CXX = $(OSXCROSS_ROOT_DIR)/target/bin/i386-apple-darwin13-c++
20 AS = $(OSXCROSS_ROOT_DIR)/target/bin/i386-apple-darwin13-as
21 AR = $(OSXCROSS_ROOT_DIR)/target/bin/i386-apple-darwin13-ar
27 SOEXT = .osx_x86.dylib
36 PLATCFLAGS = -fstrict-aliasing
37 PLATCXXFLAGS = -fstrict-aliasing
38 PLATLDFLAGS = -shared -lm
39 PLATLDXFLAGS = -shared -lm
44 RETRODEFS = -D__LIBRETRO__
53 DEFINES = $(PLATDEFS) $(COREDEFINES) $(RETRODEFS)
54 CFLAGS = $(PLATCFLAGS) $(RETROCFLAGS) $(DEFINES) $(INCLUDES)
55 CXXFLAGS = $(PLATCXXFLAGS) $(RETROCXXFLAGS) $(DEFINES) $(INCLUDES)
56 LDFLAGS = $(PLATLDFLAGS) $(RETROLDFLAGS)
57 LDXFLAGS = $(PLATLDXFLAGS) $(RETROLDXFLAGS)
66 CFLAGS += -O3 -DNDEBUG
67 CXXFLAGS += -O3 -DNDEBUG
70 ifneq ($(LOG_PERFORMANCE),)
71 CFLAGS += -DLOG_PERFORMANCE
72 CXXFLAGS += -DLOG_PERFORMANCE
75 ####################################
76 # Variable setup for Makefile.common
82 include $(BUILD_DIR)/Makefile.common
87 include $(BUILD_DIR)/Makefile.rules