mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
* as.c (show_usage): Don't list --compress-debug-sections if zlib not
installed. (main): Warn if --compress-debug-sections requested and zlib not installed. * doc/as.texinfo: Add --compress-debug-sections, --nocompress-debug-sections.
This commit is contained in:
6
gas/as.c
6
gas/as.c
@ -245,12 +245,14 @@ Options:\n\
|
||||
|
||||
fprintf (stream, _("\
|
||||
--alternate initially turn on alternate macro syntax\n"));
|
||||
#ifdef HAVE_ZLIB_H
|
||||
fprintf (stream, _("\
|
||||
--compress-debug-sections\n\
|
||||
compress DWARF debug sections using zlib\n"));
|
||||
fprintf (stream, _("\
|
||||
--nocompress-debug-sections\n\
|
||||
don't compress DWARF debug sections\n"));
|
||||
#endif /* HAVE_ZLIB_H */
|
||||
fprintf (stream, _("\
|
||||
-D produce assembler debugging messages\n"));
|
||||
fprintf (stream, _("\
|
||||
@ -646,7 +648,11 @@ This program has absolutely no warranty.\n"));
|
||||
exit (EXIT_SUCCESS);
|
||||
|
||||
case OPTION_COMPRESS_DEBUG:
|
||||
#ifdef HAVE_ZLIB_H
|
||||
flag_compress_debug = 1;
|
||||
#else
|
||||
as_warn (_("cannot compress debug sections (zlib not installed)"));
|
||||
#endif /* HAVE_ZLIB_H */
|
||||
break;
|
||||
|
||||
case OPTION_NOCOMPRESS_DEBUG:
|
||||
|
Reference in New Issue
Block a user