aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/ios_makefile.inc
blob: bcff7ed9889e95c13294b6cf0d0f4788991a04df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Settings for iOS.
ifeq ($(TARGET), IOS)
        BUILD_FOR_IOS_SIMULATOR := false
	ifeq ($(IOS_ARCH), x86_64)
	     	BUILD_FOR_IOS_SIMULATOR := true
	endif
	ifeq ($(IOS_ARCH), i386)
	     	BUILD_FOR_IOS_SIMULATOR := true
	endif
	ifeq ($(BUILD_FOR_IOS_SIMULATOR), true)
		IPHONEOS_PLATFORM := $(shell xcrun --sdk iphonesimulator \
			--show-sdk-platform-path)
		IPHONEOS_SYSROOT := $(shell xcrun --sdk iphonesimulator \
			--show-sdk-path)
	else
		IPHONEOS_PLATFORM := $(shell xcrun --sdk iphoneos --show-sdk-platform-path)
		IPHONEOS_SYSROOT := $(shell xcrun --sdk iphoneos --show-sdk-path)
	endif
	IOS_SDK_VERSION := $(shell xcrun --sdk iphoneos --show-sdk-version)
	MIN_SDK_VERSION := 9.0
	# Override IOS_ARCH with armv7, armv7s, arm64, i386, or x86_64.
	IOS_ARCH := x86_64
	CXXFLAGS += -miphoneos-version-min=$(MIN_SDK_VERSION) \
		-DGEMMLOWP_ALLOW_SLOW_SCALAR_FALLBACK \
		-fembed-bitcode \
		-Wno-c++11-narrowing \
		-mno-thumb \
		-fno-exceptions \
		-isysroot \
		${IPHONEOS_SYSROOT} \
		-arch $(IOS_ARCH) \
		-O3
	CCFLAGS += -miphoneos-version-min=$(MIN_SDK_VERSION) \
		-fembed-bitcode \
		-mno-thumb \
		-isysroot \
		${IPHONEOS_SYSROOT} \
		-arch $(IOS_ARCH) \
		-O3
	LDFLAGS := -fembed-bitcode \
		-miphoneos-version-min=${MIN_SDK_VERSION} \
		-arch $(IOS_ARCH)
	OBJDIR := $(OBJDIR)ios_$(IOS_ARCH)/
	LIBDIR := $(LIBDIR)ios_$(IOS_ARCH)/
	BINDIR := $(BINDIR)ios_$(IOS_ARCH)/
	DEPDIR := $(DEPDIR)ios_$(IOS_ARCH)/
endif