mac # eclipse 编译调试ffmpeg

由于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是可以的。

  • 直接拷贝实现安装操作。
    本机我用源码安装了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工程

build
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

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,445评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,889评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,047评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,760评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,745评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,638评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,011评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,669评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,923评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,655评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,740评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,406评论 4 320
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,995评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,961评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,023评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,483评论 2 342

推荐阅读更多精彩内容

  • 以下内容翻译自FFmpeg/Wiki/CompilationGuide/MacOSX 原网址可能需要翻墙 在OS ...
    Mr_龙0615阅读 13,243评论 3 14
  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_x阅读 15,967评论 3 119
  • 3.15……240天 今天是大家盼望已久的年会,大家都特别开心,游戏环节,发红包环节,气氛相当活跃。年会团队的展示...
    吕志萍阅读 98评论 0 0
  • 4k视频看起来就是不错,就是网速不给力,房东说是10m,但好像打折了https://www.youtube.com...
    晚云落阅读 191评论 0 0
  • 今天招了我的第一个学生,真的是太开心了。说起这个学生,其实她是我们成长营的同学杨华的婆婆,我是这么跟杨华形容她婆婆...
    Rebecca小零阅读 145评论 0 0