这是我的两个源代码文件
//main.c
#include "stdio.h"
int sum(int *a, int n);
int array[2] = {1, 2};
int main()
{
int val = sum(array,2);
printf("%d\n", val);
return 0;
}
//sum.c
int sum(int *a, int n)
{
int i=0,s =0;
for(;i<n;i++)
s+=a[i];
return s;
}
通过以下步骤生成可执行文件:
# preprocessing
gcc -E main.c -o main.i
gcc -E sum.c -o sum.i
# compilation
gcc -Og -S main.i -o main.s
gcc -Og -S sum.i -o sum.s
# assembling
as main.s -o main.o
as sum.s -o sum.o
# linking
ld -o prog sum.o main.o -lc --entry main
但是生成的可执行文件运行不了:
$ ./prog
-bash: ./prog: No such file or directory
$ file ./prog
prog: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib/ld6, not stripped
$ stat prog
File: prog
Size: 6424 Blocks: 16 IO Block: 4096 regular file
Device: 801h/2049d Inode: 3153139 Links: 1
Access: (0777/-rwxrwxrwx) Uid: ( 1000/ u) Gid: ( 1000/ u)
Access: 2021-01-22 17:41:02.516854257 +0800
Modify: 2021-01-22 17:31:02.969230783 +0800
Change: 2021-01-22 17:40:57.432364965 +0800
Birth: -
我使用的操作系统是 ubuntu 18.04 x86-64
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.