Controlling the Compilation Driver, gcc#
You can control the compilation driver.
-
DRIVER_SELF_SPECS#
A list of specs for the driver itself. It should be a suitable initializer for an array of strings, with no surrounding braces.
The driver applies these specs to its own command line between loading default
specsfiles (but not command-line specified ones) and choosing the multilib directory or running any subcommands. It applies them in the order given, so each spec can depend on the options added by earlier ones. It is also possible to remove options using%<optionin the usual way.This macro can be useful when a port has several interdependent target options. It provides a way of standardizing the command line so that the other specs are easier to write.
Do not define this macro if it does not need to do anything.
-
OPTION_DEFAULT_SPECS#
A list of specs used to support configure-time default options (i.e.
--withoptions) in the driver. It should be a suitable initializer for an array of structures, each containing two strings, without the outermost pair of surrounding braces.The first item in the pair is the name of the default. This must match the code in
config.gccfor the target. The second item is a spec to apply if a default with this name was specified. The string%(VALUE)in the spec will be replaced by the value of the default everywhere it occurs.The driver will apply these specs to its own command line between loading default
specsfiles and processingDRIVER_SELF_SPECS, using the same mechanism asDRIVER_SELF_SPECS.Do not define this macro if it does not need to do anything.
-
CPP_SPEC#
A C string constant that tells the GCC driver program options to pass to CPP. It can also specify how to translate options you give to GCC into options for GCC to pass to the CPP.
Do not define this macro if it does not need to do anything.
-
CPLUSPLUS_CPP_SPEC#
This macro is just like
CPP_SPEC, but is used for C++, rather than C. If you do not define this macro, then the value ofCPP_SPEC(if any) will be used instead.
-
CC1_SPEC#
A C string constant that tells the GCC driver program options to pass to
cc1,cc1plus,f771, and the other language front ends. It can also specify how to translate options you give to GCC into options for GCC to pass to front ends.Do not define this macro if it does not need to do anything.
-
CC1PLUS_SPEC#
A C string constant that tells the GCC driver program options to pass to
cc1plus. It can also specify how to translate options you give to GCC into options for GCC to pass to thecc1plus.Do not define this macro if it does not need to do anything. Note that everything defined in CC1_SPEC is already passed to
cc1plusso there is no need to duplicate the contents of CC1_SPEC in CC1PLUS_SPEC.
-
ASM_SPEC#
A C string constant that tells the GCC driver program options to pass to the assembler. It can also specify how to translate options you give to GCC into options for GCC to pass to the assembler. See the file
sun3.hfor an example of this.Do not define this macro if it does not need to do anything.
-
ASM_FINAL_SPEC#
A C string constant that tells the GCC driver program how to run any programs which cleanup after the normal assembler. Normally, this is not needed. See the file
mips.hfor an example of this.Do not define this macro if it does not need to do anything.
-
AS_NEEDS_DASH_FOR_PIPED_INPUT#
Define this macro, with no value, if the driver should give the assembler an argument consisting of a single dash,
-, to instruct it to read from its standard input (which will be a pipe connected to the output of the compiler proper). This argument is given after any-ooption specifying the name of the output file.If you do not define this macro, the assembler is assumed to read its standard input if given no non-option arguments. If your assembler cannot read standard input at all, use a
%pipe:%econstruct; seemips.hfor instance.
-
LINK_SPEC#
A C string constant that tells the GCC driver program options to pass to the linker. It can also specify how to translate options you give to GCC into options for GCC to pass to the linker.
Do not define this macro if it does not need to do anything.
-
LIB_SPEC#
Another C string constant used much like
LINK_SPEC. The difference between the two is thatLIB_SPECis used at the end of the command given to the linker.If this macro is not defined, a default is provided that loads the standard C library from the usual place. See
gcc.cc.
-
LIBGCC_SPEC#
Another C string constant that tells the GCC driver program how and when to place a reference to
libgcc.ainto the linker command line. This constant is placed both before and after the value ofLIB_SPEC.If this macro is not defined, the GCC driver provides a default that passes the string
-lgccto the linker.
-
REAL_LIBGCC_SPEC#
By default, if
ENABLE_SHARED_LIBGCCis defined, theLIBGCC_SPECis not directly used by the driver program but is instead modified to refer to different versions oflibgcc.adepending on the values of the command line flags-static,-shared,-static-libgcc, and-shared-libgcc. On targets where these modifications are inappropriate, defineREAL_LIBGCC_SPECinstead.REAL_LIBGCC_SPECtells the driver how to place a reference tolibgccon the link command line, but, unlikeLIBGCC_SPEC, it is used unmodified.
-
USE_LD_AS_NEEDED#
A macro that controls the modifications to
LIBGCC_SPECmentioned inREAL_LIBGCC_SPEC. If nonzero, a spec will be generated that uses--as-neededor equivalent options and the sharedlibgccin place of the static exception handler library, when linking without any of-static,-static-libgcc, or-shared-libgcc.
-
LINK_EH_SPEC#
If defined, this C string constant is added to
LINK_SPEC. WhenUSE_LD_AS_NEEDEDis zero or undefined, it also affects the modifications toLIBGCC_SPECmentioned inREAL_LIBGCC_SPEC.
-
STARTFILE_SPEC#
Another C string constant used much like
LINK_SPEC. The difference between the two is thatSTARTFILE_SPECis used at the very beginning of the command given to the linker.If this macro is not defined, a default is provided that loads the standard C startup file from the usual place. See
gcc.cc.
-
ENDFILE_SPEC#
Another C string constant used much like
LINK_SPEC. The difference between the two is thatENDFILE_SPECis used at the very end of the command given to the linker.Do not define this macro if it does not need to do anything.
-
THREAD_MODEL_SPEC#
GCC
-vwill print the thread model GCC was configured to use. However, this doesn’t work on platforms that are multilibbed on thread models, such as AIX 4.3. On such platforms, defineTHREAD_MODEL_SPECsuch that it evaluates to a string without blanks that names one of the recognized thread models.%*, the default value of this macro, will expand to the value ofthread_fileset inconfig.gcc.
-
SYSROOT_SUFFIX_SPEC#
Define this macro to add a suffix to the target sysroot when GCC is configured with a sysroot. This will cause GCC to search for usr/lib, et al, within sysroot+suffix.
-
SYSROOT_HEADERS_SUFFIX_SPEC#
Define this macro to add a headers_suffix to the target sysroot when GCC is configured with a sysroot. This will cause GCC to pass the updated sysroot+headers_suffix to CPP, causing it to search for usr/include, et al, within sysroot+headers_suffix.
-
EXTRA_SPECS#
Define this macro to provide additional specifications to put in the
specsfile that can be used in various specifications likeCC1_SPEC.The definition should be an initializer for an array of structures, containing a string constant, that defines the specification name, and a string constant that provides the specification.
Do not define this macro if it does not need to do anything.
EXTRA_SPECSis useful when an architecture contains several related targets, which have various..._SPECSwhich are similar to each other, and the maintainer would like one central place to keep these definitions.For example, the PowerPC System V.4 targets use
EXTRA_SPECSto define either_CALL_SYSVwhen the System V calling sequence is used or_CALL_AIXwhen the older AIX-based calling sequence is used.The
config/rs6000/rs6000.htarget file defines:#define EXTRA_SPECS \ { "cpp_sysv_default", CPP_SYSV_DEFAULT }, #define CPP_SYS_DEFAULT ""
The
config/rs6000/sysv.htarget file defines:#undef CPP_SPEC #define CPP_SPEC \ "%{posix: -D_POSIX_SOURCE } \ %{mcall-sysv: -D_CALL_SYSV } \ %{!mcall-sysv: %(cpp_sysv_default) } \ %{msoft-float: -D_SOFT_FLOAT} %{mcpu=403: -D_SOFT_FLOAT}" #undef CPP_SYSV_DEFAULT #define CPP_SYSV_DEFAULT "-D_CALL_SYSV"
while the
config/rs6000/eabiaix.htarget file definesCPP_SYSV_DEFAULTas:#undef CPP_SYSV_DEFAULT #define CPP_SYSV_DEFAULT "-D_CALL_AIX"
-
LINK_LIBGCC_SPECIAL_1#
Define this macro if the driver program should find the library
libgcc.a. If you do not define this macro, the driver program will pass the argument-lgccto tell the linker to do the search.
-
LINK_GCC_C_SEQUENCE_SPEC#
The sequence in which libgcc and libc are specified to the linker. By default this is
%G %L %G.
-
POST_LINK_SPEC#
Define this macro to add additional steps to be executed after linker. The default value of this macro is empty string.
-
LINK_COMMAND_SPEC#
A C string constant giving the complete command line need to execute the linker. When you do this, you will need to update your port each time a change is made to the link command line within
gcc.cc. Therefore, define this macro only if you need to completely redefine the command line for invoking the linker and there is no other way to accomplish the effect you need. Overriding this macro may be avoidable by overridingLINK_GCC_C_SEQUENCE_SPECinstead.
-
bool TARGET_ALWAYS_STRIP_DOTDOT#
True if
..components should always be removed from directory names computed relative to GCC’s internal directories, false (default) if such components should be preserved and directory names containing them passed to other tools such as the linker.
-
MULTILIB_DEFAULTS#
Define this macro as a C expression for the initializer of an array of string to tell the driver program which options are defaults for this target and thus do not need to be handled specially when using
MULTILIB_OPTIONS.Do not define this macro if
MULTILIB_OPTIONSis not defined in the target makefile fragment or if none of the options listed inMULTILIB_OPTIONSare set by default. See Target Makefile Fragments.
-
RELATIVE_PREFIX_NOT_LINKDIR#
Define this macro to tell gcc that it should only translate a
-Bprefix into a-Llinker option if the prefix indicates an absolute file name.
-
MD_EXEC_PREFIX#
If defined, this macro is an additional prefix to try after
STANDARD_EXEC_PREFIX.MD_EXEC_PREFIXis not searched when the compiler is built as a cross compiler. If you defineMD_EXEC_PREFIX, then be sure to add it to the list of directories used to find the assembler inconfigure.ac.
-
STANDARD_STARTFILE_PREFIX#
Define this macro as a C string constant if you wish to override the standard choice of
libdiras the default prefix to try when searching for startup files such ascrt0.o.STANDARD_STARTFILE_PREFIXis not searched when the compiler is built as a cross compiler.
-
STANDARD_STARTFILE_PREFIX_1#
Define this macro as a C string constant if you wish to override the standard choice of
/libas a prefix to try after the default prefix when searching for startup files such ascrt0.o.STANDARD_STARTFILE_PREFIX_1is not searched when the compiler is built as a cross compiler.
-
STANDARD_STARTFILE_PREFIX_2#
Define this macro as a C string constant if you wish to override the standard choice of
/libas yet another prefix to try after the default prefix when searching for startup files such ascrt0.o.STANDARD_STARTFILE_PREFIX_2is not searched when the compiler is built as a cross compiler.
-
MD_STARTFILE_PREFIX#
If defined, this macro supplies an additional prefix to try after the standard prefixes.
MD_EXEC_PREFIXis not searched when the compiler is built as a cross compiler.
-
MD_STARTFILE_PREFIX_1#
If defined, this macro supplies yet another prefix to try after the standard prefixes. It is not searched when the compiler is built as a cross compiler.
-
INIT_ENVIRONMENT#
Define this macro as a C string constant if you wish to set environment variables for programs called by the driver, such as the assembler and loader. The driver passes the value of this macro to
putenvto initialize the necessary environment variables.
-
LOCAL_INCLUDE_DIR#
Define this macro as a C string constant if you wish to override the standard choice of
/usr/local/includeas the default prefix to try when searching for local header files.LOCAL_INCLUDE_DIRcomes beforeNATIVE_SYSTEM_HEADER_DIR(set inconfig.gcc, normally/usr/include) in the search order.Cross compilers do not search either
/usr/local/includeor its replacement.
-
NATIVE_SYSTEM_HEADER_COMPONENT#
The ‘component’ corresponding to
NATIVE_SYSTEM_HEADER_DIR. SeeINCLUDE_DEFAULTS, below, for the description of components. If you do not define this macro, no component is used.
-
INCLUDE_DEFAULTS#
Define this macro if you wish to override the entire default search path for include files. For a native compiler, the default search path usually consists of
GCC_INCLUDE_DIR,LOCAL_INCLUDE_DIR,GPLUSPLUS_INCLUDE_DIR, andNATIVE_SYSTEM_HEADER_DIR. In addition,GPLUSPLUS_INCLUDE_DIRandGCC_INCLUDE_DIRare defined automatically byMakefile, and specify private search areas for GCC. The directoryGPLUSPLUS_INCLUDE_DIRis used only for C++ programs.The definition should be an initializer for an array of structures. Each array element should have four elements: the directory name (a string constant), the component name (also a string constant), a flag for C++-only directories, and a flag showing that the includes in the directory don’t need to be wrapped in
extern Cwhen compiling C++. Mark the end of the array with a null element.The component name denotes what GNU package the include file is part of, if any, in all uppercase letters. For example, it might be
GCCorBINUTILS. If the package is part of a vendor-supplied operating system, code the component name as0.For example, here is the definition used for VAX/VMS:
#define INCLUDE_DEFAULTS \ { \ { "GNU_GXX_INCLUDE:", "G++", 1, 1}, \ { "GNU_CC_INCLUDE:", "GCC", 0, 0}, \ { "SYS$SYSROOT:[SYSLIB.]", 0, 0, 0}, \ { ".", 0, 0, 0}, \ { 0, 0, 0, 0} \ }
Here is the order of prefixes tried for exec files:
Any prefixes specified by the user with
-B.The environment variable
GCC_EXEC_PREFIXor, ifGCC_EXEC_PREFIXis not set and the compiler has not been installed in the configure-timeprefix, the location in which the compiler has actually been installed.The directories specified by the environment variable
COMPILER_PATH.The macro
STANDARD_EXEC_PREFIX, if the compiler has been installed in the configured-timeprefix.The location
/usr/libexec/gcc/, but only if this is a native compiler.The location
/usr/lib/gcc/, but only if this is a native compiler.The macro
MD_EXEC_PREFIX, if defined, but only if this is a native compiler.
Here is the order of prefixes tried for startfiles:
Any prefixes specified by the user with
-B.The environment variable
GCC_EXEC_PREFIXor its automatically determined value based on the installed toolchain location.The directories specified by the environment variable
LIBRARY_PATH(or port-specific name; native only, cross compilers do not use this).The macro
STANDARD_EXEC_PREFIX, but only if the toolchain is installed in the configuredprefixor this is a native compiler.The location
/usr/lib/gcc/, but only if this is a native compiler.The macro
MD_EXEC_PREFIX, if defined, but only if this is a native compiler.The macro
MD_STARTFILE_PREFIX, if defined, but only if this is a native compiler, or we have a target system root.The macro
MD_STARTFILE_PREFIX_1, if defined, but only if this is a native compiler, or we have a target system root.The macro
STANDARD_STARTFILE_PREFIX, with any sysroot modifications. If this path is relative it will be prefixed byGCC_EXEC_PREFIXand the machine suffix orSTANDARD_EXEC_PREFIXand the machine suffix.The macro
STANDARD_STARTFILE_PREFIX_1, but only if this is a native compiler, or we have a target system root. The default for this macro is/lib/.The macro
STANDARD_STARTFILE_PREFIX_2, but only if this is a native compiler, or we have a target system root. The default for this macro is/usr/lib/.