18.16.1 自写BootLoader错误

ERROR :
  boot.c:: warning: return type of 'main' is not `int'
ANSWER :
  int main(void){
   ……
   return -;/*执行到这里就出错了*/
  }
ERROR :
  boot.c: In function `main':【未声明】
  boot.c:: warning: implicit declaration of function `uart0_init'
  boot.c:: warning: implicit declaration of function `puts'
  boot.c:: warning: implicit declaration of function `nand_read'
ANSWER :
  在函数前声明即可
ERROR :
  boot.c:: warning: passing arg of `nand_read' makes pointer from integer without a cast
ANSWER :
  将整型强制类型转换为指针
  nand_read(0x60000+, (unsigned char *)0x30008000, 0x200000);
ERROR :
  init.c: In function `isBootFromNorFlash':
  init.c:: warning: integer constant is too large for "long" type
  init.c:: warning: overflow in implicit constant conversion
  init.c:: warning: integer constant is too large for "long" type
  init.c:: warning: comparison is always false due to limited range of data type
ANSWER :
  是0x12345678不是0x123456789(超出整型2^)
   volatile int *p = (volatile int *);//
   int val; //用来保存原来的值,在判断完后恢复
   val = *p;
   *p = 0x12345678;
ERROR :
  init.c:: warning: conflicting types for built-in function 'puts'
  boot.c:: warning: conflicting types for built-in function 'puts'
  boot.c:: warning: conflicting types for built-in function 'strcpy'
ANSWER :
  /*错误原因:
  * 编译器自带了strcpy和自己写的strcpy函数类型冲突
  * 在Makefile链接的时候加
  * CPPFLAGS :=-nostdinc -nostdlib
  */
  The ISO C90 functions
  abort, abs, acos, asin, atan2, atan, calloc, ceil, cosh,cos, exit, exp, fabs,
  floor, fmod, fprintf, fputs, frexp, fscanf, isalnum, isalpha,iscntrl, isdigit,
  isgraph, islower, isprint, ispunct, isspace, isupper, isxdigit,tolower, toupper,
  labs, ldexp, log10, log, malloc, memchr, memcmp, memcpy, memset,modf,
  pow, printf, putchar, puts, scanf, sinh, sin, snprintf, sprintf, sqrt, sscanf,
  strcat, strchr, strcmp, strcpy, strcspn, strlen, strncat, strncmp,
  strncpy, strpbrk,strrchr, strspn, strstr, tanh, tan, vfprintf, vprintf and vsprintf
  are all recognized as built-in functions unless ‘-fno-builtin’ is specified (or ‘-fno-builtin-function’ is specified for an individual function). All of these functions have corresponding versions
  prefixed with __builtin_.   将Makefile中CPPFLAGS := -nostdinc
  改为CPPFLAGS := -nostdinc -fno-builtin

ERROR 06:         

  my_printf.c:(.text+0x120):undefined reference to `__aeabi_uidivmod`

  my_printf.c:(.text+0x158):undefined reference to `__aeabi_uidiv`

ANSWER 06:   

  /*编译器找不到除法函数*/

  在arm-linux-gcc-4.3.2编译器使用libgcc.a中的除法可以

  在arm-linux-gcc-3.4.5编译器使用lib1funcs.S中的除法可以

ERROR 07:         

book@book-desktop:/work/system/linux-2.6.22.6$  sudo make uImage

编译刚解压的目录时,显示如下错误:

  [sudo] password for lsb: make: arm-linux-gnu-gcc: Command not found

  CHK     include/linux/version.h

  make[1]: `include/asm-arm/mach-types.h' is up to date.

CHK     include/linux/utsrelease.h

CC      arch/arm/kernel/asm-offsets.s

  /bin/sh: arm-linux-gnu-gcc: not found

  make[1]: *** [arch/arm/kernel/asm-offsets.s] Error 127

  make: *** [prepare0] Error 2

ANSWER 07:   

  在根目录下没有权限。

  sudo chmod 777 kernel -R

  其中,kernel为内核目录。

  最值得注意的是:定目录的Makefile 是否该为相对应的交叉工具链



