diff options
author | Daniel Jacobowitz <dan@codesourcery.com> | 2005-02-23 23:11:08 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@gcc.gnu.org> | 2005-02-23 23:11:08 +0000 |
commit | 57642751f51763e403e8d0253a3584145f17ff91 (patch) | |
tree | 72ce531348fcea60af182a71ee702bee514eccb7 /gcc/gcc.c | |
parent | 27f0dff4a2ddec42768683c8a79dbff0bcf6dec5 (diff) | |
download | gcc-57642751f51763e403e8d0253a3584145f17ff91.zip gcc-57642751f51763e403e8d0253a3584145f17ff91.tar.gz gcc-57642751f51763e403e8d0253a3584145f17ff91.tar.bz2 |
tm.texi (LINK_LIBGCC_SPECIAL): Remove.
* doc/tm.texi (LINK_LIBGCC_SPECIAL): Remove.
(LINK_LIBGCC_SPECIAL_1): Don't mention it.
* gcc.c: Don't check for LINK_LIBGCC_SPECIAL.
* system.h: Poison LINK_LIBGCC_SPECIAL.
From-SVN: r95476
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -620,7 +620,7 @@ proper position among the other output files. */ #ifndef LIBGCC_SPEC #if defined(REAL_LIBGCC_SPEC) #define LIBGCC_SPEC REAL_LIBGCC_SPEC -#elif defined(LINK_LIBGCC_SPECIAL) || defined(LINK_LIBGCC_SPECIAL_1) +#elif defined(LINK_LIBGCC_SPECIAL_1) /* Have gcc do the search for libgcc.a. */ #define LIBGCC_SPEC "libgcc.a%s" #else @@ -706,13 +706,8 @@ proper position among the other output files. */ #endif #ifndef LINK_LIBGCC_SPEC -# ifdef LINK_LIBGCC_SPECIAL -/* Don't generate -L options for startfile prefix list. */ -# define LINK_LIBGCC_SPEC "" -# else -/* Do generate them. */ -# define LINK_LIBGCC_SPEC "%D" -# endif +/* Generate -L options for startfile prefix list. */ +# define LINK_LIBGCC_SPEC "%D" #endif #ifndef STARTFILE_PREFIX_SPEC |