Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
CFLAGS
Name of environment variable or of Makefile variable that can be set to specify additional switches to be passed to a C compiler

CFLAGS and CXXFLAGS are either the name of environment variables or of Makefile variables that can be set to specify additional switches to be passed to a compiler in the process of building computer software. FFLAGS fulfills a similar role.

These variables are usually set inside a Makefile and are then appended to the command line when the compiler is invoked. If they are not specified in the Makefile, then they will be read from the environment, if present. Tools like autoconf's ./configure script will usually pick them up from the environment and write them into the generated Makefiles. Some package install scripts, like SDL, allow CFLAGS settings to override their normal settings (instead of append to them), so setting CFLAGS can cause harm in this case.

CFLAGS enables the addition of switches for the C compiler, while CXXFLAGS is meant to be used when invoking a C++ compiler. Similarly, a variable CPPFLAGS exists with switches to be passed to the C or C++ preprocessor. Similarly, FFLAGS enables the addition of switches for a Fortran compiler.

These variables are most commonly used to specify optimization or debugging switches to a compiler, as for example -g, -O2 or (GCC-specific) -march=athlon.

We don't have any images related to CFLAGS yet.
We don't have any YouTube videos related to CFLAGS yet.
We don't have any PDF documents related to CFLAGS yet.
We don't have any Books related to CFLAGS yet.
We don't have any archived web articles related to CFLAGS yet.

See also

Stallman, Richard M.; McGrath, Roland; Smith, Paul D. (2020) [1st pub. 1988]. GNU Make. A Program for Directing Recompilation (PDF). Free Software Foundation.

References

  1. Stallman, McGrath & Smith 2020, sec.10.3. - Stallman, Richard M.; McGrath, Roland; Smith, Paul D. (2020) [1st pub. 1988]. GNU Make. A Program for Directing Recompilation (PDF). Free Software Foundation. https://www.gnu.org/software/make/manual/make.pdf