OpenEdv-开源电子网

 找回密码
 立即注册
正点原子全套STM32/Linux/FPGA开发资料,上千讲STM32视频教程免费下载...
查看: 12637|回复: 19

编译出错,

[复制链接]

2

主题

13

帖子

0

精华

新手上路

积分
46
金钱
46
注册时间
2013-9-15
在线时间
1 小时
发表于 2013-9-16 00:05:21 | 显示全部楼层 |阅读模式
compiling delay.c...
compiling usart.c...
linking...
..\OBJ\test.axf: Warning: L6373E: libattrs.map file not found in System Library directory D:\MKD\armlib\. Library selection may be impaired.
..\OBJ\test.axf: Warning: L6373E: libattrs.map file not found in System Library directory 3.8\ARM\RV31\LIB\armlib\. Library selection may be impaired.
..\OBJ\test.axf: Warning: L6310W: Unable to find ARM libraries.
..\OBJ\test.axf: Error: L6411W: No compatible library exists with a definition of startup symbol __main.
Target not created

请问,这个问题可以怎么处理,已经重装了keil,还是不行

永不放弃!!!
正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

4

主题

40

帖子

0

精华

中级会员

Rank: 3Rank: 3

积分
221
金钱
221
注册时间
2013-1-29
在线时间
29 小时
发表于 2013-9-16 06:37:29 | 显示全部楼层
回复 支持 反对

使用道具 举报

530

主题

11万

帖子

34

精华

管理员

Rank: 12Rank: 12Rank: 12

积分
165309
金钱
165309
注册时间
2010-12-1
在线时间
2108 小时
发表于 2013-9-16 11:07:05 | 显示全部楼层
回复【楼主位】WJY0821:
---------------------------------
看看是不是.s文件没有添加?
我是开源电子网www.openedv.com站长,有关站务问题请与我联系。
正点原子STM32开发板购买店铺http://openedv.taobao.com
正点原子官方微信公众平台,点击这里关注“正点原子”
回复 支持 反对

使用道具 举报

2

主题

13

帖子

0

精华

新手上路

积分
46
金钱
46
注册时间
2013-9-15
在线时间
1 小时
 楼主| 发表于 2013-9-16 22:01:18 | 显示全部楼层
回复【3楼】正点原子:
--------------------------------启动文件添加了,mdk3.80a重装了,按照视频装的,以前安装的编译软件都卸载了,还是报错,
永不放弃!!!
回复 支持 反对

使用道具 举报

530

主题

11万

帖子

34

精华

管理员

Rank: 12Rank: 12Rank: 12

积分
165309
金钱
165309
注册时间
2010-12-1
在线时间
2108 小时
发表于 2013-9-16 22:17:18 | 显示全部楼层
那你上传你的工程。
我是开源电子网www.openedv.com站长,有关站务问题请与我联系。
正点原子STM32开发板购买店铺http://openedv.taobao.com
正点原子官方微信公众平台,点击这里关注“正点原子”
回复 支持 反对

使用道具 举报

2

主题

13

帖子

0

精华

新手上路

积分
46
金钱
46
注册时间
2013-9-15
在线时间
1 小时
 楼主| 发表于 2013-9-16 23:38:33 | 显示全部楼层
回复【5楼】正点原子:
---------------------------------
#include"sys.h"
#include"delay.h"
#include"usart.h"

int main(void)
{
 u8 t=0;
 Stm32_Clock_Init(9);
 uart_init(72,9600); //时钟,72MHZ ,波特率9600,;(72,9600);
 delay_init(72);
 while(1)
 {
  printf("t=%d\r\n",t);
  t++;
delay_ms(500);
 }
}


都是视屏上的工程,

可能是我的MDK3.80A安装问题,按照视频重装了,也一样。
永不放弃!!!
回复 支持 反对

使用道具 举报

2

主题

13

帖子

0

精华

新手上路

积分
46
金钱
46
注册时间
2013-9-15
在线时间
1 小时
 楼主| 发表于 2013-9-17 01:29:38 | 显示全部楼层
回复【6楼】WJY0821:
---------------------------------

我的启动文件会不会是有问题,?
永不放弃!!!
回复 支持 反对

