diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2014-06-27 13:48:54 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2014-06-27 13:48:54 +0000 |
commit | 29d7cbd1b91cad56928674175507014d339689dc (patch) | |
tree | cb33b8e33481d74febbb79409812bd681334a6b8 /gcc/config.in | |
parent | d284e1b86aa99cdf480905c58cf8975b1ae1e295 (diff) | |
download | gcc-29d7cbd1b91cad56928674175507014d339689dc.zip gcc-29d7cbd1b91cad56928674175507014d339689dc.tar.gz gcc-29d7cbd1b91cad56928674175507014d339689dc.tar.bz2 |
Support compressed debug sections
* configure.ac (gcc_cv_as_compress_debug): Check for assembler
compressed debug support.
(gcc_cv_ld_compress_debug): Check for linker compressed debug
support.
* configure: Regenerate.
* config.in: Regenerate.
* common.opt (compressed_debug_sections): New enum.
(gz, gz=): New options.
* gcc.c (LINK_COMPRESS_DEBUG_SPEC, ASM_COMPRESS_DEBUG_SPEC):
Define.
(LINK_COMMAND_SPEC): Invoke LINK_COMPRESS_DEBUG_SPEC.
(asm_options): Invoke ASM_COMPRESS_DEBUG_SPEC.
* config/darwin.h (LINK_COMMAND_SPEC_A): Invoke
LINK_COMPRESS_DEBUG_SPEC.
* config/i386/djgpp.h (LINK_COMMAND_SPEC): Likewise.
* opts.c (common_handle_option): Handle OPT_gz, OPT_gz_.
* doc/invoke.texi (Option Summary, Debugging Options): Add
-gz[=type].
(Debugging Options): Document -gz[=type].
From-SVN: r212072
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 0897bd4..515f341 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -6,6 +6,18 @@ #endif +/* Define to the assembler option to enable compressed debug sections. */ +#ifndef USED_FOR_TARGET +#undef AS_COMPRESS_DEBUG_OPTION +#endif + + +/* Define to the assembler option to disable compressed debug sections. */ +#ifndef USED_FOR_TARGET +#undef AS_NO_COMPRESS_DEBUG_OPTION +#endif + + /* Define as the number of bits in a byte, if `limits.h' doesn't. */ #ifndef USED_FOR_TARGET #undef CHAR_BIT @@ -223,6 +235,13 @@ #endif +/* Define to the level of your assembler's compressed debug section support. + */ +#ifndef USED_FOR_TARGET +#undef HAVE_AS_COMPRESS_DEBUG +#endif + + /* Define if your assembler supports the DCI/ICI instructions. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_DCI @@ -1274,6 +1293,12 @@ #endif +/* Define to the level of your linker's compressed debug section support. */ +#ifndef USED_FOR_TARGET +#undef HAVE_LD_COMPRESS_DEBUG +#endif + + /* Define if your linker supports --demangle option. */ #ifndef USED_FOR_TARGET #undef HAVE_LD_DEMANGLE @@ -1699,6 +1724,12 @@ #endif +/* Define to the linker option to enable compressed debug sections. */ +#ifndef USED_FOR_TARGET +#undef LD_COMPRESS_DEBUG_OPTION +#endif + + /* Define to the linker option to enable use of shared objects. */ #ifndef USED_FOR_TARGET #undef LD_DYNAMIC_OPTION |