我在哪里可以找到关于 aarch64-poky-linux-ld 的文档?

Where can I find documentation on aarch64-poky-linux-ld?

这个问题来自 Can you tell me what "crus" means in "LDFLAGS = crus $@"?

因为我的错误信息是“aarch64-poky-linux-ld: cannot find crus: No such file or directory”, 我在哪里可以找到关于 aarch64-poky-linux-ld 的文档?

此致,

下一个问题:How do I link in needed libraries to a new layer in Yocto?
How do I link librt and libpthread to a new layer in Yocto?

我所知道的所有 Linux 系统都使用 GNU ld 作为它们的链接器,binutils 包的一部分,并且它有一个 complete manual. The aarch64-poky-linux- prefix is a target triplet,用于识别哪个此特定 ld 可执行文件的交叉编译目标。

但是,我认为它会告诉您的是,不属于选项的字符串(以 --- 开头)将被视为输入文件。所以该消息只是报告它正在尝试使用 crus 作为输入文件,但它不存在。这并不奇怪,因为正如您在其他问题中指出的那样,crus 似乎是 ar 程序的选项,而不是 ld 的选项。它们在 LDFLAGS 变量中没有意义。因此,您将需要调试决定首先尝试将这些“选项”传递给 aarch64-poky-linux-ld 的任何 makefile 或脚本。