nasm 中的链接 c 函数
有一个 nasm 项目,我正在从中调用 ac 函数,
我将函数的名称放在“extern”中
,链接时我将所有链接放在一起,但我可能会出现“未定义引用”的错误,
这是我的编译/链接命令
gcc -o Project4 Project4.o array1c.c readdouble.o writedouble.o readarray.o printarray.o addarray.o invertarray.o invertarray2.o invertarray3.oaveragearray.o fastsort.c
got a nasm project and i'm calling a c function from it
I put the name of the function in "extern"
and when linking i put all the links together but i can an error of "undefined reference to"
here is my compile/link command
gcc -o Project4 Project4.o array1c.c readdouble.o writedouble.o readarray.o printarray.o addarray.o invertarray.o invertarray2.o invertarray3.o averagearray.o quicksort.c
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我首先使用“gcc -c”命令将所有 .c 文件编译为目标文件,然后将这些生成的 .o 文件(例如“array1c.o”和“quicksort.o”)与其他预编译文件链接在一起现有的目标文件,看看是否仍然给你一个未定义的引用。这可能是一个不必要的步骤,但我从未在对 gcc 的一次调用中组合原始 .c 文件和 .o 文件。
您可能还必须在任何名为 ... 的 c 函数的开头添加下划线,我知道这是一个依赖于平台的事情(即,Linux 通常不需要在 c 函数上使用下划线,而 OSX 和其他一些 UNIX 平台做)。
最后,您可以尝试使用 ld 将所有目标文件一次性链接在一起,而不是将某些目标文件链接到 Project4.o 中,然后将其链接到您使用 nasm 组装的内容(至少我是这么认为的)我假设您正在做,即您正在制作一个 Project4.o,然后在您的汇编代码中调用该函数)。
希望这有帮助,
杰森
I would first compile all of your .c files using the "gcc -c" command into object files, then link those resulting .o files (such as "array1c.o" and "quicksort.o") together with your other pre-existing object files and see if that still gives you an undefined reference. That may be an unnecessary step, but I've never combined raw .c files and .o files in a single call to gcc.
You may also have to add an underscore to the beginning of any c-functions called ... I know this an be a platform dependent thing (i.e., Linux typically doesn't need underscores on c-functions whereas OSX and some other UNIX platforms do).
Lastly you could try, using ld, to just link all the object files together at once rather than linking some of the object files together into Project4.o, and then linking that to what you had assembled using nasm (at least that's what I'm assuming you're doing, i.e., you're making a Project4.o, and then calling functions from that in your assembly code).
Hope this helps,
Jason