如何将 C 库链接到 GCC

发布于 2024-12-11 08:15:56 字数 557 浏览 0 评论 0原文

我运行以下命令

./gcc -o test -ansi test.c -L/<other dirs>/gcc/arm-linux-androideabi/4.4.3/include-fixed/

...

test.c:3:18: error: no include path in which to search for stdio.h
test.c: In function 'main':
test.c:7: warning: incompatible implicit declaration of built-in function 'printf'

这是 ls

jackie@jackie-Latitude-E6410:<Other dirs>/gcc/arm-linux-androideabi/4.4.3/include-fixed/ ls
limits.h  linux  README  stdio.h  sys  syslimits.h

有什么想法吗?

I run the following

./gcc -o test -ansi test.c -L/<other dirs>/gcc/arm-linux-androideabi/4.4.3/include-fixed/

I get ...

test.c:3:18: error: no include path in which to search for stdio.h
test.c: In function 'main':
test.c:7: warning: incompatible implicit declaration of built-in function 'printf'

Here is the ls

jackie@jackie-Latitude-E6410:<Other dirs>/gcc/arm-linux-androideabi/4.4.3/include-fixed/ ls
limits.h  linux  README  stdio.h  sys  syslimits.h

Any Ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

妳是的陽光 2024-12-18 08:15:56

对于包含文件,您可能需要使用 -I 而不是 -L,后者用于指定共享库和静态库本身的位置。

For include files you probably want to use -I instead of -L which is what you use to specify locations the shared and static libraries themselves.

洒一地阳光 2024-12-18 08:15:56

您应该在编译行将 -L 更改为 -I

-L 用于链接库,-I用于添加到包含搜索路径。

因此,当它编译而不是链接时,您可能会遇到另一个错误,那么您将需要添加 -L-l (除非您只是添加所需的完整库)路径)

You should change the -L to -I on the compile line

-L is for linking libraries and -I is for adding to the include search paths.

So you might get another error when it compiles and not link, then you will need to add a -L and a -l (unless you just add the needed libraries with full paths)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文