如何阻止 Clang 复制标准 C 头文件中的函数?

发布于 2024-12-02 16:47:19 字数 754 浏览 0 评论 0原文

我有一些非常可爱的 C99 代码,它们是从多个 .c 文件编译而来的,当我用 Clang 2.7 编译时,我得到了一些非常奇怪的错误:

/usr/include/bits/stdio.h:77: multiple definition of `putchar'
a2test.o:/usr/include/bits/stdio.h:77: first defined here

发生的情况是 声明某些函数,包括 putchar,为 extern __inline__,并且出于某种原因 clang 将定义放入.o 文件。然后,当链接器看到重复的定义时,它会发出警告。

我怀疑存在配置问题:当我使用 Debian lenny 附带的 clang 2.7 时,一切都会编译。但对于我教授的课程,软件必须在 Red Hat Enterprise Linux 5 上运行,并且我的系统管理员已经从源代码构建了 clang 2.7。 (我们没有使用 2.9,因为我们无法让它编译 hello world,并且我们没有使用更高版本,因为我们无法构建最新版本。)

我正在寻找一种解决方法,可以让我来编译。要么是命令行选项,要么是重新配置 clang 的方法,这样它就不会做这种坏事。

我已经尝试过 -U__USE_EXTERN_INLINES 但没有效果。

I've got some perfectly lovely C99 codes that are compiled from multiple .c files, and when I compile with Clang 2.7, I get some very strange errors:

/usr/include/bits/stdio.h:77: multiple definition of `putchar'
a2test.o:/usr/include/bits/stdio.h:77: first defined here

What's happening is that the GNU libc header file for <stdio.h> declares certain functions, including putchar, to be extern __inline__, and for some reason clang is putting definitions into the .o files. Then when the linker sees the duplicate definitions, it bleats.

I suspect a configuration problem: when I use the clang 2.7 that ships with Debian lenny, everything compiles. But for the class I'm teaching, software has to run on Red Hat Enterprise Linux 5, and my sysadmin has built clang 2.7 from source. (We're not using 2.9 because we couldn't get it to compile hello world, and we're not using a later version because we couldn't get the latest to build.)

I am looking for a workaround that will allow me to compile. Either a command-line option or a way to reconfigure clang so it doesn't do this bad thing.

I have already tried -U__USE_EXTERN_INLINES with no effect.

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

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

发布评论

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

评论(2

锦上情书 2024-12-09 16:47:19

LLVM bug 5960 显示此问题是由 clang 的 C99 支持与旧版本的 GNU libc 之间的交互造成的安装在 RHEL 5 上。看来对于我们这些使用 RHEL 5 的人来说,不可能使用 clang -std=c99 -Ox任意 x > 0 。

LLVM bug 5960 shows that this problem results from an interaction between clang's C99 support and the old version of GNU libc that is installed on RHEL 5. It appears that for those of us stuck with RHEL 5, it's not possible to use clang -std=c99 -Ox for any x > 0.

乜一 2024-12-09 16:47:19

尝试-std=gnu89;不太理想,但作为一种解决方法应该足够好了。

Try -std=gnu89; not really ideal, but should be good enough as a workaround.

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