What is bash syntax?

CFLAGS="-g -O0" ./configure

How is CFLAGS="-g -O0"raised in configure?

Does anyone know this?

+3
source share
2 answers

Here you set CFLAGS as the environment variable to be passed to. / configure. You can set any number of environment variables this way if you need more than one.

+6
source

-g: C, which are related to optimization or debugging (usually just -g or -O). Normally this would not include the -I option for specifying include directories, because then you could not easily override it on the command line, as in the above example.

For more information, you can refer to this URL.

http://makepp.sourceforge.net/1.19/makepp_tutorial.html

0
source

All Articles