2016-04-22 82 views
0

我想在Mac OS X 10.10上交叉编译ffmpeg 2.8.x,但出现以下错误。ffmpeg 2.8.x在Mac OS X上的交叉编译错误x 10.10

HOSTCC libavcodec/cabac_tablegen.o 
In file included from libavcodec/cabac_tablegen.c:25: 
In file included from libavcodec/cabac_functions.h:43: 
libavcodec/arm/cabac.h:96:25: error: value '24' out of range for constraint 'M' 
      [byte]"M"(offsetof(CABACContext, bytestream)), 
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/include/stddef.h:120:24: note: 
    expanded from macro 'offsetof' 
#define offsetof(t, d) __builtin_offsetof(t, d) 
        ^~~~~~~~~~~~~~~~~~~~~~~~ 
1 error generated. 
make: *** [libavcodec/cabac_tablegen.o] Error 1 

错误显示在主机CC的一些错误,主机CC是clang-700.1.81

$ gcc --version 
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 
Apple LLVM version 7.0.2 (clang-700.1.81) 
Target: x86_64-apple-darwin14.5.0 
Thread model: posix 

之前,我升级的Xcode 7.2,它工作得很好。

对于ffmpeg 3.x,没有这样的问题。但我需要的ffmpeg版本是2.8.x.如何在不将Xcode降级到以前的版本的情况下进行修复?

回答

1

这是主机cc的问题。

我保留了当前版本的Xcode并安装了另一个版本命令行工具Command_Line_Tools_OS_X_10.10_for_Xcode_6.4

铛版本用于此命令行工具是

$ /Library/Developer/CommandLineTools/usr/bin/cc --version 
Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn) 
Target: x86_64-apple-darwin14.5.0 
Thread model: posix 

并更改主机CC这个编译器时配置的ffmpeg。

./configure --host-cc=/Library/Developer/CommandLineTools/usr/bin/cc 

现在,它可以得到编译没有错误。