diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 711fe3548c5..d2f8f749301 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2009-06-22 Ralf Wildenhues + + * doc/invoke.texi (Link Options): -nodefaultlibs and -nostdlib + override library linkage flags such as -static-libgcc or + -shared-libgcc. + 2009-06-22 Maxim Kuvyrkov * config/m68k/m68k-devices.def: Add line for MCF5221x. diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index ffd40501fb7..15ff5665719 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -8127,7 +8127,9 @@ or @option{-nodefaultlibs} is used. @item -nodefaultlibs @opindex nodefaultlibs Do not use the standard system libraries when linking. -Only the libraries you specify will be passed to the linker. +Only the libraries you specify will be passed to the linker, options +specifying linkage of the system libraries, such as @code{-static-libgcc} +or @code{-shared-libgcc}, will be ignored. The standard startup files are used normally, unless @option{-nostartfiles} is used. The compiler may generate calls to @code{memcmp}, @code{memset}, @code{memcpy} and @code{memmove}. @@ -8139,7 +8141,9 @@ mechanism when this option is specified. @opindex nostdlib Do not use the standard system startup files or libraries when linking. No startup files and only the libraries you specify will be passed to -the linker. The compiler may generate calls to @code{memcmp}, @code{memset}, +the linker, options specifying linkage of the system libraries, such as +@code{-static-libgcc} or @code{-shared-libgcc}, will be ignored. +The compiler may generate calls to @code{memcmp}, @code{memset}, @code{memcpy} and @code{memmove}. These entries are usually resolved by entries in libc. These entry points should be supplied through some other