我正面临一个消耗了我很多齿的问题。我正在尝试将我的目标文件(用 nasm 编译的小程序)与 ld 链接器链接并使用 c 函数。我搜索了很多,我发现加载所有 c 库的解决方案是将 -lc 作为选项传递给 ld,它诚实地消除了所有警告和错误并生成了我的可执行文件。问题是当我尝试运行我的程序时总是出现“没有这样的文件或目录”错误。
我在互联网上搜索了很多,我发现这个有用的答案Ask Ubuntu Answer但不幸的是这并没有解决我的问题。
这里的一些信息:
> file main
returned:
main: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, not stripped
程序版本为64位,解释器根据“file command.
> ldd main
returned:
linux-vdso.so.1 (0x00007ffdf4bcc000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f7a10b23000)
/lib/ld64.so.1 => /lib64/ld-linux-x86-64.so.2 (0x00007f7a10f14000)
根据“ldd”命令,没有缺少共享库
注意: 通过添加这些选项,相同的程序在 nasm 和 ld 上成功编译并链接到 macosx
-macosx_version_min 11.0 -L /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib -lSystem -no_pie
到链接器ld。
EDIT1: 当我删除 ld 的 -lc 以及我的 asm 文件中的 c 函数调用时,链接程序可以正常工作
编辑2:
readelf -h main
returned:
ELF Header:
Magic: 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00
Class: ELF64
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: UNIX - System V
ABI Version: 0
Type: EXEC (Executable file)
Machine: Advanced Micro Devices X86-64
Version: 0x1
Entry point address: 0x4005d0
Start of program headers: 64 (bytes into file)
Start of section headers: 19096 (bytes into file)
Flags: 0x0
Size of this header: 64 (bytes)
Size of program headers: 56 (bytes)
Number of program headers: 7
Size of section headers: 64 (bytes)
Number of section headers: 21
Section header string table index: 20
有关该程序的一些额外信息