当前位置:我的异常网» Linux/Unix » 交叉编译arm-none-eabi-gcc编译汇编文件(startup_s

交叉编译arm-none-eabi-gcc编译汇编文件(startup_stm32f10x_hd.S)遇到的有关问题(2)

www.myexceptions.net  网友分享于:2013-07-02  浏览:324次

startup_stm32f10x_hd.S:23: Error: bad instruction `as A RESULT,STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,'

startup_stm32f10x_hd.S:24: Error: bad instruction `indirect OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE'

startup_stm32f10x_hd.S:25: Error: bad instruction `content OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING'

startup_stm32f10x_hd.S:26: Error: bad instruction `information CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.'

startup_stm32f10x_hd.S:27: Error: junk at end of line, first unrecognized character is `*'

startup_stm32f10x_hd.S:29: Error: bad instruction `amount of memory(in bytes)allocated for Stack'

startup_stm32f10x_hd.S:30: Error: bad instruction `tailor this value to your application needs'

startup_stm32f10x_hd.S:31: Error: junk at end of line, first unrecognized character is `

startup_stm32f10x_hd.S:32: Error: junk at end of line, first unrecognized character is `

startup_stm32f10x_hd.S:33: Error: junk at end of line, first unrecognized character is `

startup_stm32f10x_hd.S:35: Error: bad instruction `stack_size EQU 0x00001000'

startup_stm32f10x_hd.S:37: Error: bad instruction `area STACK,NOINIT,READWRITE,ALIGN=3'

startup_stm32f10x_hd.S:38: Error: bad instruction `stack_mem SPACE Stack_Size'

startup_stm32f10x_hd.S:39: Error: bad instruction `__initial_sp'

startup_stm32f10x_hd.S:41: Error: bad instruction `__initial_sp EQU 0x20000000+Stack_Size'

startup_stm32f10x_hd.S:41: Error: bad instruction `stack used for SystemInit&SystemInit_ExtMemCtl'

startup_stm32f10x_hd.S:43: Error: junk at end of line, first unrecognized character is `

startup_stm32f10x_hd.S:44: Error: junk at end of line, first unrecognized character is `

startup_stm32f10x_hd.S:45: Error: junk at end of line, first unrecognized character is `

startup_stm32f10x_hd.S:47: Error: bad instruction `heap_size EQU 0x00000200'

startup_stm32f10x_hd.S:49: Error: bad instruction `area HEAP,NOINIT,READWRITE,ALIGN=3'

startup_stm32f10x_hd.S:50: Error: bad instruction `__heap_base'

startup_stm32f10x_hd.S:51: Error: bad instruction `heap_mem SPACE Heap_Size'

startup_stm32f10x_hd.S:52: Error: bad instruction `__heap_limit'

startup_stm32f10x_hd.S:54: Error: bad instruction `preserve8'

startup_stm32f10x_hd.S:55: Error: bad instruction `thumb'

startup_stm32f10x_hd.S:57: Error: bad instruction `import OS_CPU_SysTickHandler'

startup_stm32f10x_hd.S:58: Error: bad instruction `import OS_CPU_PendSVHandler'

...(因发贴有字数限制,我删除了一部分信息)

startup_stm32f10x_hd.S:329: Error: bad instruction `dma2_channel4_5_irqhandler'

startup_stm32f10x_hd.S:332: Error: bad instruction `endp'

startup_stm32f10x_hd.S:334: Error: bad instruction `align'

文章评论

linux 汇编 `.eabi_attribute',交叉编译arm-none-eabi-gcc编译汇编文件(startup_stm32f10x_hd.S)遇到的有关问题(2)...相关推荐

  1. linux下gcc编译c文件生成可执行文件的四个步骤

    Linux下gcc编译c文件为可执行文件分为四个步骤: 分别是 预编译.编译.汇编.链接. 1.预编译( 生成 hello.i 文件) 预编译的处理规则: 1. 将所有的 "#define& ...

  2. linux系统gcc编译.c文件没有标准库解决

    linux系统gcc编译.c文件没有标准库解决 现象描述 解决过程 总结 现象描述 当安装好linux系统后(比如ubuntu),通过gcc -v 查看gcc编译器版本已经是最新的了,然后gcc a. ...

  3. Tips--windows系统下gcc编译C文件为so共享库

    windows系统下gcc编译C文件为so共享库 1. windows系统安装gcc编译工具 2. 利用gcc编译多个c文件 3. 利用python工具验证生成的so共享库 1. windows系统安 ...

  4. gcc编译c文件常用命令参数解释

    gcc编译c文件 gcc是常用来编译c语言程序的编译器,了解它编译c语言的命令参数,对c/c++语言的学习是有一定好处的. gcc编译文件一步到位的命令格式 gcc main.c -o main.ex ...

  5. 用gcc编译.cpp文件可能出现undefined reference to `__gxx_personality_v0'问题的解决

    用gcc编译.cpp文件时出现错误:undefined reference to `__gxx_personality_v0', 解决的办法就是通过g++来编译,就可以通过了!! 用gcc编译的话需要 ...

  6. gcc编译c文件中包含其他的头文件

    gcc编译c文件中包含其他的头文件时,需要将所包含的头文件和要编译的这个c文件放在同一目录下,否则会报错:

  7. Linux后台开发系列之「07.gcc 编译基础」

    gcc 版权声明:本文为 cdeveloper 原创文章,可以随意转载,但必须在明确位置注明出处! 本文摘要 这篇文章主要介绍 gcc 相关的技术,包括以下 8 个方面: gcc 简介 gcc 参数 ...

  8. gcc编译c文件 python.h 未找到

    windows 下默认路径找不到python.h gcc -c -I d:/ProLang/python379/include parser.c -o parser.so 加上文件路径就可以了. GC ...

  9. linux之让终端支持C++11/14编译cpp文件

    1  问题 我们的项目很多智能指针,但是我linux的终端肯定不支持C++11/14, 我们平时都是用的下面的命令编译c++文件 g++ -g file.cpp -o file r 如果是用c++11 ...

最新文章

  1. 全国计算机等级考试评卷、成绩处理和证书管理办法
  2. 2018年中国城市用电量30强
  3. 零基础Java学习之包(Package)
  4. matlab做TSP,基于matlab TSP问题遗传算法的实现
  5. BZOJ1251 序列终结者
  6. java gui设置圆形按钮_简单的设置圆形按钮
  7. 12.RabbitMQ实战 --- 聪明的Rabbit:扩展RabbitMQ
  8. datatables java 分页_DataTables后台分页的使用
  9. java人事考勤打卡小程序源码
  10. Beini FeedingBottle[小巧的无线密码破解系统]
  11. 无法启动此程序 因为计算机中丢失hypertrm.dll,开机弹出找不到HYPERTRM.dll
  12. ghost 开发主题
  13. 使用Dragonfly上传Rails图片
  14. 操作系统重要知识清单:一起来搞懂进程呀!!
  15. 电商名词sku和spu的区别
  16. uva 1647(规律)
  17. 万德L2接口是什么?
  18. 自动化测试之:python+unittest+selenium
  19. 8.0钓鱼宏命令插件 使用方法
  20. 在10亿个数中找出前1000个最大的

热门文章

  1. ios11手机怎么投屏到电脑屏幕上
  2. 30分钟,学会经典小游戏编程!
  3. 100个精选Python实战项目案例,初学者练手必备
  4. excel显著性检验_#如何用excel做anova分析#用excel做显著性分析
  5. 中国计算机博士生陈慧祥,中国计算机博士生在美自杀 陈慧祥博士最新消息导师是谁?...
  6. 11月更新!一口气上线20+新功能,3D架构拓扑图更具趣味性~
  7. 数据分析-Jupyter,Matplotlib介绍-Matplotlib绘制图形
  8. 个人身份认证接口介绍
  9. java 动态线程池_线程池的参数动态调整
  10. LEADTOOLS V20,史无前例荣耀归来!!!