我接近能够在 Windows 上为 Linux 交叉编译二进制文件。我有一个命令可以将我的代码编译为 .o 文件,但我无法将其链接到生成二进制文件。现在它说它无法链接到 Linux 库的多个副本,即使我的系统上有它们的副本并且已将目录提供给链接器。
我使用的命令:
clang -fuse-ld=lld -target x86_64-pc-linux-gnu -LD:/Toolchains/Linux/Libs -o main main.o -v
我收到的错误消息是:
InstalledDir: C:\Program Files\LLVM\bin
"C:\\Program Files\\LLVM\\bin\\ld.lld" --eh-frame-hdr -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o main crt1.o crti.o crtbegin.o -LD:/Toolchains/Linux/Libs "-LC:\\Program Files\\LLVM\\bin/../lib" main.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed crtend.o crtn.o
ld.lld: error: cannot open crt1.o: no such file or directory
ld.lld: error: cannot open crti.o: no such file or directory
ld.lld: error: cannot open crtbegin.o: no such file or directory
ld.lld: error: unable to find library -lgcc
ld.lld: error: unable to find library -lgcc_s
ld.lld: error: unable to find library -lc
ld.lld: error: unable to find library -lgcc
ld.lld: error: unable to find library -lgcc_s
ld.lld: error: cannot open crtend.o: no such file or directory
ld.lld: error: cannot open crtn.o: no such file or directory
clang: error: linker command failed with exit code 1 (use -v to see invocation)
所有的cannot open *.o: no such file or directory
错误都是我在我的 Windows 机器上有一个副本的文件,所以我不确定从这里去哪里让链接器识别我的文件。当我反向执行此操作时,让链接器识别和使用 Windows 库相对简单
任何帮助将不胜感激