摘要: 阅读全文
posted @ 2012-08-04 10:47 坑坑kk 阅读(292) 评论(0) 推荐(0)
摘要: 'm not sure if this is relevant, but I had the same error when trying to make ffmpeg. Initially I was getting a missing separator error (in one of the makefiles) when I used configure. I founda pagethat suggested checking that git was using unix line endings rather than windows (CR LF). So I use 阅读全文
posted @ 2012-08-04 09:29 坑坑kk 阅读(1537) 评论(0) 推荐(0)
摘要: yasm是汇编编译器,因为ffmpeg中为了提高效率用到了汇编指令,比如MMX和SSE。解决这个问题方面有两个:1、在网上下载一个yasm.exe并安装在mingw/bin下面,编译代码时你注意看,会发现asm后缀的文件用的编译器是yasm,c文件用的是gcc;2、不使用汇编指令,在配置时加上,即./configure--disable-yasmyasm下载地址:http://yasm.tortall.net/Download.html下载yasm-1.2.0-cygwin.exe改名后放到cygwin/bin下这样就可以继续编译了。原文地址:http://blog.csdn.net/ustc 阅读全文
posted @ 2012-08-04 02:31 坑坑kk 阅读(3551) 评论(0) 推荐(0)