gpt4 book ai didi

c - 我的 C 程序无法运行 `cannot execute binary file: Exec format error`

转载 作者:太空狗 更新时间:2023-10-29 14:50:54 24 4
gpt4 key购买 nike

我刚开始使用 C。我正在尝试编译以下代码并执行它,但出现错误。

同时运行 size 在 BS 或数据堆栈中什么也没显示?

#include<stdio.h>
/* test.c: My first C program on a Linux */
int main(void)
{
printf("Hello! This is a test prgoram.\n");
return 0;
}

编译作品:

gcc -c test.c -o test

执行:

bash: ./test: cannot execute binary file: Exec format error

尺寸:

  text     data     bss     dec     hex filename
108 0 0 108 6c test

最佳答案

好吧,因为没有人 想说为什么...你需要删除-c选项因为 according to the man :

the -c option says not to run the linker. Then the output consists of object files output by the assembler.

所以基本上,您不是在创建完全 可执行文件,just object files .

这里有一些关于编译如何工作的快速信息:http://courses.cms.caltech.edu/cs11/material/c/mike/misc/compiling_c.html

关于c - 我的 C 程序无法运行 `cannot execute binary file: Exec format error`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34653556/

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