18.16 gcc-3.4.5编译错误及解决方法集锦的更多相关文章

  1. vs2010打包系统必备选择.net framework 3.5sp1编译错误的解决方法

    利用visual studio 2010进行打包程序,默认安装的是Framework 4.0,如果需要将3.5sp1打包到系统中一起安装(选择了"从与我的应用程序相同的位置下载系统必备组件& ...

  2. VC6的工程转到VC2010或更高版本出现fatal error C1189编译错误的解决方法

    以前也遇到过,当时解决了没写下来,这次正好又遇到了,就顺手写一下吧,别下次又忘记了. 当VC6的工程转到VC2010或更高版本时编译出现如下错误: c:\program files\microsoft ...

  3. 最新版Duilib在VS2012下编译错误的解决方法

            svn了好几次最新版本的项目源代码, 在VS2012下编译老是出错, 改了后没记录, 结果又忘记, 所以在此记录下.        这个问题很普遍, 非常多的人遇到.       至于 ...

  4. Ncut源码编译错误的解决方法

    NCut是一个比较老的开源代码了.所以在新的matlab的环境下老出各种bug. 经过自己的各种折腾,总结为一下几点: 1.保证matlab的mex是有C编译器可以用的,具体可以用 mex -setu ...

  5. gcc 引用math 库 编译的问题 解决方法

    1.gcc app.c -lm 其中lm表示的是连接 m forlibm.so / libm.a表示你想要的库 abc for libabc.so / libabc.a 其中.a表示的是静态链接库 . ...

  6. Office Word等双击空白处的“隐藏的模块中的编译错误:MTW5”解决

    Microsoft Visual Basic for Applications 隐藏的模块中的编译错误:MTW5. ...

  7. Android编译环境——ubuntu12.04上android2.3.4编译错误以及解决

    Android编译环境——ubuntu12.04上android2.3.4编译错误以及解决 分类: android应用开发2013-08-21 09:20 4222人阅读 评论(3) 收藏 举报 li ...

  8. GCC-4.6.3编译linux2.6.32.12内核出现“重复的成员‘page’”错误的解决方法

    使用gcc4.6.3编译linux2.6.32.12内核出现错误如下: In file included from drivers/net/igbvf/ethtool.c:36:0: drivers/ ...

  9. 编译android源码遇到错误及其解决方法

    升级ubuntu的14.04后,android的源码又编译错误了,一下是错误说明赫解决方法: 1.make: *** [out/host/linux-x86/obj/EXECUTABLES/aidl_ ...

随机推荐

  1. java的重写

    重写是子类对父类的允许访问的方法的实现过程进行重新编写, 返回值和形参都不能改变.即外壳不变,核心重写! 重写的好处在于子类可以根据需要,定义特定于自己的行为. 也就是说子类能够根据需要实现父类的方法 ...

  2. Java语法基础学习DayTwentyOne(网络编程)

    一.IP地址和端口号 1.作用 通过IP地址,唯一的定位互联网上一台主机. 端口号标识正在计算机上运行的进程,不同进程有不同的端口号,被规定为一个16位的整数0~65535,其中0~1023被预先定义 ...

  3. clickhouse在Linux上的安装部署

    $ sudo apt-get install clustershell #输入你的管理员密码 $ cd /etc/clustershell $ sudo gedit groups #在文件中添加如下内 ...

  4. Django中Model-Form验证

    Django中Model-Form验证 class UserType(models.Model): caption=models.CharField(max_length=32) class User ...

  5. CG-ctf WP

    week one 1 /x00 提示:有多种解法,你能找到几种 源码: writer up: 题目直接给出了源码,get 到一个 nctf 这个变量,int ereg(string pattern, ...

  6. 2017年4月28日16:40:40 log

    //TODO order  CreateOrderServiceHandler  generateManagementCustomer 子活动名称和uid

  7. Python成长之路【第二篇】Python基础之数据类型

    阅读目录 简介 1 什么是数据? x=10,10是我们要存储的数据 2 为何数据要分不同的类型 数据是用来表示状态的,不同的状态就应该用不同的类型的数据去表示 3 数据类型 数字(整形,长整形,浮点型 ...

  8. 解决Caused by: java.lang.IllegalArgumentException: A universal match pattern ('/**') is defined before other patterns in the filter chain, causing them to be ignored. Please check the ordering in your

    写项目时应用了SpringSecurity框架来进行登陆验证,之前单独的写简单的SpringSecrity的Demo时并没有报错,但是当和SpringMVC一起整合时却发生了报错 报错如下: Caus ...

  9. 模拟ios应用加载页面

    1:设置应用程序系统主界面加载接口为空:Main interface=null; 2: 在AppDelegate实现didFinishLaunchingWithOptions方法 - (BOOL)ap ...

  10. 运维ps语法---》ps、pstree、top、htop、nice、renice、kill、ulimit、w 和 who 和 whoami、pgrep、fg 和 bg、ipcs

    Linux中的ps命令是Process Status的缩写.ps命令用来列出系统中当前运行的那些进程.ps命令列出的是当前那些进程的快照,就是执行ps命令的那个时刻的那些进程,如果想要动态的显示进程信 ...