This repository was archived by the owner on Mar 30, 2019. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ IOS_SIMULATOR_64_CC=$(shell xcrun -find -sdk iphonesimulator clang) -arch x86_64
1919
2020# iOS ARMV7 build commands and flags
2121IOS_ARMV7_SDK_ROOT =$(shell xcrun --sdk iphoneos --show-sdk-path)
22- IOS_ARMV7_CC =$(shell xcrun -find -sdk iphoneos clang) -arch armv7 --sysroot=$(IOS_ARMV7_SDK_ROOT ) -miphoneos-version-min=7.0
22+ IOS_ARMV7_CC =$(shell xcrun -find -sdk iphoneos clang) -arch armv7 -fembed-bitcode - -sysroot=$(IOS_ARMV7_SDK_ROOT ) -miphoneos-version-min=7.0
2323
2424# iOS ARMV7S build commands and flags
2525IOS_ARMV7S_SDK_ROOT =$(shell xcrun --sdk iphoneos --show-sdk-path)
26- IOS_ARMV7S_CC =$(shell xcrun -find -sdk iphoneos clang) -arch armv7s --sysroot=$(IOS_ARMV7S_SDK_ROOT ) -miphoneos-version-min=7.0
26+ IOS_ARMV7S_CC =$(shell xcrun -find -sdk iphoneos clang) -arch armv7s -fembed-bitcode - -sysroot=$(IOS_ARMV7S_SDK_ROOT ) -miphoneos-version-min=7.0
2727
2828# iOS ARM64 build commands and flags
2929IOS_ARM64_SDK_ROOT =$(shell xcrun --sdk iphoneos --show-sdk-path)
30- IOS_ARM64_CC =$(shell xcrun -find -sdk iphoneos clang) -arch arm64 --sysroot=$(IOS_ARM64_SDK_ROOT ) -miphoneos-version-min=7.0
30+ IOS_ARM64_CC =$(shell xcrun -find -sdk iphoneos clang) -arch arm64 -fembed-bitcode - -sysroot=$(IOS_ARM64_SDK_ROOT ) -miphoneos-version-min=7.0
3131
3232
3333all : Python-$(PYTHON_VERSION ) -iOS-support.b$(BUILD_NUMBER ) .tar.gz
Original file line number Diff line number Diff line change @@ -48913,17 +48913,17 @@ diff -Nru orig/iOS/Makefile modified/iOS/Makefile
4891348913+
4891448914+# iOS ARMV7 build commands and flags
4891548915+IOS_ARMV7_SDK_ROOT=$(shell xcrun --sdk iphoneos --show-sdk-path)
48916- +IOS_ARMV7_CC=$(shell xcrun -find -sdk iphoneos clang) -arch armv7 --sysroot=$(IOS_ARMV7_SDK_ROOT) -miphoneos-version-min=7.0
48916+ +IOS_ARMV7_CC=$(shell xcrun -find -sdk iphoneos clang) -arch armv7 -fembed-bitcode - -sysroot=$(IOS_ARMV7_SDK_ROOT) -miphoneos-version-min=7.0
4891748917+IOS_ARMV7_LD=$(shell xcrun -find -sdk iphoneos ld) -arch armv7 --sysroot=$(IOS_ARMV7_SDK_ROOT) -miphoneos-version-min=7.0
4891848918+
4891948919+# iOS ARMV7S build commands and flags
4892048920+IOS_ARMV7S_SDK_ROOT=$(shell xcrun --sdk iphoneos --show-sdk-path)
48921- +IOS_ARMV7S_CC=$(shell xcrun -find -sdk iphoneos clang) -arch armv7s --sysroot=$(IOS_ARMV7S_SDK_ROOT) -miphoneos-version-min=7.0
48921+ +IOS_ARMV7S_CC=$(shell xcrun -find -sdk iphoneos clang) -arch armv7s -fembed-bitcode - -sysroot=$(IOS_ARMV7S_SDK_ROOT) -miphoneos-version-min=7.0
4892248922+IOS_ARMV7S_LD=$(shell xcrun -find -sdk iphoneos ld) -arch armv7s --sysroot=$(IOS_ARMV7S_SDK_ROOT) -miphoneos-version-min=7.0
4892348923+
4892448924+# iOS ARM64 build commands and flags
4892548925+IOS_ARM64_SDK_ROOT=$(shell xcrun --sdk iphoneos --show-sdk-path)
48926- +IOS_ARM64_CC=$(shell xcrun -find -sdk iphoneos clang) -arch arm64 --sysroot=$(IOS_ARM64_SDK_ROOT) -miphoneos-version-min=7.0
48926+ +IOS_ARM64_CC=$(shell xcrun -find -sdk iphoneos clang) -arch arm64 -fembed-bitcode - -sysroot=$(IOS_ARM64_SDK_ROOT) -miphoneos-version-min=7.0
4892748927+IOS_ARM64_LD=$(shell xcrun -find -sdk iphoneos ld) -arch arm64 --sysroot=$(IOS_ARM64_SDK_ROOT) -miphoneos-version-min=7.0
4892848928+
4892948929+
You can’t perform that action at this time.
0 commit comments