使用道具 举报

120

主题

7877

帖子

13

精华

资深版主

Rank: 8Rank: 8

积分
12010
金钱
12010
注册时间
2013-9-10
在线时间
427 小时
发表于 2013-9-17 10:17:02 | 显示全部楼层
回复【7楼】WJY0821:
---------------------------------
MDK破解了没有。重新拷贝启动文件试下
现在,程序把烂铜烂铁变得智能化了,人呢,一旦离开了这烂铜烂铁就不知道干啥了
回复 支持 反对

使用道具 举报

2

主题

13

帖子

0

精华

新手上路

积分
46
金钱
46
注册时间
2013-9-15
在线时间
1 小时
 楼主| 发表于 2013-9-17 14:37:06 | 显示全部楼层
昨天我按照库函数那本书重新建立了工程,有报错找不到什么文件,但工程里有添加,;
compiling main.c...
..\core\core_cm3.h(90): error:  #5: cannot open source input file "stdint.h": No such file or directory
compiling stm32f10x_it.c...
..\core\core_cm3.h(90): error:  #5: cannot open source input file "stdint.h": No such file or directory
compiling system_stm32f10x.c...
..\core\core_cm3.h(90): error:  #5: cannot open source input file "stdint.h": No such file or directory
compiling core_cm3.c...
..\core\core_cm3.c(24): error:  #5: cannot open source input file "stdint.h": No such file or directory
assembling startup_stm32f10x_hd.s...
compiling misc.c...
..\stm32f10x_fwlib\src\misc.c(24): error:  #5: cannot open source input file "misc.h": No such file or directory
compiling stm32f10x_bkp.c...
..\stm32f10x_fwlib\src\stm32f10x_bkp.c(23): error:  #5: cannot open source input file "stm32f10x_bkp.h": No such file or directory
compiling stm32f10x_can.c...
..\stm32f10x_fwlib\src\stm32f10x_can.c(23): error:  #5: cannot open source input file "stm32f10x_can.h": No such file or directory
compiling stm32f10x_cec.c...
..\stm32f10x_fwlib\src\stm32f10x_cec.c(23): error:  #5: cannot open source input file "stm32f10x_cec.h": No such file or directory
compiling stm32f10x_crc.c...
..\stm32f10x_fwlib\src\stm32f10x_crc.c(23): error:  #5: cannot open source input file "stm32f10x_crc.h": No such file or directory
compiling stm32f10x_dbgmcu.c...
..\stm32f10x_fwlib\src\stm32f10x_dbgmcu.c(23): error:  #5: cannot open source input file "stm32f10x_dbgmcu.h": No such file or directory
compiling stm32f10x_dma.c...
..\stm32f10x_fwlib\src\stm32f10x_dma.c(23): error:  #5: cannot open source input file "stm32f10x_dma.h": No such file or directory
compiling stm32f10x_exti.c...
..\stm32f10x_fwlib\src\stm32f10x_exti.c(23): error:  #5: cannot open source input file "stm32f10x_exti.h": No such file or directory
compiling stm32f10x_flash.c...
..\stm32f10x_fwlib\src\stm32f10x_flash.c(23): error:  #5: cannot open source input file "stm32f10x_flash.h": No such file or directory
compiling stm32f10x_fsmc.c...
..\stm32f10x_fwlib\src\stm32f10x_fsmc.c(23): error:  #5: cannot open source input file "stm32f10x_fsmc.h": No such file or directory
compiling stm32f10x_gpio.c...
..\stm32f10x_fwlib\src\stm32f10x_gpio.c(23): error:  #5: cannot open source input file "stm32f10x_gpio.h": No such file or directory
compiling stm32f10x_iwdg.c...
..\stm32f10x_fwlib\src\stm32f10x_iwdg.c(23): error:  #5: cannot open source input file "stm32f10x_iwdg.h": No such file or directory
compiling stm32f10x_pwr.c...
..\stm32f10x_fwlib\src\stm32f10x_pwr.c(23): error:  #5: cannot open source input file "stm32f10x_pwr.h": No such file or directory
compiling stm32f10x_rcc.c...
..\stm32f10x_fwlib\src\stm32f10x_rcc.c(23): error:  #5: cannot open source input file "stm32f10x_rcc.h": No such file or directory
compiling stm32f10x_rtc.c...
..\stm32f10x_fwlib\src\stm32f10x_rtc.c(23): error:  #5: cannot open source input file "stm32f10x_rtc.h": No such file or directory
compiling stm32f10x_sdio.c...
..\stm32f10x_fwlib\src\stm32f10x_sdio.c(23): error:  #5: cannot open source input file "stm32f10x_sdio.h": No such file or directory
compiling stm32f10x_spi.c...
..\stm32f10x_fwlib\src\stm32f10x_spi.c(23): error:  #5: cannot open source input file "stm32f10x_spi.h": No such file or directory
compiling stm32f10x_tim.c...
..\stm32f10x_fwlib\src\stm32f10x_tim.c(23): error:  #5: cannot open source input file "stm32f10x_tim.h": No such file or directory
compiling stm32f10x_usart.c...
..\stm32f10x_fwlib\src\stm32f10x_usart.c(23): error:  #5: cannot open source input file "stm32f10x_usart.h": No such file or directory
compiling stm32f10x_wwdg.c...
..\stm32f10x_fwlib\src\stm32f10x_wwdg.c(23): error:  #5: cannot open source input file "stm32f10x_wwdg.h": No such file or directory
compiling stm32f10x_adc.c...
..\stm32f10x_fwlib\src\stm32f10x_adc.c(23): error:  #5: cannot open source input file "stm32f10x_adc.h": No such file or directory
compiling stm32f10x_dac.c...
..\stm32f10x_fwlib\src\stm32f10x_dac.c(23): error:  #5: cannot open source input file "stm32f10x_dac.h": No such file or directory
compiling stm32f10x_i2c.c...
..\stm32f10x_fwlib\src\stm32f10x_i2c.c(23): error:  #5: cannot open source input file "stm32f10x_i2c.h": No such file or directory
Target not created
永不放弃!!!
回复 支持 反对

