Skip to content
Snippets Groups Projects
Commit d197b6c3 authored by Jan Schmidt's avatar Jan Schmidt
Browse files

openh264: Remove -fembed-bitcode for iOS build.

We don't build bitcode for anything else, so it
will be dropped anyway, and breaks support for Xcode 6
unnecessarily
parent fc92aaa4
No related branches found
Tags 1.12.8
No related merge requests found
......@@ -16,6 +16,7 @@ class Recipe(recipe.Recipe):
# we'll need to carry forward that bit for ourselves.
# 0002: Fixed upstream, remove patch on next update
patches = [name + '/0001-Add-version-suffix.patch']
patches += [name + '/0002-Remove-fembed-bitcode-for-iOS-build.patch']
files_libs = ['libopenh264']
files_devel = ['include/wels', 'lib/pkgconfig/openh264.pc']
......
From 273749d669fc1e73298ca2fb265b32a512f512ce Mon Sep 17 00:00:00 2001
From: Jan Schmidt <jan@centricular.com>
Date: Sat, 3 Sep 2016 03:26:14 +1000
Subject: [PATCH] Remove -fembed-bitcode for iOS build.
To keep support for XCode 6
---
build/platform-ios.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build/platform-ios.mk b/build/platform-ios.mk
index 4ec8919..5bcb28e 100644
--- a/build/platform-ios.mk
+++ b/build/platform-ios.mk
@@ -12,6 +12,6 @@ SDK_MIN = 5.1
XCODE=$(shell xcode-select -p)
SDKROOT = $(XCODE)/Platforms/$(SDKTYPE).platform/Developer/SDKs/$(SDKTYPE)$(SDK).sdk
-CFLAGS += -arch $(ARCH) -isysroot $(SDKROOT) -miphoneos-version-min=$(SDK_MIN) -DAPPLE_IOS -fembed-bitcode
+CFLAGS += -arch $(ARCH) -isysroot $(SDKROOT) -miphoneos-version-min=$(SDK_MIN) -DAPPLE_IOS
LDFLAGS += -arch $(ARCH) -isysroot $(SDKROOT) -miphoneos-version-min=$(SDK_MIN)
--
2.3.2 (Apple Git-55)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment