Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
RT-Thread脚本构建环境新特性
发布于 2012-08-11 17:05:33 浏览:3648
订阅该版
[tocm] * 这个特性添加在svn trunk版本中,会在下一版本中发布出来。 大家在阅读Linux kernel内核代码时是否会觉得代码非常庞多?开源软件最不缺的就是源代码!同样RT-Thread也是这样,随着功能越来越多,代码也越来越庞大,为了解决这类问题,RT-Thread scons构建脚本加入新的命令行参数:scons --copy 调用这个参数命令后,可以把rt-thread目录中引用到的文件一分不少的复制一份到本地的rt-thread目录。这样能够非常方便学习、浏览代码。 另外需要注意的时,对于已有的bsp,需要支持这个特性,需要稍微修改下SConstruct文件: ``` # build program program = env.Program(TARGET, objs) # end building EndBuilding(TARGET, program) ``` 在EndBuilding的函数中加入前面返回的program变量。 例如对于ART的最小环境,执行scons --copy后会输出: ``` Z:githubARTsoftwareasic>scons --copy scons: Reading SConscript files ... => componentsdriversincludedriversi2c-bit-ops.h => componentsdriversincludedriversi2c.h => componentsdriversincludedriversi2c_dev.h => componentsdriversincludedriversmmcsd_card.h => componentsdriversincludedriversmmcsd_cmd.h => componentsdriversincludedriversmmcsd_core.h => componentsdriversincludedriversmmcsd_host.h => componentsdriversincludedriversmtd_nand.h => componentsdriversincludedriversmtd_nor.h => componentsdriversincludedriverssd.h => componentsdriversincludedriverssdio.h => componentsdriversincludedriverssdio_func_ids.h => componentsdriversincludedriversserial.h => componentsdriversincludedriversspi.h => componentsdriversincludedriversusb_host.h => componentsdriversinclude tdevice.h => componentsdriversserialserial.c => componentsdriverssrccompletion.c => componentsdriverssrcdatalink.c => componentsdriverssrcpipe.c => componentsdriverssrc ingbuffer.c => componentsfinshcmd.c => componentsfinshfinsh.h => componentsfinshfinsh_compiler.c => componentsfinshfinsh_error.c => componentsfinshfinsh_error.h => componentsfinshfinsh_heap.c => componentsfinshfinsh_heap.h => componentsfinshfinsh_init.c => componentsfinshfinsh_node.c => componentsfinshfinsh_node.h => componentsfinshfinsh_ops.c => componentsfinshfinsh_ops.h => componentsfinshfinsh_parser.c => componentsfinshfinsh_parser.h => componentsfinshfinsh_token.c => componentsfinshfinsh_token.h => componentsfinshfinsh_var.c => componentsfinshfinsh_var.h => componentsfinshfinsh_vm.c => componentsfinshfinsh_vm.h => componentsfinshshell.c => componentsfinshshell.h => componentsfinshsymbol.c => componentslibcminilibcctype.c => componentslibcminilibcctype.h => componentslibcminilibcmath.c => componentslibcminilibcmath.h => componentslibcminilibcqsort.c => componentslibcminilibc and.c => componentslibcminilibcstdint.h => componentslibcminilibcstdlib.c => componentslibcminilibcstdlib.h => componentslibcminilibcstring.c => componentslibcminilibcstring.h => componentslibcminilibcsys ime.h => componentslibcminilibcsys ypes.h => componentslibcminilibc ime.c => componentslibcminilibc ime.h => include tdebug.h => include tdef.h => include thw.h => include tm.h => include tservice.h => include tthread.h => libcpuarmcommonacktrace.c => libcpuarmcommondiv0.c => libcpuarmcommonshowmem.c => libcpuarmcortex-m4context_gcc.s => libcpuarmcortex-m4cpuport.c => srcclock.c => srcdevice.c => srcidle.c => srcipc.c => srcirq.c => srckservice.c => srcmem.c => srcmempool.c => srcobject.c => srcscheduler.c => src hread.c => src imer.c => componentsSConscript => componentsdriversSConscript => componentsdriversincludeSConscript => componentsdriversincludedriversSConscript => componentsdriversserialSConscript => componentsdriverssrcSConscript => componentsfinshSConscript => componentslibcSConscript => componentslibcminilibcSConscript => componentslibcminilibcsysSConscript => includeSConscript => libcpuSConscript => libcpuarmSConscript => libcpuarmcommonSConscript => libcpuarmcortex-m4SConscript => srcSConscript => tools scons: done reading SConscript files. scons: Building targets ... scons: building associated VariantDir targets: build scons: `.' is up to date. scons: done building targets. Z:githubARTsoftwareasic> ``` 引用到RT-Thread中的文件被一个不少的复制到rt-thread目录中!
查看更多
5
个回答
默认排序
按发布时间排序
aozima
2012-08-11
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
好功能呀。。
lgnq
2012-08-14
这家伙很懒,什么也没写!
在 SVN/bsp/mini2440 分支试用了一下 1,修改 spmini2440SConstruct ``` # build program env.Program(TARGET, objs) # end building EndBuilding(TARGET) ``` 改为: ``` # build program program = env.Program(TARGET, objs) # end building EndBuilding(TARGET, program) ``` 2,执行 scons --copy 3,在 mini2440 目录下就自动生成了 rt-thread 目录,所有工程相关的源文件都包含在此目录中 4,在 rt-thread 目录中建立一个 sourceinsight 工程,就可以方便阅读 mini2440 工程的代码了。 不存在某个函数多处都有定义的情况(如rt_application_init)
shaolin
2012-08-19
这家伙很懒,什么也没写!
使用 scons --copy 命令后, 在 rtthread 目录下也创建了 tools 的目录, 这个目录下还有 svn 相关的文件夹信息,应该不太对; 此外,使用 scons --target=mdk4 命令是否能够直接指向这个创建出来的 rtthread 目录呢?
bernard
2012-08-19
这家伙很懒,什么也没写!
有svn是因为原来的tools目录下也有svn目录,这个tools是完全按照目录复制过来的。 新的svn支持只把svn放在根目录了,这个特性挺好的。
撰写答案
登录
注册新账号
关注者
0
被浏览
3.6k
关于作者
bernard
这家伙很懒,什么也没写!
提问
414
回答
5944
被采纳
76
关注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
2024 RT-Thread睿赛德开发者大会共探商业共赢的开源生态
2
rt-thread 小内存算法源码分析
3
env中添加lvgl软件包后,keil编译包--c99错误
4
【NXP-MCXA153】 定时器驱动移植
5
GD32F450 看门狗驱动适配
热门标签
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
freemodbus
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
Debug
中断
编译报错
rt_mq_消息队列_msg_queue
SFUD
keil_MDK
msh
ulog
C++_cpp
MicroPython
本月问答贡献
a1012112796
20
个答案
3
次被采纳
红枫
8
个答案
2
次被采纳
踩姑娘的小蘑菇
7
个答案
2
次被采纳
三世执戟
7
个答案
1
次被采纳
Ryan_CW
5
个答案
1
次被采纳
本月文章贡献
YZRD
3
篇文章
6
次点赞
catcatbing
3
篇文章
6
次点赞
lizimu
2
篇文章
12
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部