我试图从 c 调用一个汇编函数,但我不断收到错误。
.text
.globl integrate
.type integrate, @function
integrate:
push %ebp
mov %esp, %ebp
mov $0,%edi
start_loop:
cmp %edi,1024
je loop_exit
mov 8(%ebp),%eax
mov 12(%ebp),%ecx
sub %eax,%ecx
add %edi,%ecx
incl %edi
jmp start_loop
loop_exit:
movl %ebp, %esp
popl %ebp
ret
这是我的汇编函数,文件名为integrate.s。
#include <stdio.h>
extern int integrate(int from,int to);
void main()
{
printf("%d",integrate(1,10));
}
这是我的c代码。
function.c:5:6: warning: return type of ‘main’ is not ‘int’ [-Wmain]
/tmp/cciR63og.o: In function `main':
function.c:(.text+0x19): undefined reference to `integrate'
collect2: ld returned 1 exit status
每当我尝试使用 gcc -Wall function.c -o 函数编译我的代码时,它都会给出“未定义的集成引用”错误。我还尝试从 c 添加到集成文件的链接,比如
#include<(file path)/integrate.s>
但它也没有用。顺便说一句,汇编代码在做什么并不重要,现在我只是想成功地从 c 调用函数。有人能帮我解决这个问题吗?