gpt4 book ai didi

iphone - iOS 5.1 上的 ffmpeg undefined symbol 错误

转载 作者:行者123 更新时间:2023-12-04 23:31:01 26 4
gpt4 key购买 nike

所以我现在花了几个小时来研究网上关于为 iOS 构建 ffmpeg 的少量信息。构建过程似乎运行良好,我最终得到了 armv6 和 armv7 的胖文件,我将它们拖到我的项目中。

但是,每当我尝试使用“avcodec_init()”命令时,都会出现以下错误:

Undefined symbols for architecture armv7: "_avcodec_init", referenced from:

 -[FirstViewController viewDidLoad] in FirstViewController.o

ld: symbol(s) not found for architecture armv7

clang: error: linker command failed with exit code 1 (use -v to see invocation)



库文件包含在项目设置的“Link Binary with Libraries”中,因此它们肯定会编译到应用程序中。我一生都无法弄清楚为什么我会在这方面出错。

我尝试了几个不同的项目,并从网上下载了一些现有的项目文件并得到相同的错误。

这是我使用的构建脚本:

export PLATFORM="iPhoneOS" export MIN_VERSION="4.0" export MAX_VERSION="5.1" export DEVROOT=/Volumes/Lion/Applications/Xcode.app/Contents/Developer/Platforms/${PLATFORM}.platform/Developer export SDKROOT=$DEVROOT/SDKs/${PLATFORM}${MAX_VERSION}.sdk export CC=$DEVROOT/usr/bin/llvm-gcc export LD=$DEVROOT/usr/bin/ld export CPP=$DEVROOT/usr/bin/cpp export CXX=$DEVROOT/usr/bin/llvm-g++ export AR=$DEVROOT/usr/bin/ar export LIBTOOL=$DEVROOT/usr/bin/libtool export NM=$DEVROOT/usr/bin/nm export CXXCPP=$DEVROOT/usr/bin/cpp export RANLIB=$DEVROOT/usr/bin/ranlib

COMMONFLAGS="-pipe -gdwarf-2 -no-cpp-precomp -isysroot ${SDKROOT} -marm -fPIC" export LDFLAGS="${COMMONFLAGS} -fPIC" export CFLAGS="${COMMONFLAGS} -fvisibility=hidden" export CXXFLAGS="${COMMONFLAGS} -fvisibility=hidden -fvisibility-inlines-hidden"

FFMPEG_LIBS="libavcodec libavdevice libavformat libavutil libswscale"

echo "Building armv6..."

make clean ./configure \ --cpu=arm1176jzf-s \ --extra-cflags='-arch armv6 -miphoneos-version-min=${MIN_VERSION} -mthumb' \ --extra-ldflags='-arch armv6 -miphoneos-version-min=${MIN_VERSION}' \ --enable-cross-compile \ --arch=arm \ --target-os=darwin \ --cc=${CC} \ --sysroot=${SDKROOT} \ --prefix=installed \ --disable-network \ --disable-decoders \ --disable-muxers \ --disable-demuxers \ --disable-devices \ --disable-parsers \ --disable-encoders \ --disable-protocols \ --disable-filters \ --disable-bsfs \ --enable-decoder=h264 \ --enable-decoder=svq3 \ --enable-gpl \ --enable-pic \ --disable-doc perl -pi -e 's/HAVE_INLINE_ASM 1/HAVE_INLINE_ASM 0/' config.h make -j3

mkdir -p build.armv6 for i in ${FFMPEG_LIBS}; do cp ./$i/$i.a ./build.armv6/; done

echo "Building armv7..."

make clean ./configure \ --cpu=cortex-a8 \ --extra-cflags='-arch armv7 -miphoneos-version-min=${MIN_VERSION} -mthumb' \ --extra-ldflags='-arch armv7 -miphoneos-version-min=${MIN_VERSION}' \ --enable-cross-compile \ --arch=arm \ --target-os=darwin \ --cc=${CC} \ --sysroot=${SDKROOT} \ --prefix=installed \ --disable-network \ --disable-decoders \ --disable-muxers \ --disable-demuxers \ --disable-devices \ --disable-parsers \ --disable-encoders \ --disable-protocols \ --disable-filters \ --disable-bsfs \ --enable-decoder=h264 \ --enable-decoder=svq3 \ --enable-gpl \ --enable-pic \ --disable-doc perl -pi -e 's/HAVE_INLINE_ASM 1/HAVE_INLINE_ASM 0/' config.h make -j3

mkdir -p build.armv7 for i in ${FFMPEG_LIBS}; do cp ./$i/$i.a ./build.armv7/; done

mkdir -p build.universal for i in ${FFMPEG_LIBS}; do lipo -create ./build.armv7/$i.a ./build.armv6/$i.a -output ./build.universal/$i.a; done

for i in ${FFMPEG_LIBS}; do cp ./build.universal/$i.a ./$i/$i.a; done

make install

最佳答案

我还没有使用过 ffmpeg(尽管我的一些老板让我考虑使用它),但 lemme 提出了一些可能在这里发生的事情。

1)

让我们看看这个符号是否真的存在于你编译的库中。

转到终端和“cd”到您的 .a 库所在的目录。

然后在一行中输入“nm -arch armv7 ffmpeg.a | egrep avcodec_init”(您可以在我的示例命令中将 ffmpeg.a 替换为 .a 库的实际名称)。这会为 armv7 架构转储库中的符号并将其通过管道传输到 grep,这应该会显示 avcodec_init 是否确实存在于您的库中。

如果它没有出现,那么它没有被编译到你的库中。

2)

如果该符号确实存在于您的库中,请确保您的 .a 文件的路径在您的项目中是正确的。您可能不小心只包含了一个仅模拟器(i386 架构)版本的 ffmpeg。

关于iphone - iOS 5.1 上的 ffmpeg undefined symbol 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10307804/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com