编译binutil包报错 error: array type has incomplete element type extern const struct relax_type md_relax_table[];
安装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 1
make[3]: Leaving directory `/mnt/lfs/binutils-build/gas'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/mnt/lfs/binutils-build/gas'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/mnt/lfs/binutils-build/gas'
make: *** [all-gas] Error 2
按照报错信息修改../../sources/binutils-2.15.91.0.2/gas/config/tc-i386.h 中457行的extern const struct relax_type md_relax_table[];为extern const struct relax_type * md_relax_table;
再把../../sources/binutils-2.15.91.0.2/gas/config/tc-i386.c中373行的const relax_typeS md_relax_table[]改成const struct relax_type *md_relax_table;
编译binutil包报错 error: array type has incomplete element type extern const struct relax_type md_relax_table[];的更多相关文章
- 编译binutil包报错cc: error trying to exec 'cc1obj': execvp: No such file or directory
		
在http://forums.fedoraforum.org/showthread.php?t=267449中找到的解决方法 $LFS/sources/binutils-2.15.91.0.2/gpr ...
 - 编译APR包报错 rm: cannot remove `libtoolT': No such file or directory
		
centos 6 编译APR包报错 在当前apr 目录 : #Vi configure +31880 ,注释掉此行 再次编译即可.
 - Debug : array type has incomplete element type
		
array type has incomplete element type extern struct SoundReport SoundList[32]; ///// 多写了 st ...
 - 编译android4.4 报错error: call to '__property_get_too_small_error' declared with attribute 的处理 (转载)
		
转自:http://blog.csdn.net/syhost/article/details/14448899 完整的报错为: system/core/include/cutils/propertie ...
 - 【我的Android进阶之旅】解决Center OS 64位系统编译Android APP报错error=2和finished with non-zero exit value 127
		
一.错误描述 1.问题 java.io.IOException: error=2, 没有那个文件或目录 今天在刚重新搭建好的64位的Center OS上安装好了Android SDK,Jenkins, ...
 - AndroidStudio使用第三方jar包报错(Error: duplicate files during packaging of APK)
		
http://www.kwstu.com/ArticleView/android_201410252131196692 错误描述: Error: duplicate files during pack ...
 - vue生成包报错error from UglifyJs
		
mangle: { keep_fnames: true},
 - gcc编译的时候报错 error trying to exec 'cc1plus': execvp 解决方法
		
sudo apt install --reinstall build-essential -y
 - 运行编译后的程序报错  error while loading shared libraries: lib*.so: cannot open shared object file: No such file or directory
		
运行编译后的程序报错 error while loading shared libraries: lib*.so: cannot open shared object file: No such f ...
 
随机推荐
- Junit 3.8.1 源码分析之两个接口
			
1. Junit源码文件说明 runner framework:整体框架; extensions:可以对程序进行扩展; textui:JUnit运行时的入口程序以及程序结果的呈现方式; awtui:J ...
 - LINux网络的NAPI机制详解一
			
在查看NAPI机制的时候发现一篇介绍NAPI引入初衷的文章写的很好,通俗易懂,就想要分享下,重要的是博主还做了可以在他基础上任意修改,而并不用注明出处的声明,着实令我敬佩,不过还是附上原文链接! ht ...
 - 程序猿Web面试之jQuery
			
版权声明:本文为博主原创文章,未经博主同意不得转载. https://blog.csdn.net/powertoolsteam/article/details/32325013  又到了一年一度的 ...
 - 图书源代码下载: Modern Differential Geometry of CURVES and SURFACES with Mathematica
			
http://alpha01.dm.unito.it/personalpages/abbena/gray/ Contents 1. Curves in the Plane | 2. Famou ...
 - Git添加本地项目出现fatal: unable to get credential storage lock: File exists
			
把本地项目初始化之后上传到github上出现问题:fatal: unable to get credential storage lock: File exists 解决办法:是因为我上传用的git帐 ...
 - 如何在VC6.0下用pthread.h这个头文件
			
如何在VC6.0下用pthread.h这个头文件 1.下载PTHREAD的WINDOWS开发包 pthreads-w32-2-4-0-release.exe(任何一个版本均可) http://so ...
 - C#中获取音频文件时长
			
1.在项目中添加引入:COM组件的Microsoft Shell Controls And Automation 2.在引用中找到Shell32,点击右键,在属性中将“嵌入互操作类型”的值改为“fal ...
 - java模拟http/https post请求
			
1.Post请求失败的代码 try { HttpResponse response = httpClient.execute(httpPost); HttpEntity entity = respon ...
 - Winter-1-F Number Sequence 解题报告及测试数据
			
Time Limit:1000MS Memory Limit:32768KB Description A number sequence is defined as follows:f(1) ...
 - maven shade插件小记
			
maven shade plugin插件小用 项目中一直使用assembly插件来整合依赖包到一个胖jar,在做这个akka http项目的时候,在scala ide的run/debug中都执行正常, ...