gpt4 book ai didi

c++ - 如何在ARM Cortex-M芯片上使用STL?

转载 作者:搜寻专家 更新时间:2023-10-31 01:32:55 25 4
gpt4 key购买 nike

我正在使用带有 MCU G++ 编译器和链接器的 STM32 开发板:arm-none-eabi-g++。但是,它似乎与STL不兼容:

#include <list>

int main (void)
{
std::list<int> list;

list.push_back(1);
list.sort();

return 0;
}

链接器错误信息:

abort.c:(.text.abort+0xa): undefined reference to `_exit'
fstatr.c:(.text._fstat_r+0x10): undefined reference to `_fstat'
signalr.c:(.text._kill_r+0x10): undefined reference to `_kill'
signalr.c:(.text._getpid_r+0x0): undefined reference to `_getpid'
writer.c:(.text._write_r+0x12): undefined reference to `_write'
closer.c:(.text._close_r+0xc): undefined reference to `_close'
isattyr.c:(.text._isatty_r+0xc): undefined reference to `_isatty'
lseekr.c:(.text._lseek_r+0x12): undefined reference to `_lseek'
readr.c:(.text._read_r+0x12): undefined reference to `_read'

C++ STL 似乎依赖于操作系统。由于微 Controller 没有这些东西,因此在链接ELF时缺少这些重要部分。

问题是如何在 STM32 L4 系列芯片上使用 STL?

最佳答案

这个问题可以通过在 G++ 链接器中添加 -specs=nosys.specs 来解决。这链接在一个单独的库中,其中包含所有必需系统功能的实现。

另请参阅:http://pabigot.github.io/bspacm/newlib.html

关于c++ - 如何在ARM Cortex-M芯片上使用STL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42243535/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com