码迷,mamicode.com
首页 > 编程语言 > 详细

c++编译时打印宏定义

时间:2017-05-23 23:41:23      阅读:467      评论:0      收藏:0      [点我收藏+]

标签:使用   message   macro   字符串   mac   tar   print   efi   pat   

#pragma message("this is message")

 

 

#pragma message只能打印字符串,如果想打印任何宏定义可使用:

 

#define PRINT_MACRO_HELPER(x) #x
#define PRINT_MACRO(x) #x"="PRINT_MACRO_HELPER(x)
#pragma message(PRINT_MACRO(var))

 

 

如:#define __cplusplus 199911L

#pragma message(PRINT_MACRO(__cplusplus))

 

 

Android.mk输出信息

$(warning "LOCAL_PATH is$(LOCAL_PATH)")
$(warning "TARGET_ARCH is$(TARGET_ARCH)")

c++编译时打印宏定义

标签:使用   message   macro   字符串   mac   tar   print   efi   pat   

原文地址:http://www.cnblogs.com/asminfo/p/6896502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!