-fexec-charset是预处理选项还是编译本身的选项?

发布于 2022-09-08 18:08:11 字数 666 浏览 10 评论 3

在看GNU CPP(C preprocessor)手册的时候,有如下一段话:
After preprocessing is complete, string and character constants are converted again, into the execution character set.
This character set is under control of the user; the default is UTF-8, matching the source character set.

这里说的under control of the user应该指的就是-fexec-charset=选项。但是,string and character constants are converted again, into the execution character set.这个按照它说的应该是在预处理完成之后,即compilation proper阶段(预处理之后的编译阶段)做的事情。那-fexec-charset=就应该不是一个控制cpp的选项,应该是一个控制compilation proper的选项。可为什么在GCC手册里,-fexec-charset=却被放在了3.11 Options Controlling the Preprocessor这一节里?成了一个控制cpp的选项。

弄不明白,希望大家指点。

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

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

发布评论

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

评论(3

淡淡绿茶香 2022-09-19 10:29:11

刚才看了一下,还真是这样,觉得有点奇怪。不过不用太关心吧,呵呵

后知后觉 2022-09-19 07:25:07

楼上,那GCC手册把它放在3.11 Options Controlling the Preprocessor如何理解?

公布 2022-09-19 06:22:46

是编译器的选项。

       -fexec-charset=charset
           Set the execution character set, used for string and character
           constants.  The default is UTF-8.  charset can be any encoding
           supported by the system’s "iconv" library routine.

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