Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GCC compiler flag "-DEVAL"

On some programming judges I found that their default GCC call is with flags:

-DEVAL -static -O2 -o 

What does -DEVAL mean?

like image 375
Viktor Avatar asked Apr 11 '26 03:04

Viktor


1 Answers

Just FYI: this is how to print all the available macro definitions:

gcc -E -dD -x c /dev/null -o -

Compare it with

gcc -E -DEVAL -dD -x c /dev/null -o -
like image 94
nodakai Avatar answered Apr 12 '26 17:04

nodakai