gcc 4.9.2 编译 ffmpeg-git-1aeb88b 是出现如下错误 > FFmpeg fails to make with: > > CC libavcodec/dxva2.o > In file included from libavcodec/dxva2_internal.h:26:0, > from libavcodec/dxva2.c:23: > libavcodec/dxva2.h:40:5: error: unknown type name 'I…
 platforms\android-9\arch-arm\usr\include\stdio.h:257:37: error: unknown type name '__va_list'     解决方法: 默认的android-9不兼容 Applicaton.mk  添加APP_PLATFORM := android-21  …
在ffmpeg库下面的头文件包含时用"../"表示当前项目下的头文件就ok了…
手动在rtconfig.h中加人 #define HAVE_SYS_SELECT_H 就能编译过了…
安装lfs时编译binutils出错: ../../sources/binutils-2.15.91.0.2/gas/config/tc-i386.h:457:32: error: array type has incomplete element type extern const struct relax_type md_relax_table[]; ^make[3]: *** [app.o] Error 1make[3]: Leaving directory `/mnt/lfs/binut…
今天在linux服务器上编译安装升级了下qemu,升级命令如下: root@ubuntu:/opt/qemu-# ./configure --prefix=/usr/local/ --target-list=x86_64-softmmu root@ubuntu:/opt/qemu-# make root@ubuntu:/opt/qemu-# make install 顺利编译安装后,去define了一个虚拟机,结果报了如下错误: root@ubuntu:~# virsh define test.…
描述: python中urllib2 下载网页时,出现错误urllib2.URLError:<urlopen error unknown url type:https> 解决方法: python没有SSL模块,需重新编译安装python ①在终端中执行: sudo apt-get install openssl  sudo apt-get install libssl-dev ②然后重新安装python [网上很多其他的方法有:进入Modules文件夹,去修改Setup,在Ubuntu中是行不…
在 iOS 10  调用 了 获取  相册的 可编辑 的  照片后,会出现 [Creating an image format with an unknown type is an error] 这个其实不影响app的使用,这个是 iOS10 系统的bug 而已.其实 程序员进行二次调用的时候  并没有  所谓的error.…
一.编绎显示Unknown type name “CGFloat”  错误解决方法 将Compile Sources As 改为 Objective-C++ 二.如果是extern const引起的.直接加头文件 #import <UIKit/UIKit.h>…
网上的非常多解释--非常难理解-- 情景描写叙述: 在代码中,写了A\B两个文件,A:是.c文件,B是.h文件和.c文件. 在A中包括了B.h文件. 在B.h文件里声明了A中定义的变量. 这样编译的情况下就会出现error: conflicting type qualifiers for 'XXXX"的编译错误. 解决的方法: 将在B.h中声明的外部变量移到B.c中. 这样两者之间就不存在一种相互引用的高度耦合状态.…