Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
VisualStudio
VS2010 编译simulator出错
发布于 2015-09-09 16:24:15 浏览:3102
订阅该版
用VS2010编译`rt-thread-2.1.0_alpha\bsp\simulator`出现 错误` 2 error C2065: “__rt_init_rti_start”: `未声明的标识符 错误` 4 error C2065: “__rt_init_rti_board_end”: `未声明的标识符 查看代码和帖子可能是`
`中`_MSC_VER`宏定义存在而导致下面的定义为空造成的。 但是用VS编译,这个定义是编译器自定义好的,总不能把`RT_USING_COMPONENTS_INIT`这个给注销掉吧?? ```c /* initialization export */ #ifdef RT_USING_COMPONENTS_INIT typedef int (*init_fn_t)(void); #ifdef _MSC_VER /* we do not support MS VC++ compiler */ #define INIT_EXPORT(fn, level) #else #if RT_DEBUG_INIT struct rt_init_desc { const char* fn_name; const init_fn_t fn; }; #define INIT_EXPORT(fn, level) \ const char __rti_##fn##_name[] = #fn; \ const struct rt_init_desc __rt_init_desc_##fn SECTION(".rti_fn."level) = \ { __rti_##fn##_name, fn}; #else #define INIT_EXPORT(fn, level) \ const init_fn_t __rt_init_##fn SECTION(".rti_fn."level) = fn #endif #endif #else #define INIT_EXPORT(fn, level) #endif ```
查看更多
7
个回答
默认排序
按发布时间排序
aozima
2015-09-09
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
VC编译不支持 `RT_USING_COMPONENTS_INIT` 功能 在配置文件中把这个功能关闭之。
shuimianbao
2015-09-09
这家伙很懒,什么也没写!
>VC编译不支持 RT_USING_COMPONENTS_INIT 功能 >在配置文件中把这个功能关闭之。 --- components 不用初始化??有没有更详细的说明文档介绍看看?
shuimianbao
2015-09-09
这家伙很懒,什么也没写!
RT_USING_COMPONENTS_INIT关闭后出现更多commpoents目录下的符号无法链接到了。 ``` 错误 8 error LNK2019: 无法解析的外部符号 _rt_components_init,该符号在函数 _rt_init_thread_entry 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatorapplication.obj vs 错误 9 error LNK2019: 无法解析的外部符号 _uffs_get_error,该符号在函数 _dfs_uffs_mount 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 10 error LNK2019: 无法解析的外部符号 _uffs_Mount,该符号在函数 _init_uffs_fs 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 11 error LNK2019: 无法解析的外部符号 _uffs_RegisterMountTable,该符号在函数 _init_uffs_fs 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 12 error LNK2019: 无法解析的外部符号 _uffs_UnRegisterMountTable,该符号在函数 _dfs_uffs_unmount 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 13 error LNK2019: 无法解析的外部符号 _uffs_UnMount,该符号在函数 _dfs_uffs_unmount 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 14 error LNK2019: 无法解析的外部符号 _uffs_GetDeviceFree,该符号在函数 _dfs_uffs_statfs 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 15 error LNK2019: 无法解析的外部符号 _uffs_seek,该符号在函数 _dfs_uffs_open 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 16 error LNK2019: 无法解析的外部符号 _uffs_open,该符号在函数 _dfs_uffs_open 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 17 error LNK2019: 无法解析的外部符号 _uffs_opendir,该符号在函数 _dfs_uffs_open 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 18 error LNK2019: 无法解析的外部符号 _uffs_mkdir,该符号在函数 _dfs_uffs_open 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 19 error LNK2019: 无法解析的外部符号 _uffs_close,该符号在函数 _dfs_uffs_close 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 20 error LNK2019: 无法解析的外部符号 _uffs_closedir,该符号在函数 _dfs_uffs_close 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 21 error LNK2019: 无法解析的外部符号 _uffs_read,该符号在函数 _dfs_uffs_read 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 22 error LNK2019: 无法解析的外部符号 _uffs_write,该符号在函数 _dfs_uffs_write 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 23 error LNK2019: 无法解析的外部符号 _uffs_flush,该符号在函数 _dfs_uffs_flush 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 24 error LNK2019: 无法解析的外部符号 _uffs_readdir,该符号在函数 _uffs_seekdir 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 25 error LNK2019: 无法解析的外部符号 _uffs_rewinddir,该符号在函数 _dfs_uffs_seek 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 26 error LNK2019: 无法解析的外部符号 _uffs_stat,该符号在函数 _dfs_uffs_getdents 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 27 error LNK2019: 无法解析的外部符号 _uffs_rmdir,该符号在函数 _dfs_uffs_unlink 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 28 error LNK2019: 无法解析的外部符号 _uffs_remove,该符号在函数 _dfs_uffs_unlink 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 29 error LNK2019: 无法解析的外部符号 _uffs_lstat,该符号在函数 _dfs_uffs_unlink 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 30 error LNK2019: 无法解析的外部符号 _uffs_rename,该符号在函数 _dfs_uffs_rename 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 31 error LNK2019: 无法解析的外部符号 _uffs_InitGlobalFsLock,该符号在函数 _dfs_uffs_init 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 32 error LNK2019: 无法解析的外部符号 _uffs_DirEntryBufInit,该符号在函数 _dfs_uffs_init 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 33 error LNK2019: 无法解析的外部符号 _uffs_InitObjectBuf,该符号在函数 _dfs_uffs_init 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatordfs_uffs.obj vs 错误 34 error LNK2019: 无法解析的外部符号 _uffs_FlashMakeSpare,该符号在函数 _WritePageWithLayout 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatoruffs_nandif.obj vs 错误 35 error LNK2019: 无法解析的外部符号 _uffs_FlashUnloadSpare,该符号在函数 _ReadPageWithLayout 中被引用 E:kevinother实时操作系统RT-thread t-thread-2.1.0_alphaspsimulatoruffs_nandif.obj vs ```
pangwei
2015-09-11
这家伙很懒,什么也没写!
换git上最新的rtt代码
bernard
2015-09-11
这家伙很懒,什么也没写!
最新代码可能也未更改呢,自从我机器上装的VS2013慢如蜗牛后,用得就少了-_- 这个问题是,VC编译时一些段的安排很奇怪,组件自动初始化做不了,所以当前的版本就把VC下的组建初始化给关闭了。 所以,需要你自己在rtconfig.h中把`RT_USING_COMPONENTS_INIT`给关闭掉,然后各个组件自行一个个初始化。
shuimianbao
2015-09-22
这家伙很懒,什么也没写!
操作起来很复杂啊
撰写答案
登录
注册新账号
关注者
0
被浏览
3.1k
关于作者
shuimianbao
这家伙很懒,什么也没写!
提问
2
回答
6
被采纳
0
关注TA
发私信
相关问题
1
visualGDB开发RT-thead 例程
2
VS2012下开发STM32
3
rugui vs2010 64 错误
4
想要在vs2008中simulator不行
5
VS2005搭建simulator时候出错了
6
请教有没有用vs2017+visualgdb搭建编译环境的
7
基于 vs2015 / vs2017 + VisualGDB 编辑 IoT_Camera 项目
8
RT-Thread simulator在VS2012下编译报错问题请教
9
RT_Thread f103bsp工程移植到vs2019出错
10
rt-thread 3.1.3 vs2012工程编译报错
推荐文章
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】【ci】【scons】将ci.attachconfig.yml和scons结合使用
2
Rt-thread中OTA下载后,bootloader不搬程序
3
ulog 日志 LOG_HEX 输出时间改为本地日期时间
4
在RT-Thread Studio中构建前执行python命令
5
研究一了一段时间RTT,直接标准版上手太难,想用nano,但又舍不得组件
热门标签
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
I2C_IIC
ESP8266
UART
WIZnet_W5500
ota在线升级
cubemx
PWM
flash
freemodbus
BSP
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
flashDB
GD32
socket
编译报错
中断
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
xusiwei1236
8
个答案
2
次被采纳
踩姑娘的小蘑菇
1
个答案
2
次被采纳
用户名由3_15位
9
个答案
1
次被采纳
bernard
4
个答案
1
次被采纳
RTT_逍遥
3
个答案
1
次被采纳
本月文章贡献
聚散无由
2
篇文章
15
次点赞
catcatbing
2
篇文章
5
次点赞
Wade
2
篇文章
4
次点赞
Ghost_Girls
1
篇文章
7
次点赞
xiaorui
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部