各位大家好。 首先,我想向大家介绍我的问题!
我正在使用Atollic TrueStudio开发嵌入式系统。在这个系统中,我有一个驱动程序层(构建为一个静态库。这个库基本上包含STM32 HAL,这个库包含很多弱函数)。 这些库正在使用ARM GCC进行编译,效果很好。我可以将它链接到其他项目中,它确实可以正常工作。
第二部分是问题,因为我想在项目中实施单元测试!
为此,我为同一个驱动程序层静态库(带有STM32 HAL代码的静态库)创建了另一个配置,但这次我用MinGW编译它。 编译工作,但当我尝试将此库链接到另一个项目(可执行项目)。链接器返回"未定义的引用..." (下图)。
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
答案 0 :(得分:0)
对于可能与我有同样怀疑的每个人。这就是答案。
问题是PE32文件格式不支持弱链接。