函数'lseek64'的隐式声明在 C99 中无效



我在编译FFmpeg-Vitamio时出现了以下编译错误。

Mac OS X 10.10.9

NDK版本:android- NDK -r10

Gcc版本:

$gcc --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.57) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin14.1.1
Thread model: posix

错误信息:

libavformat/fd.c:59:9: error: implicit declaration of function 'lseek64' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    return lseek64(fd, pos, whence);

对于Linux系统,使用:

#define _LARGEFILE64_SOURCE     /* See feature_test_macros(7) */
#include <sys/types.h>
#include <unistd.h>

为lseek64创建一个合适的原型

我不确定这与mac OS和使用arm-linux-antroideabi-gcc工具有什么关系

@anton是对的。

使用错误的gcc,

${NDK_HOME}/toolchains/arm-linux-androideabi-4.8/prebuilt/linux-x86_64/bin/arm-linux-androideabi-gcc

应该使用

相关内容

  • 没有找到相关文章

最新更新