由于gdb的原因,最后还是失败了。。mark
赶紧绕路。。。
转到用xcode来弄了。。https://www.jianshu.com/p/226c19aa6e42
./configure --disable-doc --enable-version3 --enable-debug=3 --enable-gpl --disable-optimizations --disable-stripping --disable-ffplay --disable-ffprobe
--disable-decoder=vp9
以下为未成功的经历。
步骤
安装nasm 2.11.08
用brew 安装的nasm是最新版本,是不行的。
另外低于(包括)2.11.06的版本也是不行的。
实测2.11.08是可以的。
- 下载macosx版本的nasm
https://www.nasm.us/pub/nasm/releasebuilds/2.11.08/macosx/
- 直接拷贝实现安装操作。
本机我用源码安装了nasm的2.11.06的版本,但是一直没有找到合适的卸载的方法。
现在要安装2.11.08的版本,采取的方法是: 找到对应的macosx版本的,直接拷贝到/usr/bin目录。
sudo -i 切换到root账户。
然后进行如下操作:
# cd nasm-2.11.08-macosx/
# which nasm
/usr/bin/nasm
# ls
LICENSE man1 ndisasm rdf2ihx rdfdump
README nasm rdf2bin rdf2ith rdflib
ldrdf nasmdoc.pdf rdf2com rdf2srec rdx
# cp nasm /usr/bin/
# nasm -v
NASM version 2.11.08 compiled on Feb 21 2015
安装gdb
eclipse需要配置gdb进行debug。
参考https://www.thomasvitale.com/how-to-setup-gdb-and-eclipse-to-debug-c-files-on-macos-sierra/
和https://www.cnblogs.com/yinxiangpei/articles/3897701.html (里边有图文)
注: 不用用上文中提到的brew install gdb的方式安装gdb,因为gdb有升级,新版的gdb内删掉了一下命令,而EclipseCDT又刚好使用了这些命令,所以导致的不兼容。
我的eclipse版本如下:
配置过程中的几张关键截图:
生成证书的原因是: Giving gdb permission to control other processes.
Darwin 内核在你没有特殊权限的情况下,不允许调试其它进程。
调试某个进程,意味着你对这个进程有完全的控制权限,所以为了防止被恶意利用,它是默认禁止的。
允许 gdb 控制其它进程最好的方法就是用系统信任的证书对它进行签名。
如何判断codesign是否成功呢?
codesign -v /usr/local/bin/gdb
如果没有任何输出,表明codesign成功了。
生成ffmpeg的Makefile文件
- 获取ffmpeg源码
git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg
- 生成Makefile文件
创建build.sh,其中内容如下:
make clean
./configure \
--cc=/usr/bin/clang \
--pkg-config-flags=--static \
--disable-doc \
--enable-version3 \
--enable-debug=3 \
--enable-gpl \
--disable-optimizations \
--disable-stripping \
--disable-ffplay \
--disable-ffprobe \
--disable-decoder=vp9
make -j8
make install
注意一定要加--disable-stripping, 如果不加此选项,ffmpeg在编译时,会使用strip去掉符号信息。
优化操作会使得某些变量被优化掉,在后续的调试时无法观察变量的变化,因此关闭优化, 即加上--disable-optimizations来禁止优化操作。
然后
sh build.sh
创建eclipse工程
make all
make: Nothing to be done for `all'.
14:02:19 Build Finished (took 605ms
遇到问题及解决
unrecognised output format macho64' - use
这种情况是nasm的版本不匹配。
经过验证,2.11.08是可以的。libavutil/x86/x86inc.asm:45: error: symbol `HAVE_ALIGNED_STACK' not defined before use
CC libavfilter/vsrc_life.o
CC libavfilter/vsrc_mandelbrot.o
CC libavfilter/vsrc_testsrc.o
X86ASM libavfilter/x86/af_afir.o
libavutil/x86/x86inc.asm:45: error: symbol `HAVE_ALIGNED_STACK' not defined before use
libavutil/x86/x86inc.asm:58: error: symbol `ARCH_X86_64' not defined before use
...
libavfilter/x86/af_afir.asm:60: error: (RET:9) symbol `ARCH_X86_64' not defined before use
make: *** [libavfilter/x86/af_afir.o] Error 1
17:33:39 Build Finished (took 56s.221ms
Private$ nasm -v
NASM version 2.11.06 compiled on Sep 13 2018
安装nasm的2.11.08版本。
-
texi2html: command not found
做了以下尝试,但是没有成功:
看到https://trac.macports.org/ticket/25803中说5.0版本时,编译ffmpeg是有问题的。
先用brew uninstall texi2html卸载。
然后从http://download-mirror.savannah.gnu.org/releases/texi2html/texi2html-1.82.tar.gz中下载对应版本,并./configure && make && make install安装。
查看版本:
$ texi2html --version
1.82
再次编译,问题还是存在。
所以暂时打算禁止doc的生成:
./configure --disable-doc
- Permission denied @ unlink_internal
用brew安装和卸载texihtml时,
$ brew uninstall texi2html
Uninstalling /usr/local/Cellar/texi2html/5.0... (305 files, 6.5MB)
Error: Permission denied @ unlink_internal - /usr/local/share/locale/cs/LC_MESSAGES/texi2html.mo
解决方法:
# sudo chown -R $(whoami):admin /usr/local
# brew update
# brew link --overwrite texi2html
- ld: symbol(s) not found for architecture x86_64
"_ff_pw_m16364_804", referenced from:
l070 in libavcodec.a(vp9itxfm_16bpp.o)
l073 in libavcodec.a(vp9itxfm_16bpp.o)
l082 in libavcodec.a(vp9itxfm_16bpp.o)
l088 in libavcodec.a(vp9itxfm_16bpp.o)
l094 in libavcodec.a(vp9itxfm_16bpp.o)
l100 in libavcodec.a(vp9itxfm_16bpp.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [ffmpeg_g] Error 1
14:50:18 Build Finished (took 12m:24s.472ms
采用了临时的解决方案:
即禁用vp9.
./configure \
...
--disable-decoder=vp9
- Failed to execute MI command: -file-exec-and-symbols /Users/Private/project/ffmpeg/ffmpeg_g
Error in final launch sequence
Failed to execute MI command:
-file-exec-and-symbols /Users/Private/project/ffmpeg/ffmpeg_g
Error message from debugger back end:
"/Users/Private/project/ffmpeg/ffmpeg_g": not in executable format: File format not recognized
"/Users/Private/project/ffmpeg/ffmpeg_g": not in executable format: File format not recognized
查看gdb的版本:
$ gdb --version
GNU gdb (GDB) 8.0.1
试了gdb的8.2、7.2等版本,还是不行。
尝试升级eclipse到最高版本,还是不行。
Shut down your mac and restart in recovery mode (hold down command-R until apple logo appears)
Open terminal window
Modify System Integrity Protection to allow debugging: csrutil enable --without debug
Reboot your Mac
进行以上操作后:
$ csrutil status
System Integrity Protection status: enabled (Custom Configuration).
Configuration:
Apple Internal: disabled
Kext Signing: enabled
Filesystem Protections: enabled
Debugging Restrictions: disabled
DTrace Restrictions: enabled
NVRAM Protections: enabled
BaseSystem Verification: enabled
This is an unsupported configuration, likely to break in the future and leave your machine in an unknown state.
结果还是不行。
References:
https://github.com/cisco/openh264/issues/2552
https://www.nasm.us/pub/nasm/releasebuilds/2.11.08/
http://trac.ffmpeg.org/ticket/6527
https://blog.csdn.net/qre123re/article/details/81082780
https://blog.csdn.net/yjk13703623757/article/details/80806395
https://trac.macports.org/ticket/25803
http://download.savannah.gnu.org/releases/texi2html/
https://trac.ffmpeg.org/wiki/CompilationGuide/macOS
http://trac.ffmpeg.org/ticket/4918
https://blog.csdn.net/codysnow/article/details/51888916
ffmpeg config选项说明
https://www.thomasvitale.com/how-to-setup-gdb-and-eclipse-to-debug-c-files-on-macos-sierra/
https://blog.csdn.net/sinat_24310873/article/details/53363232
https://blog.csdn.net/github_33873969/article/details/78511733
https://blog.csdn.net/zjqlovell/article/details/77185116
https://www.jianshu.com/p/226c19aa6e42