diff options
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/gcc/config.in b/gcc/config.in index de8271bcfe2..66e47caa3ff 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -1205,7 +1205,8 @@ #endif -/* Define if your linker supports --as-needed and --no-as-needed options. */ +/* Define if your linker supports --as-needed/--no-as-needed or equivalent + options. */ #ifndef USED_FOR_TARGET #undef HAVE_LD_AS_NEEDED #endif @@ -1642,12 +1643,24 @@ #endif +/* Define to the linker option to ignore unused dependencies. */ +#ifndef USED_FOR_TARGET +#undef LD_AS_NEEDED_OPTION +#endif + + /* Define to the linker option to enable use of shared objects. */ #ifndef USED_FOR_TARGET #undef LD_DYNAMIC_OPTION #endif +/* Define to the linker option to keep unused dependencies. */ +#ifndef USED_FOR_TARGET +#undef LD_NO_AS_NEEDED_OPTION +#endif + + /* Define to the linker option to disable use of shared objects. */ #ifndef USED_FOR_TARGET #undef LD_STATIC_OPTION |