当前位置:网站首页>Clang compile link ffmpeg FAQ
Clang compile link ffmpeg FAQ
2022-07-07 15:41:00 【When can Xiaobai advance to success】
One 、 Problems encountered during compilation
1、 Command not found
error message :
./build_android.sh: line 18: --enable-shared: command not found ./build_android.sh: line 20: --disable-static: command not found ./build_android.sh: line 22: --disable-doc: command not found ./build_android.sh: line 24: --disable-ffmpeg: command not found ./build_android.sh: line 26: --disable-ffplay: command not found ./build_android.sh: line 28: --disable-ffprobe: command not found ./build_android.sh: line 30: --disable-ffserver: command not found ./build_android.sh: line 32: --disable-avdevice: command not found |
solve :
If it's direct copy Online shell Script , It could be dos Format , Please use dos2unix build_android.sh Change my , Delete the extra space ( This is very important dos2unix It's a tool , If not, please install it first :brew install dos2unix , It'll be over soon .
2、xmakefile File not generated
error message :
./android_config.sh: line 36: --enable-shared: command not found Makefile:2: ffbuild/config.mak: No such file or directory Makefile:40: /tools/Makefile: No such file or directory Makefile:41: /ffbuild/common.mak: No such file or directory Makefile:91: /libavutil/Makefile: No such file or directory Makefile:91: /ffbuild/library.mak: No such file or directory Makefile:93: /fftools/Makefile: No such file or directory Makefile:94: /doc/Makefile: No such file or directory Makefile:95: /doc/examples/Makefile: No such file or directory Makefile:160: /tests/Makefile: No such file or directory make: *** No rule to make target `/tests/Makefile'. Stop. Makefile:2: ffbuild/config.mak: No such file or directory Makefile:40: /tools/Makefile: No such file or directory Makefile:41: /ffbuild/common.mak: No such file or directory Makefile:91: /libavutil/Makefile: No such file or directory Makefile:91: /ffbuild/library.mak: No such file or directory Makefile:93: /fftools/Makefile: No such file or directory Makefile:94: /doc/Makefile: No such file or directory Makefile:95: /doc/examples/Makefile: No such file or directory Makefile:160: /tests/Makefile: No such file or directory |
solve :
perform ./configure --disable-x86asm Generate config.mak file
3、arm-linux-androideabi-gcc is unable to create an executable file
error message :
/Users/aria/dev/android/sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64/bin/arm-linux-androideabi-gcc is unable to create an executable file. |
reason :
Check ndk edition ,android The official from r18b Start , Has been removed gcc See ndk r18b Revised content
solve :
Use clang Compile , For details, see :https://medium.com/@ilja.kosynkin/building-ffmpeg-4-0-for-android-with-clang-642e4911c31e
4、/android_config.sh:line32:xxxx No such file or directory
reason :.configure The following commands cannot have comments
solve :
Which line of code to delete the comment
5、static declaration of 'xxx' follows non-static declaration
solve :
config.h Search for lrint、lrintf、round、roundf Wait for the right character , take 0 It is amended as follows 1
#define HAVE_LLRINT 1 #define HAVE_LLRINTF 1 #define HAVE_LRINT 1 #define HAVE_LRINTF 1 #define HAVE_ROUND 1 #define HAVE_ROUNDF 1 #define HAVE_CBRT 1 #define HAVE_CBRTF 1 #define HAVE_COPYSIGN 1 #define HAVE_TRUNC 1 #define HAVE_TRUNCF 1 #define HAVE_RINT 1 #define HAVE_HYPOT 1 #define HAVE_ERF 1 |
Or use it directly sed To modify the config.h file
sed -i -e 's/#define HAVE_LLRINT 0/#define HAVE_LLRINT 1/g' config.h sed -i -e 's/#define HAVE_LLRINTF 0/#define HAVE_LLRINTF 1/g' config.h sed -i -e 's/#define HAVE_LRINT 0/#define HAVE_LRINT 1/g' config.h sed -i -e 's/#define HAVE_LRINTF 0/#define HAVE_LRINTF 1/g' config.h sed -i -e 's/#define HAVE_ROUND 0/#define HAVE_ROUND 1/g' config.h sed -i -e 's/#define HAVE_ROUNDF 0/#define HAVE_ROUNDF 1/g' config.h sed -i -e 's/#define HAVE_CBRT 0/#define HAVE_CBRT 1/g' config.h sed -i -e 's/#define HAVE_CBRTF 0/#define HAVE_CBRTF 1/g' config.h sed -i -e 's/#define HAVE_COPYSIGN 0/#define HAVE_COPYSIGN 1/g' config.h sed -i -e 's/#define HAVE_TRUNC 0/#define HAVE_TRUNC 1/g' config.h sed -i -e 's/#define HAVE_TRUNCF 0/#define HAVE_TRUNCF 1/g' config.h sed -i -e 's/#define HAVE_RINT 0/#define HAVE_RINT 1/g' config.h sed -i -e 's/#define HAVE_HYPOT 0/#define HAVE_HYPOT 1/g' config.h sed -i -e 's/#define HAVE_ERF 0/#define HAVE_ERF 1/g' config.h sed -i -e 's/#define HAVE_GMTIME_R 0/#define HAVE_GMTIME_R 1/g' config.h sed -i -e 's/#define HAVE_LOCALTIME_R 0/#define HAVE_LOCALTIME_R 1/g' config.h sed -i -e 's/#define HAVE_INET_ATON 0/#define HAVE_INET_ATON 1/g' config.h |
6、xxxx error:expected ')'
error message :
#define getenv(x) NULL ^ /home/cd008/diska/android-ndk-r9/platforms/android-18/arch-arm/usr/include/stdlib.h:54:14: note: in expansion of macro 'getenv' extern char *getenv(const char *); ^ ./config.h:17:19: error: expected ')' before numeric constant #define getenv(x) NULL ^ /home/cd008/diska/android-ndk-r9/platforms/android-18/arch-arm/usr/include/stdlib.h:54:14: note: in expansion of macro 'getenv' extern char *getenv(const char *); |
solve :
stay config.h Note out #define getenv(x) NULL
/#define getenv(x) NULL/
sed -i -e 's/#define getenv(x) NULL/\/\*#define getenv(x) NULL\*\//g' config.h |
7、arm-linux-androideabi-ld -Wl,-soname,libavutil.so unknown option
error message :
Users/aria/dev/android/sdk/ndk-bundle/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64/bin/arm-linux-androideabi-ld -Wl,-soname |
reason :
gcc structure .so The order is -shared -wl,soname,xxxx.so and clang Yes. -shared -soname xxx.so
solve :
modify ffbuild/config.mak file , take SHFLAGS=-shared -Wl,-soname,$(SLIBNAME) It is amended as follows SHFLAGS=-shared -soname $(SLIBNAME)
8、arm-linux-androideabi-ld:fatal error:-shared and -pie are incompatible
solve :
modify ffbuild/config.mak file , take LDEXEFLAGS= -fPIE -pie Get rid of -pie
9、member at 2760 is not an ELF object
reason 1: Not used ndk Band ar To pack
solve : Check ar Whether the path of the command is correct
reason 2: macos ranlib and ndk Of ranlib Are not compatible
solve : see 3.8
10、the table of contents is empty(no object file memberss in the library define global symbols)
reason :
macos Of ranlib and ndk Of ranlib Are not compatible
solve :
Use ndk Self contained ranlib
ranlib=xxxx/arm-linux-androideabi-runlib |
11、undefined reference to '__aeabi_memcpy'
reason :
ld Merge multiple .a Static library parameter error
solve :
take -static Change it to -shared
12、undefined reference xxxx
reason :
ffmpeg Problems caused by inlining
solve :
There is no effective solution for the time being
summary
The most common problem in the compilation process is clang、ld、ar And other tools , When these errors occur , Various tools should be used --help To check if the configuration is correct , Especially from gcc Over to clang,gcc and clang Many configurations of are different , Most tutorials on the Internet use gcc To compile the ffmpeg.
clang --help xxxxxx-ld --help xxxxxx-ar --help |
Two 、 Problems encountered in link execution
边栏推荐
- [Data Mining] Visual Pattern Mining: Hog Feature + cosinus Similarity / K - means Clustering
- 【目标检测】YOLOv5跑通VOC2007数据集
- Ctfshow, information collection: web10
- Ctfshow, information collection: web1
- 【數字IC驗證快速入門】20、SystemVerilog學習之基本語法7(覆蓋率驅動...內含實踐練習)
- 众昂矿业:萤石继续引领新能源市场增长
- Ctfshow, information collection: Web3
- 大表delete删数据导致数据库异常解决
- HPDC smart base Talent Development Summit essay
- Database exception resolution caused by large table delete data deletion
猜你喜欢

Vertex shader to slice shader procedure, varying variable

【搞船日记】【Shapr3D的STL格式转Gcode】
![[quick start of Digital IC Verification] 24. AHB sramc of SystemVerilog project practice (4) (AHB continues to deepen)](/img/cf/45775b712f60869186a25d3657ee1b.png)
[quick start of Digital IC Verification] 24. AHB sramc of SystemVerilog project practice (4) (AHB continues to deepen)

Ida Pro reverse tool finds the IP and port of the socket server
![[deep learning] semantic segmentation experiment: UNET network /msrc2 dataset](/img/69/9dadeb92f8d6299250a894690c2845.png)
[deep learning] semantic segmentation experiment: UNET network /msrc2 dataset
MongoD管理数据库的方法介绍

Qu'est - ce qu'une violation de données

HW primary flow monitoring, what should we do

How to release NFT in batches in opensea (rinkeby test network)

Mathematical modeling -- what is mathematical modeling
随机推荐
【Markdown语法高级】让你的博客更精彩(四:设置字体样式以及颜色对照表)
Ctfshow, information collection: web9
Cocos uses custom material to display problems
避坑:Sql中 in 和not in中有null值的情况说明
MySQL bit type resolution
[quick start of Digital IC Verification] 29. Ahb-sramc (9) (ahb-sramc svtb overview) of SystemVerilog project practice
[target detection] yolov5 Runtong voc2007 data set
What is Base64?
MongoD管理数据库的方法介绍
Matlab experience summary
Nacos一致性协议 CP/AP/JRaft/Distro协议
Implementation of crawling web pages and saving them to MySQL using the scrapy framework
【数字IC验证快速入门】22、SystemVerilog项目实践之AHB-SRAMC(2)(AMBA总线介绍)
一个需求温习到的所有知识,h5的表单被键盘遮挡,事件代理,事件委托
Yunxiaoduo software internal test distribution test platform description document
[data mining] visual pattern mining: hog feature + cosine similarity /k-means clustering
Ctfshow, information collection: web5
微信小程序 01
[understanding of opportunity -40]: direction, rules, choice, effort, fairness, cognition, ability, action, read the five layers of perception of 3GPP 6G white paper
Summer safety is very important! Emergency safety education enters kindergarten