宏在configure中最终是如何确定的?
#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
./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 usesautomake
to generate Makefiles with stuff likeCPPFLAGS
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