gpt4 book ai didi

gcc - 为另一台机器编译不起作用

转载 作者:行者123 更新时间:2023-12-01 22:47:53 27 4
gpt4 key购买 nike

我有以下问题:

  • 我有旧系统 - ARM CPU。
  • 在遗留系统上,我没有开发库,也没有 GCC。
  • 在遗留系统上我没有足够的资源(主要是 RAM 和 SWAP 是不可能的)来编译。

我需要编译我有源代码的非常简单的程序。当我使用以下 GCC 命令在另一台也有 ARM CPU(更新一点)的机器上编译它时:

gcc -mcpu=arm920t -march=armv4t -o app app.c

(-mcpu 和 -march 设置为遗留系统的 CPU)

当我将这个编译后的文件复制到遗留系统,使其可执行并尝试运行它时,我收到以下消息:

$ ./app
-sh: ./app: No such file or directory
$ ls -lah
total 237K
drwxr-xr-x 2 root root 0 Apr 4 07:35 .
drwxr-xr-x 4 root root 0 Dec 31 1969 ..
-rwxr-xr-x 1 root root 108K Mar 14 09:23 app
$

路径没有问题,分区没有用noexec选项挂载。当我将任何系统(例如 cat)文件复制到同一目录时,我可以毫无问题地启动它。

这是我编译的应用程序(第一个结果)和已经在系统上的应用程序(第二个结果)之间的区别:

$ readelf -h app
ELF Header:
Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
Class: ELF32
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: UNIX - System V
ABI Version: 0
Type: EXEC (Executable file)
Machine: ARM
Version: 0x1
Entry point address: 0xa278
Start of program headers: 52 (bytes into file)
Start of section headers: 100104 (bytes into file)
Flags: 0x5000002, has entry point, Version5 EABI
Size of this header: 52 (bytes)
Size of program headers: 32 (bytes)
Number of program headers: 10
Size of section headers: 40 (bytes)
Number of section headers: 38
Section header string table index: 35
$

和:

$ readelf -h cat
ELF Header:
Magic: 7f 45 4c 46 01 01 01 61 00 00 00 00 00 00 00 00
Class: ELF32
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: ARM
ABI Version: 0
Type: EXEC (Executable file)
Machine: ARM
Version: 0x1
Entry point address: 0x8c34
Start of program headers: 52 (bytes into file)
Start of section headers: 15220 (bytes into file)
Flags: 0x2, has entry point, GNU EABI
Size of this header: 52 (bytes)
Size of program headers: 32 (bytes)
Number of program headers: 6
Size of section headers: 40 (bytes)
Number of section headers: 24
Section header string table index: 23
$

file cat app 的输出:

app: ELF 32-bit LSB executable, ARM, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.16, not stripped
cat: ELF 32-bit LSB executable, ARM, version 1, dynamically linked (uses shared libs), for GNU/Linux 2.2.0, stripped

我不确定这里有什么问题,因为即使应用程序编译错误,我也希望得到与“没有这样的文件或目录”不同的错误消息。

最佳答案

这个问题主要是由于共享库libc问题。当你在支持gcc的arm机器上编译程序时,使用的库(libc)与你的目标不一样。所以首先检查主机和目标上的库。要交叉检查上面的评论,你可以试试这个。

gcc -static -o app app.c

现在将您的应用程序可执行文件复制到您的目标。在目标上执行,它将毫无问题地执行。检查上面静态编译的代码。利用文件应用程序或者ldd 应用程序。

如果你不想静态编译,那么从目标 rootfs 的/lib 复制你的库编译时提供目标库而不是主机库的库路径。这可以通过

LDFLAGS=-L/<path-to-target-lib>  gcc  -o app app.c

关于gcc - 为另一台机器编译不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15815972/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com