我正在尝试编写非常基本的 x86 代码并在 C 程序中调用它。我正在运行 OSX 10.8.2。这是我的代码:
开始.c:
#include <stdio.h>
void _main(); // inform the compiler that Main is an external function
int main(int argc, char **argv) {
_main();
return 0;
}
代码.s
.text
.globl _main
_main:
ret
我运行以下命令来尝试编译:
gcc -c -o code.o code.s
gcc -c -o start.o start.c
gcc -o start start.o code.o
然后在最终命令之后返回此输出:
Undefined symbols for architecture x86_64:
"__main", referenced from:
_main in start.o
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status
我在编译器调用中遗漏了什么吗?我需要更新一些东西/安装一些不同的东西吗?我只是无法在任何地方找到明确的答案,因为这是一个如此普遍的输出。谢谢!