diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2006-10-28 18:11:28 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2006-10-28 18:11:28 +0000 |
commit | 22ba88ef4b11703fc7a0bfacaae08f411570d48f (patch) | |
tree | b8b495ff787a48ab2e5b9ab8e18f98a7e4c17bcf /gcc/config.in | |
parent | e73dbcaefc086d603fcd8707d06aa9599ccd9476 (diff) | |
download | gcc-22ba88ef4b11703fc7a0bfacaae08f411570d48f.zip gcc-22ba88ef4b11703fc7a0bfacaae08f411570d48f.tar.gz gcc-22ba88ef4b11703fc7a0bfacaae08f411570d48f.tar.bz2 |
except.h (output_function_exception_table): Add 'const char*' param.
* except.h (output_function_exception_table): Add 'const char*' param.
* except.c (switch_to_exception_section): Add 'const char*' param.
If named sections are supported and HAVE_LD_EH_GC_SECTIONS is defined
and flag_function_sections is set, use a function-specific section.
(output_function_exception_table): Add 'const char*' param.
Adjust call to switch_to_exception_section.
* final.c (rest_of_handle_final): Adjust calls to
output_function_exception_table.
* configure.ac (HAVE_LD_EH_GC_SECTIONS): New check.
* config.in: Regenerate.
* configure: Likewise.
From-SVN: r118107
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 65b583b..91146bb 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -883,6 +883,13 @@ /* Define if your linker supports --eh-frame-hdr option. */ #undef HAVE_LD_EH_FRAME_HDR +/* Define if your linker supports garbage collection of sections in presence + of EH frames. */ +#ifndef USED_FOR_TARGET +#undef HAVE_LD_EH_GC_SECTIONS +#endif + + /* Define if your PowerPC64 linker only needs function descriptor syms. */ #ifndef USED_FOR_TARGET #undef HAVE_LD_NO_DOT_SYMS |