标签: c++ gcc compiler-construction gnu compiler-flags
在一些编程评委中,我发现他们的默认GCC调用是带有标志:
-DEVAL -static -O2 -o
-DEVAL是什么意思?
答案 0 :(得分:1)
仅供参考:这是如何打印所有可用的宏定义:
gcc -E -dD -x c /dev/null -o -
将其与
gcc -E -DEVAL -dD -x c /dev/null -o -