diff options
author | Mark Elbrecht <snowball3@bigfoot.com> | 2000-08-11 21:23:00 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-08-11 15:23:00 -0600 |
commit | d9673c79516d9fdb8b89dc5a6b1cbce8fd58ef54 (patch) | |
tree | 6791d78c6d82f1aa9d5838ef260f9225e2b2de08 /gcc | |
parent | 402d11e13fdea582e4a4fc6aee14668b7684a5d3 (diff) | |
download | gcc-d9673c79516d9fdb8b89dc5a6b1cbce8fd58ef54.zip gcc-d9673c79516d9fdb8b89dc5a6b1cbce8fd58ef54.tar.gz gcc-d9673c79516d9fdb8b89dc5a6b1cbce8fd58ef54.tar.bz2 |
gcc.texi (The Configuration File): Document COLLECT2_HOST_INITIALIZATION...
* gcc.texi (The Configuration File): Document
COLLECT2_HOST_INITIALIZATION, GCC_DRIVER_HOST_INITIALIZATION, and
UPDATE_PATH_HOST_CANONICALIZATION.
From-SVN: r35642
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/gcc.texi | 18 |
2 files changed, 24 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 201ecdc..c804c89 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2000-08-11 Mark Elbrecht <snowball3@bigfoot.com> + + * gcc.texi (The Configuration File): Document + COLLECT2_HOST_INITIALIZATION, GCC_DRIVER_HOST_INITIALIZATION, and + UPDATE_PATH_HOST_CANONICALIZATION. + 2000-08-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * c-parse.in (cast_expr): Avoid -Wstrict-prototype warnings for diff --git a/gcc/gcc.texi b/gcc/gcc.texi index 9267ef1..21facae 100644 --- a/gcc/gcc.texi +++ b/gcc/gcc.texi @@ -3935,6 +3935,24 @@ specified on its command line and create an export list for the linker. Define this macro for systems like AIX, where the linker discards object files that are not referenced from @code{main} and uses export lists. + +@findex COLLECT2_HOST_INITIALIZATION +@item COLLECT2_HOST_INITIALIZATION +If defined, a C statement (sans semicolon) that performs host-dependent +initialization when @code{collect2} is being initialized. + +@findex GCC_DRIVER_HOST_INITIALIZATION +@item GCC_DRIVER_HOST_INITIALIZATION +If defined, a C statement (sans semicolon) that performs host-dependent +initialization when a compilation driver is being initialized. + +@findex UPDATE_PATH_HOST_CANONICALIZE +@item UPDATE_PATH_HOST_CANONICALIZE (@var{path}, @var{key}) +If defined, a C statement (sans semicolon) that performs host-dependent +canonicalization when a path used in a compilation driver or preprocessor is +canonicalized. @var{path} is the path to be canonicalized, and @var{key} is +a translation prefix when its value isn't @code{NULL}. If the C statement +does canonicalize @var{path}, the new path should be returned. @end table @findex bzero |