TVVLCKit-3.0.0 with bitcode enabled available for download
Posted: 18 Jan 2017 11:05
Hi everyone,
after days of trial and error trying to compile the TVVLCKit with bitcode support finally last night at 4:00AM I did it. As I know there are a lot of people with same problem I am sharing it via dropbox for anyone that wants to download it.
The build is TVVLCKit 3.0.0 from Dec 1, 2016. I compiled it thanks to the instructions of @gerlich and @ssbmaccom in this thread:
https://forum.videolan.org/viewtopic.php?f=36&t=135879
To compile it, it is very important the environment you choose. I did it with a clean install of Mac OS El Capitan with only one version of Xcode installed, which was 7.2.1
Here is the download link of the compiled library:
https://www.dropbox.com/s/cuc8yao9f4bfl ... k.zip?dl=0
Thanks to all the other users that helped me. I hope this link is useful for other developers.
after days of trial and error trying to compile the TVVLCKit with bitcode support finally last night at 4:00AM I did it. As I know there are a lot of people with same problem I am sharing it via dropbox for anyone that wants to download it.
The build is TVVLCKit 3.0.0 from Dec 1, 2016. I compiled it thanks to the instructions of @gerlich and @ssbmaccom in this thread:
https://forum.videolan.org/viewtopic.php?f=36&t=135879
Code: Select all
1. rm -Rf VLCKit # Delete the current clone of VLCKit to restart from new one.
2. git clone https://code.videolan.org/videolan/VLCKit.git #clone VLCKit current version
3. cd VLCKit #move to VLCKit directory
4. git reset --hard 2453a955435b9cae2c1637274416a4841ce66909 #move to working commit version Dec 1, 2016
5. Edit buildMobileVLCKit.sh to add bitcode support using the patch of the following paragraph
6. ./buildMobileVLCKit.sh -tf #Build VLCKit for tvOS and Simulator with bitcode
Code: Select all
From 408ade836c8b6ad33d7c81f60d9ba495b308774c Mon Sep 17 00:00:00 2001
From: Stefan Schmidt-Bilkenroth <ssb@mac.com>
Date: Sun, 20 Nov 2016 18:11:04 +0100
Subject: [PATCH] enforce bitcode generation
---
buildMobileVLCKit.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/buildMobileVLCKit.sh b/buildMobileVLCKit.sh
index d1a5917..d35e9ed 100755
--- a/buildMobileVLCKit.sh
+++ b/buildMobileVLCKit.sh
@@ -89,6 +89,7 @@ buildxcodeproj()
ARCHS="${architectures}" \
IPHONEOS_DEPLOYMENT_TARGET=${SDK_MIN} \
GCC_PREPROCESSOR_DEFINITIONS="$defs" \
+ BITCODE_GENERATION_MODE=bitcode \
> ${out}
}
--
2.9.3 (Apple Git-75)+GitX
Here is the download link of the compiled library:
https://www.dropbox.com/s/cuc8yao9f4bfl ... k.zip?dl=0
Thanks to all the other users that helped me. I hope this link is useful for other developers.