使用道具 举报

530

主题

11万

帖子

34

精华

管理员

Rank: 12Rank: 12Rank: 12

积分
165309
金钱
165309
注册时间
2010-12-1
在线时间
2108 小时
发表于 2013-9-17 16:42:24 | 显示全部楼层
回复【9楼】WJY0821:
---------------------------------
头文件路劲没加吧。
我是开源电子网www.openedv.com站长,有关站务问题请与我联系。
正点原子STM32开发板购买店铺http://openedv.taobao.com
正点原子官方微信公众平台,点击这里关注“正点原子”
回复 支持 反对

使用道具 举报

2

主题

13

帖子

0

精华

新手上路

积分
46
金钱
46
注册时间
2013-9-15
在线时间
1 小时
 楼主| 发表于 2013-9-18 01:38:54 | 显示全部楼层
急!按照库函数版新建工程,的步骤建立工程,
core\core_cm3.h(90): error:  #5: cannot open source input file "stdint.h": No such file or directory
。。。
\core\core_cm3.c(24): error:  #5: cannot open source input file "stdint.h": No such file or directory 


c/c++这项;里面的,Define;这里是输入,STM32F10X_HD,USE_STDPERIPH_DRIVER   吗?

include paths;路径是,\user,   \core  ,  \stm32f10x_fwlib\inc

文件夹
core\包含,core_cm3    ,core_cm3.h    startup_stm32f10x_hd.s  三个文件

stm32f10x_fwlib,包含,inc\  ,src\,两个文件夹

user,包含,main,  startup_stm32f10x_hd,   stm32f10x.h,  stm32f10x_conf.h,,  stm32f10x_it,,, stm32f10x_it.h,,, ,,system_stm32f10x,,,   system_stm32f10x.h   8个文件,

不知道哪里的问题,编译报错
永不放弃!!!
回复 支持 反对

使用道具 举报

530

主题

11万

帖子

34

精华

管理员

Rank: 12Rank: 12Rank: 12

