gpt4 book ai didi

c++ - 未定义对弱函数的引用(静态库+ GCC)

转载 作者:太空宇宙 更新时间:2023-11-04 04:17:40 26 4
gpt4 key购买 nike

大家好。首先,我想向大家介绍一下我的问题!

我正在使用 Atollic TrueStudio 开发嵌入式系统。在这个系统中,我有一个驱动层(作为静态库构建。这个库基本上包含了 STM32 HAL,这个库包含了很多弱函数)。这些库是用 ARM GCC 编译的,运行良好。我可以将它链接到其他项目中,它确实可以正常工作。

第二部分是问题,因为我想在项目中实现单元测试!

为此,我为同一个驱动层静态库(带有 STM32 HAL 代码的库)创建了另一个配置,但这次我使用 MinGW 编译它。编译有效,但是当我尝试将这个库链接到另一个项目(一个可执行项目)时。链接器返回“对...的 undefined reference ”(下图)。

PS:问题出在链接器上,因为项目会找到声明弱函数的位置。虽然它找不到它的定义位置!

编辑

这是主要代码

#include <MbedOS/platform/mbed_error.h>

int main(void)
{
error("Stream obj failure, errno=%d\r\n",

return 0;
}

这是定义函数的地方(在静态库中)mbed_error.c

#include <MbedOS/platform/mbed_error.h>

static uint8_t error_in_progress = 0;

WEAK void error(const char* format,
...)
{

// Prevent recursion if error is called again
if (error_in_progress)
{
return;
}

error_in_progress = 1;

#ifndef NDEBUG
va_list arg;
va_start(arg,
format);
mbed_error_vfprintf(format,
arg);
va_end(arg);
#endif

exit(1);
}

这是 mbed_error.h 文件

#ifdef __cplusplus
extern "C"
{
#endif
void error(const char* format,
...);

#ifdef __cplusplus
}
#endif

这是控制台的结果

13:45:44 **** Build of configuration Debug for project testeLINKER ****
make all
gcc -o "testeLINKER.elf" ./src/main.o -lSTM32F7_Driver_Layer -L"E:\TrueStudio_Projects\STM32F7_Driver_Layer\Projeto\TrueStudio\UnitTestLibrary"
./src/main.o: In function `main':
E:\TrueStudio_Projects\testeLINKER\Debug/../src/main.c:33: undefined reference to `error'
collect2.exe: error: ld returned 1 exit status
make: *** [testeLINKER.elf] Error 1

13:45:44 Build Finished (took 460ms)

编辑 2 静态库的nm输出如下(只是其中一个功能较弱的文件)

    C:\Program Files (x86)\Atollic\TrueSTUDIO for STM32 9.0.0\PCTools\bin>nm E:\TrueStudio_Projects\STM32F7_Driver_Layer\Projeto\TrueStudio\UnitTestLibrary\Source\MbedOS\platform\mbed_error.o
00000000 b .bss
00000000 d .data
00000000 N .debug_abbrev
00000000 N .debug_aranges
00000000 N .debug_info
00000000 N .debug_line
00000000 r .eh_frame
00000000 r .rdata$zzz
00000000 t .text
00000000 T .weak._error.
w _error
00000000 b _error_in_progress
U _exit
U _mbed_error_vfprintf

最佳答案

对于可能和我有同样疑问的每个人。这就是答案。

问题是PE32文件格式不支持弱链接

关于c++ - 未定义对弱函数的引用(静态库+ GCC),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50105078/

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