宏在configure中最终是如何确定的?

发布于 2024-11-13 09:22:39 字数 227 浏览 2 评论 0原文

#if (NGX_SOLARIS)

    ngx_int_t   i;
    size_t      size;

#endif

我知道当我们运行./configure时,NGX_SOLARIS最终确定,但是这些宏实际上是如何定义的,您能否提供一个详细的示例来演示大多数. /configure 有效吗?

#if (NGX_SOLARIS)

    ngx_int_t   i;
    size_t      size;

#endif

I know that NGX_SOLARIS is finally determined when we run ./configure,but how are these macros actually defined,can you provide a detailed example that demonstrates how most ./configure works?

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

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

发布评论

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

评论(1

时光磨忆 2024-11-20 09:22:39

./configure 运行所有检查,了解您的系统平台是什么、您的编译器具有哪些功能等,然后它使用 automake 生成包含诸如 之类的内容的 Makefile >CPPFLAGS 定义编译期间需要传递给预处理器的宏。

这是 GNU 构建系统的一部分: http://developers.sun.com/solaris /articles/gnu.html

./configure runs through all the checks for what your system's platform is, what capabilities your compiler has, etc. and then it uses automake to generate Makefiles with stuff like CPPFLAGS which define the macros it needs to pass to the preprocessor during compilation.

This is all part of the GNU build system: http://developers.sun.com/solaris/articles/gnu.html

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