积分
165309
金钱
165309
注册时间
2010-12-1
在线时间
2108 小时
发表于 2013-9-18 10:44:57 | 显示全部楼层
stdint.h,直接去mdk安装目录下搜索。找到后,拷贝到工程/SYSTM/SYS文件夹里面
这个貌似很多朋友装的MDK4.都会出现类似的问题,就是找不到标准库的某个头文件,比较郁闷。
我是开源电子网www.openedv.com站长,有关站务问题请与我联系。
正点原子STM32开发板购买店铺http://openedv.taobao.com
正点原子官方微信公众平台,点击这里关注“正点原子”
回复 支持 反对

使用道具 举报

2

主题

13

帖子

0

精华

新手上路

积分
46
金钱
46
注册时间
2013-9-15
在线时间
1 小时
 楼主| 发表于 2013-9-18 12:29:24 | 显示全部楼层
好的,呵呵谢谢!!~~!
永不放弃!!!
回复 支持 反对

使用道具 举报

2

主题

13

帖子

0

精华

新手上路

积分
46
金钱
46
注册时间
2013-9-15
在线时间
1 小时
 楼主| 发表于 2013-9-18 22:52:52 | 显示全部楼层
Library 这个文件,   ,   MDK3.80AA安装文件夹里搜索不到,,,
永不放弃!!!
回复 支持 反对

使用道具 举报

2

主题

13

帖子

0

精华

新手上路

积分
46
金钱
46
注册时间
2013-9-15
在线时间
1 小时
 楼主| 发表于 2013-9-18 23:04:11 | 显示全部楼层
想重新下载个,MDK3.80a,百度找了很久都没找到,,有没有连接发个,
永不放弃!!!
回复 支持 反对

使用道具 举报

2

主题

13

帖子

0

精华

新手上路

积分
46
金钱
46
注册时间
2013-9-15
在线时间
1 小时
 楼主| 发表于 2013-9-19 00:47:02 | 显示全部楼层
linking...
.\Obj\Hello.axf: Warning: L6373W: libattrs.map file not found in System Library directory C:\Program Files\ARM\ADSv1_2\LIB\armlib\. Library selection may be impaired.
.\Obj\Hello.axf: Warning: L6310W: Unable to find ARM libraries.
.\Obj\Hello.axf: Error: L6411E: No compatible library exists with a definition of startup symbol __main.

找了一下,坛子里面有人遇到和我一样的问题,那个帖子是 http://www.amobbs.com/forum.php? ... ighlight=MDK%2B4.60

把环境变量关于ARM的都改掉,或者不安装ADS1.2就没有问题。也有人说在Release_Notes里面有,

增加环境变量: ARMCC5LIB
变量值:C:\Keil\ARM\ARMCC\lib

请教,这个怎么弄,完全不知道怎么搞。
永不放弃!!!
回复 支持 反对

使用道具 举报

2

主题

13

帖子

0

精华

新手上路

积分
46
金钱
46
注册时间
2013-9-15
在线时间
1 小时
 楼主| 发表于 2013-9-22 14:48:26 | 显示全部楼层
重新换到e盘安装就没报错了,,
永不放弃!!!
回复 支持 反对

使用道具 举报

11

主题

46

帖子

0

精华

初级会员

Rank: 2

积分
121
金钱
121
注册时间
2014-6-25
在线时间
5 小时
发表于 2014-6-26 14:32:36 | 显示全部楼层
回复【12楼】正点原子:
---------------------------------
复制了没用
回复 支持 反对

使用道具 举报

530

主题

11万

帖子

34

精华

管理员

Rank: 12Rank: 12Rank: 12

积分
165309
金钱
165309
注册时间
2010-12-1
在线时间
2108 小时
发表于 2014-6-26 23:16:28 | 显示全部楼层
回复【18楼】fighting*_*:
---------------------------------
报什么错?
我是开源电子网www.openedv.com站长,有关站务问题请与我联系。
正点原子STM32开发板购买店铺http://openedv.taobao.com
正点原子官方微信公众平台,点击这里关注“正点原子”
回复 支持 反对

使用道具 举报

12

主题

40

帖子

0

精华

初级会员

Rank: 2

积分
123
金钱
123
注册时间
2014-9-25
在线时间
3 小时
发表于 2014-9-25 21:36:36 | 显示全部楼层
我也遇到了这种情况,求解!!!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则



关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-11-23 04:12

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表