我正在尝试运行一个简单的链接描述文件,以了解链接的工作方式以及如何使用链接描述文件实现功能重新排序
这是我的C代码
void A(){
printf("A\n");
}
void B(){
printf("B\n");
}
void main(){
B();
A();
}
这是链接描述文件
SECTIONS
{
. = 0x10000;
.text : { *(.text) }
. = 0x8000000;
.data : { *(.data) }
.bss : { *(.bss) }
}
当我尝试使用此外部链接程序脚本进行编译时,它给了我这个错误
/usr/lib64/libc_nonshared.a(elf-init.oS): In function `__libc_csu_init':
(.text+0x14): undefined reference to `__init_array_start'
/usr/lib64/libc_nonshared.a(elf-init.oS): In function `__libc_csu_init':
(.text+0x1c): undefined reference to `__init_array_end'
/usr/bin/ld: cl: hidden symbol `__init_array_end' isn't defined
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
我的编译命令是这个
gcc -Wl,-no-whole-archive -ffunction-sections -T simple.ld cache_ex.c -o cl
你能告诉我我在做什么错吗?