您的位置:首页 > Web前端

Difference between CPPFLAGS and CXXFLAGS in GNU Make

2013-05-10 13:35 501 查看
CPPFLAGS
 is
supposed to be for flags for the C PreProcessor; 
CXXFLAGS
 is
for flags for the C++ compiler.

The default rules in make (on my machine, at any rate) pass 
CPPFLAGS
 to
just about everything,
CFLAGS
 is
only passed when compiling and linking C, and 
CXXFLAGS
 is
only passed when compiling and linking C++.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: