我有一个大型项目,自定义Makefile构建所有内容。这适用于ARM Cortex-M0。
其中一个步骤是将Newlib syscalls.c
编译为syscalls.c.o
。这会被转储到存档文件newlib.a
中,而后者又链接到最终的output.elf
,以便加载到我设备的闪存上。
$ arm-none-eabi-gcc -o output.elf .bld/*.c.o .bld/*.cpp.o .bld/libs/*.a -nostartfiles -mcpu=cortex-m0 -mthumb -Tlinker.ld -Wl,-Map=output.map --specs=nano.specs
如果我按照上述程序,有时“存档没有索引”:
.bld/libs/newlib.a: error adding symbols: Archive has no index; run ranlib to add one
有时候(我还没弄明白如何确定地发生一个或另一个)我得到一个未定义的引用,即使_init()
被定义为syscalls.c
中的空函数。
c:/progra~2/gnutoo~1/50a5a~1.420/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/armv6-m\libc_nano.a(lib_a-init.o): In function `__libc_init_array':
init.c:(.text.__libc_init_array+0x1c): undefined reference to `_init'
但是,如果我跳过newlib.a
文件并直接将syscalls.c.o
链接到最终.elf
,那么它会按预期工作。
使用存档会导致此问题吗?我也尝试重新排序链接器的参数无济于事。
我注意到了run ranlib to add one
指令。但是,这不适用,因为:
_init
未定义。我正在编译此版本中的其他存档文件,没有任何问题。这里的独特之处在于,这个存档只有一个文件,它是唯一的C-only存档。但是,我不知道这会如何影响事情。
这基本上就是我编译syscalls.c
并归档.o
文件的方式:
$ arm-none-eabi-gcc newlib/syscalls.c -o .bld/newlib/syscalls.c.o -c -std=gnu11 -Wstrict-prototypes -nostartfiles -mcpu=cortex-m0 -mthumb -O2 -pipe -ffreestanding -funsigned-bitfields -Wall -Wfatal-errors -ffunction-sections -fdata-sections -MMD -MP -MF .bld/.dep/newlib/syscalls.c.o.d
$ arm-none-eabi-ar rcs .bld/libs/newlib.a .bld/newlib/syscalls.c.o
gcc
版
arm-none-eabi-g++ (GNU Tools for ARM Embedded Processors) 5.4.1 20160919 (release) [ARM/embedded-5-branch revision 240496]
简化syscalls.c
caddr_t _sbrk(int nbytes) __attribute__((externally_visible));
void _init(void) __attribute__((externally_visible));
/* c++ destructor dynamic shared object needed if -fuse-cxa-atexit is used*/
void *__dso_handle __attribute__ ((weak));
// defined in linker script
extern caddr_t Heap_Bank1_Start;
extern caddr_t Heap_Bank1_End;
caddr_t _sbrk(int nbytes) { /* ... */ }
void _init(void) {}
答案 0 :(得分:0)
希望此提示可以帮助您:https://github.com/ap4y/modbus.js/issues/1
嗨,你有这个错误,因为静态库(libmodbus.a)已经存在 预编译为其他平台。实际上,把它留进去是我的错 库。为了解决此错误,您应该编译库 为您的平台并在lib目录中替换它。