1
#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
我知道,當我們運行./configure
NGX_SOLARIS
最終確定,但如何實際定義這些宏,您可以提供演示如何最./configure
作品一個詳細的例子?如何在配置中最終確定宏?
./configure
貫穿所有的檢查您的系統平臺是什麼,什麼樣的能力你的編譯器等,然後使用automake
生成與東西的Makefile像CPPFLAGS
它定義它需要在編譯期間傳遞給預處理器宏。
這是GNU編譯系統的所有組成部分:http://developers.sun.com/solaris/articles/gnu.html
你可以提供一個Hello World示例使用SYS構建? – cpuer 2011-06-02 05:38:29
@cpuer - http://autotoolset.sourceforge.net/tutorial.html#SEC42 – birryree 2011-06-02 05:45:54