Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
求救,我用scon一直编不了
发布于 2012-02-19 10:10:21 浏览:5764
订阅该版
[tocm] 最近想用rtt 做毕业设计,但是编译就卡了,我的环境变量,设置了,然后用的是keil4 ,rtconfig配置如下, # toolchains options ARCH='arm' CPU='cortex-m3' CROSS_TOOL='keil' #device options # STM32_TYPE = # 'STM32F10X_LD','STM32F10X_LD_VL', # 'STM32F10X_MD','STM32F10X_MD_VL', # 'STM32F10X_HD','STM32F10X_HD_VL', # 'STM32F10X_XL','STM32F10X_CL' STM32_TYPE = 'STM32F10X_HD' # lcd panel options # 'FMT0371','ILI932X', 'SSD1289' RT_USING_LCD_TYPE = 'SSD1289' # cross_tool provides the cross compiler # EXEC_PATH is the compiler execute path, for example, CodeSourcery, Keil MDK, IAR if CROSS_TOOL == 'keil': PLATFORM = 'gcc' EXEC_PATH = 'D:/SourceryGCC/bin' elif CROSS_TOOL == 'keil': PLATFORM = 'armcc' EXEC_PATH = 'C:/Keil' elif CROSS_TOOL == 'iar': PLATFORM = 'iar' IAR_PATH = 'E:/Program Files/IAR Systems/Embedded Workbench 6.0' BUILD = 'debug' if PLATFORM == 'gcc': # toolchains PREFIX = 'arm-none-eabi-' CC = PREFIX + 'gcc' AS = PREFIX + 'gcc' AR = PREFIX + 'ar' LINK = PREFIX + 'gcc' TARGET_EXT = 'axf' SIZE = PREFIX + 'size' OBJDUMP = PREFIX + 'objdump' OBJCPY = PREFIX + 'objcopy' DEVICE = ' -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections' CFLAGS = DEVICE AFLAGS = ' -c' + DEVICE + ' -x assembler-with-cpp' LFLAGS = DEVICE + ' -Wl,--gc-sections,-Map=rtthread-stm32.map,-cref,-u,Reset_Handler -T stm32_rom.ld' CPATH = '' LPATH = '' if BUILD == 'debug': CFLAGS += ' -O0 -gdwarf-2' AFLAGS += ' -gdwarf-2' else: CFLAGS += ' -O2' POST_ACTION = OBJCPY + ' -O binary $TARGET rtthread.bin
' + SIZE + ' $TARGET
' elif PLATFORM == 'armcc': # toolchains CC = 'armcc' AS = 'armasm' AR = 'armar' LINK = 'armlink' TARGET_EXT = 'axf' DEVICE = ' --device DARMSTM' CFLAGS = DEVICE + ' --apcs=interwork' AFLAGS = DEVICE LFLAGS = DEVICE + ' --info sizes --info totals --info unused --info veneers --list rtthread-stm32.map --scatter stm32_rom.sct' CFLAGS += ' -I' + EXEC_PATH + '/ARM/RV31/INC' LFLAGS += ' --libpath ' + EXEC_PATH + '/ARM/RV31/LIB' EXEC_PATH += '/arm/bin40/' if BUILD == 'debug': CFLAGS += ' -g -O0' AFLAGS += ' -g' else: CFLAGS += ' -O2' POST_ACTION = 'fromelf --bin $TARGET --output rtthread.bin
fromelf -z $TARGET' elif PLATFORM == 'iar': # toolchains CC = 'iccarm' AS = 'iasmarm' AR = 'iarchive' LINK = 'ilinkarm' TARGET_EXT = 'out' DEVICE = ' -D USE_STDPERIPH_DRIVER' + ' -D STM32F10X_HD' CFLAGS = DEVICE CFLAGS += ' --diag_suppress Pa050' CFLAGS += ' --no_cse' CFLAGS += ' --no_unroll' CFLAGS += ' --no_inline' CFLAGS += ' --no_code_motion' CFLAGS += ' --no_tbaa' CFLAGS += ' --no_clustering' CFLAGS += ' --no_scheduling' CFLAGS += ' --debug' CFLAGS += ' --endian=little' CFLAGS += ' --cpu=Cortex-M3' CFLAGS += ' -e' CFLAGS += ' --fpu=None' CFLAGS += ' --dlib_config "' + IAR_PATH + '/arm/INC/c/DLib_Config_Normal.h"' CFLAGS += ' -Ol' CFLAGS += ' --use_c++_inline' AFLAGS = '' AFLAGS += ' -s+' AFLAGS += ' -w+' AFLAGS += ' -r' AFLAGS += ' --cpu Cortex-M3' AFLAGS += ' --fpu None' LFLAGS = ' --config stm32f10x_flash.icf' LFLAGS += ' --redirect _Printf=_PrintfTiny' LFLAGS += ' --redirect _Scanf=_ScanfSmall' LFLAGS += ' --entry __iar_program_start' EXEC_PATH = IAR_PATH + '/arm/bin/' POST_ACTION = '' 没有错误啊,但是为啥编译变成这样,说没有install vcs D: tt \bsp\stm32f10x>scons scons: Reading SConscript files ... scons: warning: No installed VCs File "D: tt \bsp\stm32f10x\SConstruct", line 23, in
scons: warning: No version of Visual Studio compiler found - C/C++ compilers mos t likely not set correctly File "D: tt \bsp\stm32f10x\SConstruct", line 23, in
scons: done reading SConscript files. scons: Building targets ... scons: building associated VariantDir targets: build\bsp arm-none-eabi-gcc -o build\bsp\application.o -c -mcpu=cortex-m3 -mthumb -ffuncti on-sections -fdata-sections -O0 -gdwarf-2 -DRT_USING_MINILIBC -DUSE_STDPERIPH_DR IVER -DSTM32F10X_HD -I. -ID: tt -ID: tt \include -ID: tt \libcpu\arm\cort ex-m3 -ID: tt \libcpu\arm\common -ID: tt \components\finsh -ID: tt \compon ents\libc\minilibc -ILibraries\STM32F10x_StdPeriph_Driver\inc -ID: tt \Librari es\STM32F10x_StdPeriph_Driver\inc -ILibraries\CMSIS\CM3\CoreSupport -ID: tt \L ibraries\CMSIS\CM3\CoreSupport -ILibraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x -ID: tt \Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x application.c scons: *** [build\bsp\application.o] scons: building terminated because of errors. 求就,到底要怎么才能编译,急,谢谢
查看更多
6
个回答
默认排序
按发布时间排序
bernard
2012-02-19
这家伙很懒,什么也没写!
VC那个是警告,没什么关系。从错误log来看,明显你的配置文件不对。 你是否改到其他的配置去了?从命令行来看,你目前的配置是GNU GCC的。
ZIF520
2012-02-19
这家伙很懒,什么也没写!
现在stm的好了,但是mini2440的还是不可以,如下, D:\rtt\r\bsp\mini2440>scons scons: Reading SConscript files ... scons: warning: No installed VCs File "D:\rtt\r\bsp\mini2440\SConstruct", line 23, in
scons: warning: No version of Visual Studio compiler found - C/C++ compilers mos t likely not set correctly File "D:\rtt\r\bsp\mini2440\SConstruct", line 23, in
================ERROR============================ Please use GNU GCC compiler if using newlib =================================================
aozima
2012-02-19
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
NEWLIB 只能在GCC下面使用。 贴错误请贴最有用的。
ZIF520
2012-02-20
这家伙很懒,什么也没写!
好的,谢谢,因为我是刚开始接触,所以不知道什么事最有用的,sorry
bernard
2012-02-23
这家伙很懒,什么也没写!
>好的,谢谢,因为我是刚开始接触,所以不知道什么事最有用的,sorry --- 其实错误信息里已经提示了: ================ERROR============================ Please use GNU GCC compiler if using newlib ================================================== 如果使用了newlib,请使用GNU GCC编译器
撰写答案
登录
注册新账号
关注者
0
被浏览
5.8k
关于作者
ZIF520
这家伙很懒,什么也没写!
提问
2
回答
4
被采纳
0
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
RT Thread 源码分析笔记 :线程和调度器
2
RT-Thread项目助手v0.2.0 - 支持Env Windows
3
RttreadV5.10上,GD32F450Z RTC时间显示问题
4
rt-smart启动流程分析
5
EtherKit快速上手PROFINET
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
UART
WIZnet_W5500
ota在线升级
PWM
cubemx
flash
freemodbus
BSP
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
flashDB
GD32
socket
编译报错
中断
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
MicroPython
C++_cpp
本月问答贡献
出出啊
1517
个答案
342
次被采纳
小小李sunny
1444
个答案
290
次被采纳
张世争
813
个答案
177
次被采纳
crystal266
547
个答案
161
次被采纳
whj467467222
1222
个答案
149
次被采纳
本月文章贡献
聚散无由
2
篇文章
12
次点赞
Wade
2
篇文章
2
次点赞
xiaorui
1
篇文章
1
次点赞
zhuzhuzhu
1
篇文章
1
次点赞
catcatbing
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部