在Snow Leopard中编译VLCKit

时间:2010-12-12 02:37:25

标签: cocoa compilation vlc

我尝试以几种不同的方式构建VLC和VLCKit。我需要支持x86_64和垃圾收集。我遵循Wiki Page Mac OS X Framework,但我不知道我做错了什么。

我用git     $ git clone git://git.videolan.org/vlc.git

  • 我打开./vlc/projects/macosx/framework/VLCKit.xcodeproj
  • 我确保选择了VLCKit目标。我选择了“Build Everything”目标。
  • 我选择“VLCKit”(图2)。 (当我尝试“Build Everything”时,我发现了错误)
  • 我右键点击目标并构建

我发现了4个错误。

此帖中的更多信息:Post in Official VLC Forum

怎么了?在哪里可以找到VLCKit垃圾收集支持的二进制文件?谢谢!

1 个答案:

答案 0 :(得分:1)

根据VLC论坛上的回复,VLCKit目前不支持垃圾收集:Post in VLC Forum

关于编译VLCKit的一般尝试:

git clone git://git.videolan.org/vlc/vlc-1.1.git vlc-1.1
cd vlc-1.1/projects/macosx/framework
xcodebuild -alltargets -configuration Release -project VLCKit.xcodeproj ARCHS="x86_64" -sdk macosx10.6

您特别需要vlc-1.1.git分支,它似乎是稳定变体。这一切都写在上面引用的post中。