binutils-gdb/binutils
Nick Alcock 926c9e7665 libctf, binutils, include, ld: gettextize and improve error handling
This commit follows on from the earlier commit "libctf, ld, binutils:
add textual error/warning reporting for libctf" and converts every error
in libctf that was reported using ctf_dprintf to use ctf_err_warn
instead, gettextizing them in the process, using N_() where necessary to
avoid doing gettext calls unless an error message is actually generated,
and rephrasing some error messages for ease of translation.

This requires a slight change in the ctf_errwarning_next API: this API
is public but has not been in a release yet, so can still change freely.
The problem is that many errors are emitted at open time (whether
opening of a CTF dict, or opening of a CTF archive): the former of these
throws away its incompletely-initialized ctf_file_t rather than return
it, and the latter has no ctf_file_t at all. So errors and warnings
emitted at open time cannot be stored in the ctf_file_t, and have to go
elsewhere.

We put them in a static local in ctf-subr.c (which is not very
thread-safe: a later commit will improve things here): ctf_err_warn with
a NULL fp adds to this list, and the public interface
ctf_errwarning_next with a NULL fp retrieves from it.

We need a slight exception from the usual iterator rules in this case:
with a NULL fp, there is nowhere to store the ECTF_NEXT_END "error"
which signifies the end of iteration, so we add a new err parameter to
ctf_errwarning_next which is used to report such iteration-related
errors.  (If an fp is provided -- i.e., if not reporting open errors --
this is optional, but even if it's optional it's still an API change.
This is actually useful from a usability POV as well, since
ctf_errwarning_next is usually called when there's been an error, so
overwriting the error code with ECTF_NEXT_END is not very helpful!
So, unusually, ctf_errwarning_next now uses the passed fp for its
error code *only* if no errp pointer is passed in, and leaves it
untouched otherwise.)

ld, objdump and readelf are adapted to call ctf_errwarning_next with a
NULL fp to report open errors where appropriate.

The ctf_err_warn API also has to change, gaining a new error-number
parameter which is used to add the error message corresponding to that
error number into the debug stream when LIBCTF_DEBUG is enabled:
changing this API is easy at this point since we are already touching
all existing calls to gettextize them.  We need this because the debug
stream should contain the errno's message, but the error reported in the
error/warning stream should *not*, because the caller will probably
report it themselves at failure time regardless, and reporting it in
every error message that leads up to it leads to a ridiculous chattering
on failure, which is likely to end up as ridiculous chattering on stderr
(trimmed a bit):

CTF error: `ld/testsuite/ld-ctf/A.c (0): lookup failure for type 3: flags 1: The parent CTF dictionary is unavailable'
CTF error: `ld/testsuite/ld-ctf/A.c (0): struct/union member type hashing error during type hashing for type 80000001, kind 6: The parent CTF dictionary is unavailable'
CTF error: `deduplicating link variable emission failed for ld/testsuite/ld-ctf/A.c: The parent CTF dictionary is unavailable'
ld/.libs/lt-ld-new: warning: CTF linking failed; output will have no CTF section: `The parent CTF dictionary is unavailable'

We only need to be told that the parent CTF dictionary is unavailable
*once*, not over and over again!

errmsgs are still emitted on warning generation, because warnings do not
usually lead to a failure propagated up to the caller and reported
there.

Debug-stream messages are not translated.  If translation is turned on,
there will be a mixture of English and translated messages in the debug
stream, but rather that than burden the translators with debug-only
output.

binutils/ChangeLog
2020-08-27  Nick Alcock  <nick.alcock@oracle.com>

	* objdump.c (dump_ctf_archive_member): Move error-
	reporting...
	(dump_ctf_errs): ... into this separate function.
	(dump_ctf): Call it on open errors.
	* readelf.c (dump_ctf_archive_member): Move error-
	reporting...
	(dump_ctf_errs): ... into this separate function.  Support
	calls with NULL fp. Adjust for new err parameter to
	ctf_errwarning_next.
	(dump_section_as_ctf): Call it on open errors.

include/ChangeLog
2020-08-27  Nick Alcock  <nick.alcock@oracle.com>

	* ctf-api.h (ctf_errwarning_next): New err parameter.

ld/ChangeLog
2020-08-27  Nick Alcock  <nick.alcock@oracle.com>

	* ldlang.c (lang_ctf_errs_warnings): Support calls with NULL fp.
	Adjust for new err parameter to ctf_errwarning_next.  Only
	check for assertion failures when fp is non-NULL.
	(ldlang_open_ctf): Call it on open errors.
	* testsuite/ld-ctf/ctf.exp: Always use the C locale to avoid
	breaking the diags tests.

libctf/ChangeLog
2020-08-27  Nick Alcock  <nick.alcock@oracle.com>

	* ctf-subr.c (open_errors): New list.
	(ctf_err_warn): Calls with NULL fp append to open_errors.  Add err
	parameter, and use it to decorate the debug stream with errmsgs.
	(ctf_err_warn_to_open): Splice errors from a CTF dict into the
	open_errors.
	(ctf_errwarning_next): Calls with NULL fp report from open_errors.
	New err param to report iteration errors (including end-of-iteration)
	when fp is NULL.
	(ctf_assert_fail_internal): Adjust ctf_err_warn call for new err
	parameter: gettextize.
	* ctf-impl.h (ctfo_get_vbytes): Add ctf_file_t parameter.
	(LCTF_VBYTES): Adjust.
	(ctf_err_warn_to_open): New.
	(ctf_err_warn): Adjust.
	(ctf_bundle): Used in only one place: move...
	* ctf-create.c: ... here.
	(enumcmp): Use ctf_err_warn, not ctf_dprintf, passing the err number
	down as needed.  Don't emit the errmsg.  Gettextize.
	(membcmp): Likewise.
	(ctf_add_type_internal): Likewise.
	(ctf_write_mem): Likewise.
	(ctf_compress_write): Likewise.  Report errors writing the header or
	body.
	(ctf_write): Likewise.
	* ctf-archive.c (ctf_arc_write_fd): Use ctf_err_warn, not
	ctf_dprintf, and gettextize, as above.
	(ctf_arc_write): Likewise.
	(ctf_arc_bufopen): Likewise.
	(ctf_arc_open_internal): Likewise.
	* ctf-labels.c (ctf_label_iter): Likewise.
	* ctf-open-bfd.c (ctf_bfdclose): Likewise.
	(ctf_bfdopen): Likewise.
	(ctf_bfdopen_ctfsect): Likewise.
	(ctf_fdopen): Likewise.
	* ctf-string.c (ctf_str_write_strtab): Likewise.
	* ctf-types.c (ctf_type_resolve): Likewise.
	* ctf-open.c (get_vbytes_common): Likewise. Pass down the ctf dict.
	(get_vbytes_v1): Pass down the ctf dict.
	(get_vbytes_v2): Likewise.
	(flip_ctf): Likewise.
	(flip_types): Likewise. Use ctf_err_warn, not ctf_dprintf, and
	gettextize, as above.
	(upgrade_types_v1): Adjust calls.
	(init_types): Use ctf_err_warn, not ctf_dprintf, as above.
	(ctf_bufopen_internal): Likewise. Adjust calls. Transplant errors
	emitted into individual dicts into the open errors if this turns
	out to be a failed open in the end.
	* ctf-dump.c (ctf_dump_format_type): Adjust ctf_err_warn for new err
	argument.  Gettextize.  Don't emit the errmsg.
	(ctf_dump_funcs): Likewise.  Collapse err label into its only case.
	(ctf_dump_type): Likewise.
	* ctf-link.c (ctf_create_per_cu): Adjust ctf_err_warn for new err
	argument.  Gettextize.  Don't emit the errmsg.
	(ctf_link_one_type): Likewise.
	(ctf_link_lazy_open): Likewise.
	(ctf_link_one_input_archive): Likewise.
	(ctf_link_deduplicating_count_inputs): Likewise.
	(ctf_link_deduplicating_open_inputs): Likewise.
	(ctf_link_deduplicating_close_inputs): Likewise.
	(ctf_link_deduplicating): Likewise.
	(ctf_link): Likewise.
	(ctf_link_deduplicating_per_cu): Likewise. Add some missed
	ctf_set_errnos to obscure error cases.
	* ctf-dedup.c (ctf_dedup_rhash_type): Adjust ctf_err_warn for new
	err argument.  Gettextize.  Don't emit the errmsg.
	(ctf_dedup_populate_mappings): Likewise.
	(ctf_dedup_detect_name_ambiguity): Likewise.
	(ctf_dedup_init): Likewise.
	(ctf_dedup_multiple_input_dicts): Likewise.
	(ctf_dedup_conflictify_unshared): Likewise.
	(ctf_dedup): Likewise.
	(ctf_dedup_rwalk_one_output_mapping): Likewise.
	(ctf_dedup_id_to_target): Likewise.
	(ctf_dedup_emit_type): Likewise.
	(ctf_dedup_emit_struct_members): Likewise.
	(ctf_dedup_populate_type_mapping): Likewise.
	(ctf_dedup_populate_type_mappings): Likewise.
	(ctf_dedup_emit): Likewise.
	(ctf_dedup_hash_type): Likewise. Fix a bit of messed-up error
	status setting.
	(ctf_dedup_rwalk_one_output_mapping): Likewise. Don't hide
	unknown-type-kind messages (which signify file corruption).
2020-08-27 13:15:43 +01:00
..
doc elf: Keep only one '@' for undefined versioned symbols 2020-08-22 08:32:02 -07:00
po Updated Serbian and Russian translations for various sub-directories 2020-08-12 11:25:38 +01:00
testsuite Recognize DW_LANG_C11 in readelf testsuite. 2020-08-21 15:16:34 +02:00
.gitignore Remove netware support 2018-04-16 15:11:22 +09:30
aclocal.m4 binutils, ld: work with --disable-libctf 2020-06-26 15:56:39 +01:00
addr2line.c Replace "if (x) free (x)" with "free (x)", binutils 2020-05-21 10:45:33 +09:30
ar.c Use bfd_get_filename throughout binutils 2020-05-19 12:35:56 +09:30
arlex.l Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
arparse.y Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
arsup.c Use bfd_get_filename throughout binutils 2020-05-19 12:35:56 +09:30
arsup.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bfdtest1.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bfdtest2.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bin2c.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
binemul.c Use bfd_get_filename throughout binutils 2020-05-19 12:35:56 +09:30
binemul.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
BRANCHES Add markers for binutils 2.35 branch 2020-07-04 10:16:22 +01:00
bucomm.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
bucomm.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
budbg.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
ChangeLog libctf, binutils, include, ld: gettextize and improve error handling 2020-08-27 13:15:43 +01:00
ChangeLog-0001 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-0203 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2004 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2005 Remove trailing spaces in binutils 2015-08-12 04:42:37 -07:00
ChangeLog-2006 Remove trailing spaces in binutils 2015-08-12 04:42:37 -07:00
ChangeLog-2007 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2008 Remove trailing spaces in binutils 2015-08-12 04:42:37 -07:00
ChangeLog-2009 Remove trailing spaces in binutils 2015-08-12 04:42:37 -07:00
ChangeLog-2010 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2011 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2012 Rotate binutils ChangeLog for 2013 2013-01-02 17:06:32 +00:00
ChangeLog-2013 New Year - binutils ChangeLog rotation 2014-01-08 05:32:12 -08:00
ChangeLog-2014 ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ChangeLog-2015 binutils ChangeLog rotation 2016-01-01 22:59:17 +10:30
ChangeLog-2016 .rela.dyn comment fix and add missing ChangeLog entry 2017-01-09 12:10:55 +10:30
ChangeLog-2017 ChangeLog rotation 2018-01-03 17:49:42 +10:30
ChangeLog-2018 ChangeLog rotation 2019-01-01 21:25:40 +10:30
ChangeLog-2019 ChangeLog rotation 2020-01-01 18:12:08 +10:30
ChangeLog-9197 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-9899 Add copyright notices 2012-12-10 12:48:03 +00:00
coffdump.c binutils: drop redundant 'program_name' definition (-fno-common) 2020-02-03 15:59:14 +10:30
coffgrok.c Use bfd_get_filename throughout binutils 2020-05-19 12:35:56 +09:30
coffgrok.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
config.in binutils, ld: work with --disable-libctf 2020-06-26 15:56:39 +01:00
configure Unify Solaris procfs and largefile handling 2020-07-30 15:41:50 +02:00
configure.ac Remove powerpc PE support 2020-07-09 22:58:16 +09:30
configure.com Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
configure.tgt Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
cxxfilt.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
debug.c PR25840, Null pointer dereference in objdump 2020-04-17 10:56:01 +09:30
debug.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
deflex.l Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
defparse.y Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
dep-in.sed
dlltool.c Remove powerpc PE support 2020-07-09 22:58:16 +09:30
dlltool.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
dllwrap.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
dwarf-mode.el Two fixes in dwarf-mode.el 2020-08-12 08:41:06 -06:00
dwarf.c PR26388, objdump debug dump memory leaks 2020-08-14 21:31:22 +09:30
dwarf.h Add support for decoding the DW_MACRO_define_strx and DW_MACRO_undef_strx operands found in DWARF-5 .debug_macro sections. 2020-06-22 17:44:56 +01:00
elfcomm.c asan: readelf: use after free in process_archive 2020-06-27 12:55:35 +09:30
elfcomm.h Restore readelf's warnings that describe real problems with the file being examined. Fix bug displaying empty file name tables. 2020-05-05 16:16:03 +01:00
elfedit.c readelf large memory allocation 2020-03-14 17:24:19 +10:30
embedspu.sh Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
emul_aix.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
emul_vanilla.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
filemode.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
is-ranlib.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
is-strip.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
MAINTAINERS binutils: Add myself as Xtensa maintainer 2020-05-28 21:06:51 -07:00
Makefile.am libctf, binutils: initial work towards libctf gettextization 2020-08-27 13:14:10 +01:00
Makefile.in libctf, binutils: initial work towards libctf gettextization 2020-08-27 13:14:10 +01:00
makefile.vms Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
maybe-ranlib.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
maybe-strip.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
mclex.c Fix the windmc program to conform to the behaviour of mc.exe by rejecting lines that reach end-of-file without a terminating newline character. 2020-06-10 10:07:26 +01:00
mcparse.y [PATCH] fix windmc typedef bug 2020-06-03 16:44:37 +01:00
NEWS Add demangling support to readelf. 2020-08-12 13:31:59 +01:00
nm.c elf: Keep only one '@' for undefined versioned symbols 2020-08-22 08:32:02 -07:00
not-ranlib.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
not-strip.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
objcopy.c PR26412 UBSAN: objcopy.c:3026 null pointer fwrite 2020-08-26 23:23:43 +09:30
objdump.c libctf, binutils, include, ld: gettextize and improve error handling 2020-08-27 13:15:43 +01:00
objdump.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
od-elf32_avr.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
od-macho.c Recognize some new Mach-O load commands 2020-06-22 14:29:20 +01:00
od-xcoff.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
prdbg.c Remove a call to abort which can be triggered by running objdump on a corrupt input file. 2020-03-03 16:11:12 +00:00
ranlib.sh Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
rclex.c Update the Windows Resource compiler (windres) to support the OWNERDRAW and BITMAP menuitem flags. 2020-07-09 13:45:01 +01:00
rcparse.y windres: AUTOCHECKBOX default style must have WS_TABSTOP style 2020-08-26 11:57:02 +01:00
rdcoff.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
rddbg.c PR26388, objdump debug dump memory leaks 2020-08-14 21:31:22 +09:30
readelf.c libctf, binutils, include, ld: gettextize and improve error handling 2020-08-27 13:15:43 +01:00
README Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
README-how-to-make-a-release Update documentation on how to make a release 2020-07-24 12:07:41 +01:00
rename.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
resbin.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
rescoff.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
resrc.c Update the Windows Resource compiler (windres) to support the OWNERDRAW and BITMAP menuitem flags. 2020-07-09 13:45:01 +01:00
resres.c Indent labels 2020-02-26 10:37:25 +10:30
sanity.sh Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
size.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
srconv.c binutils: drop redundant 'program_name' definition (-fno-common) 2020-02-03 15:59:14 +10:30
stabs.c Replace "if (x) free (x)" with "free (x)", binutils 2020-05-21 10:45:33 +09:30
stamp-h.in
strings.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
sysdep.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
sysdump.c binutils: drop redundant 'program_name' definition (-fno-common) 2020-02-03 15:59:14 +10:30
sysinfo.y Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
syslex_wrap.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
syslex.l Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
sysroff.info Remove trailing spaces in binutils 2015-08-12 04:42:37 -07:00
unwind-ia64.c ubsan: shift exponent 70 is too large 2020-03-16 13:04:49 +10:30
unwind-ia64.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
version.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
windint.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
windmc.c [PATCH] fix windmc typedef bug 2020-06-03 16:44:37 +01:00
windmc.h [PATCH] fix windmc typedef bug 2020-06-03 16:44:37 +01:00
windres.c Update the Windows Resource compiler (windres) to support the OWNERDRAW and BITMAP menuitem flags. 2020-07-09 13:45:01 +01:00
windres.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
winduni.c Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
winduni.h Update year range in copyright notice of binutils files 2020-01-01 18:42:54 +10:30
wrstabs.c Replace "if (x) free (x)" with "free (x)", binutils 2020-05-21 10:45:33 +09:30

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

		README for BINUTILS

These are the GNU binutils.  These are utilities of use when dealing
with binary files, either object files or executables.  These tools
consist of the linker (ld), the assembler (gas), and the profiler
(gprof) each of which have their own sub-directory named after them.
There is also a collection of other binary tools, including the
disassembler (objdump) in this directory.  These tools make use of a
pair of libraries (bfd and opcodes) and a common set of header files
(include).

There are README and NEWS files in most of the program sub-directories
which give more information about those specific programs.


Copyright Notices
=================

Copyright years on binutils source files may be listed using range
notation, e.g., 1991-2012, indicating that every year in the range,
inclusive, is a copyrightable year that could otherwise be listed
individually.


Unpacking and Installation -- quick overview
============================================

When you unpack the binutils archive file, you will get a directory
called something like `binutils-XXX', where XXX is the number of the
release.  (Probably 2.13 or higher).  This directory contains
various files and sub-directories.  Most of the files in the top
directory are for information and for configuration.  The actual
source code is in sub-directories.

To build binutils, you can just do:

	cd binutils-XXX
	./configure [options]
	make
	make install # copies the programs files into /usr/local/bin
		     # by default.

This will configure and build all the libraries as well as the
assembler, the binutils, and the linker.

If you have GNU make, we recommend building in a different directory:

	mkdir objdir
	cd objdir
	../binutils-XXX/configure [options]
	make
	make install

This relies on the VPATH feature of GNU make.

By default, the binutils will be configured to support the system on
which they are built.  When doing cross development, use the --target
configure option to specify a different target, eg:

	./configure --target=foo-elf

The --enable-targets option adds support for more binary file formats
besides the default.  List them as the argument to --enable-targets,
separated by commas.  For example:

	./configure --enable-targets=sun3,rs6000-aix,decstation

The name 'all' compiles in support for all valid BFD targets:

	./configure --enable-targets=all

On 32-bit hosts though, this support will be restricted to 32-bit
target unless the --enable-64-bit-bfd option is also used:

	./configure --enable-64-bit-bfd --enable-targets=all

You can also specify the --enable-shared option when you run
configure.  This will build the BFD and opcodes libraries as shared
libraries.  You can use arguments with the --enable-shared option to
indicate that only certain libraries should be built shared; for
example, --enable-shared=bfd.  The only potential shared libraries in
a binutils release are bfd and opcodes.

The binutils will be linked against the shared libraries.  The build
step will attempt to place the correct library in the run-time search
path for the binaries.  However, in some cases, after you install the
binaries, you may have to set an environment variable, normally
LD_LIBRARY_PATH, so that the system can find the installed libbfd
shared library.

On hosts that support shared system libraries the binutils will be
linked against them.  If you have static versions of the system
libraries installed as well and you wish to create static binaries
instead then use the LDFLAGS environment variable,  like this:

  ../binutils-XXX/configure LDFLAGS="--static" [more options]

Note: the two dashes are important.  The binutils make use of the
libtool script which has a special interpretation of "-static" when it
is in the LDFLAGS environment variable.

To build under openVMS/AXP, see the file makefile.vms in the top level
directory.


Native Language Support
=======================

By default Native Language Support will be enabled for binutils.  On
some systems however this support is not present and can lead to error
messages such as "undefined reference to `libintl_gettext'" when
building there tools.  If that happens the NLS support can be disabled
by adding the --disable-nls switch to the configure line like this:

	../binutils-XXX/configure --disable-nls


If you don't have ar
====================

If your system does not already have an 'ar' program, the normal
binutils build process will not work.  In this case, run configure as
usual.  Before running make, run this script:

#!/bin/sh
MAKE_PROG="${MAKE-make}"
MAKE="${MAKE_PROG} AR=true LINK=true"
export MAKE
${MAKE} $* all-libiberty
${MAKE} $* all-intl
${MAKE} $* all-bfd
cd binutils
MAKE="${MAKE_PROG}"
export MAKE
${MAKE} $* ar_DEPENDENCIES= ar_LDADD='../bfd/*.o ../libiberty/*.o `if test -f ../intl/gettext.o; then echo '../intl/*.o'; fi`' ar

This script will build an ar program in binutils/ar.  Move binutils/ar
into a directory on your PATH.  After doing this, you can run make as
usual to build the complete binutils distribution.  You do not need
the ranlib program in order to build the distribution.

Porting
=======

Binutils-2.13 supports many different architectures, but there
are many more not supported, including some that were supported
by earlier versions.  We are hoping for volunteers to improve this
situation.

The major effort in porting binutils to a new host and/or target
architecture involves the BFD library.  There is some documentation
in ../bfd/doc.  The file ../gdb/doc/gdbint.texinfo (distributed
with gdb-5.x) may also be of help.

Reporting bugs
==============

Send bug reports and patches to:

   bug-binutils@gnu.org.

Please include the following in bug reports:

- A description of exactly what went wrong, and exactly what should have
  happened instead.

- The configuration name(s) given to the "configure" script.  The
  "config.status" file should have this information.  This is assuming
  you built binutils yourself.  If you didn't build binutils youself,
  then we need information regarding your machine and operating system,
  and it may be more appropriate to report bugs to wherever you obtained
  binutils.

- The options given to the tool (gas, objcopy, ld etc.) at run time.

- The actual input file that caused the problem.

Always mention the version number you are running; this is printed by
running any of the binutils with the --version option.  We appreciate
reports about bugs, but we do not promise to fix them, particularly so
when the bug report is against an old version.  If you are able, please
consider building the latest tools from git to check that your bug has
not already been fixed.

When reporting problems about gas and ld, it's useful to provide a
testcase that triggers the problem.  In the case of a gas problem, we
want input files to gas and command line switches used.  The inputs to
gas are _NOT_ .c or .i files, but rather .s files.  If your original
source was a C program, you can generate the .s file and see the command
line options by passing -v -save-temps to gcc in addition to all the
usual options you use.  The reason we don't want C files is that we
might not have a C compiler around for the target you use.  While it
might be possible to build a compiler, that takes considerable time and
disk space, and we might not end up with exactly the same compiler you
use.

In the case of a ld problem, the input files are .o, .a and .so files,
and possibly a linker script specified with -T.  Again, when using gcc
to link, you can see these files by adding options to the gcc command
line.  Use -v -save-temps -Wl,-t, except that on targets that use gcc's
collect2, you would add -v -save-temps -Wl,-t,-debug.  The -t option
tells ld to print all files and libraries used, so that, for example,
you can associate -lc on the ld command line with the actual libc used.
Note that your simple two line C program to trigger a problem typically
expands into several megabytes of objects by the time you include
libraries.

It is antisocial to post megabyte sized attachments to mailing lists, so
please put large testcases somewhere on an ftp or web site so that only
interested developers need to download them, or offer to email them on
request.  Better still, try to reduce the testcase, for example, try to
develop a ld testcase that doesn't use system libraries.  However,
please be sure it is a complete testcase and that it really does
demonstrate the problem.  Also, don't bother paring it down if that will
cause large delays in filing the bug report.

If you expect to be contributing a large number of test cases, it would
be helpful if you would look at the test suite included in the release
(based on the Deja Gnu testing framework, available from the usual ftp
sites) and write test cases to fit into that framework.  This is
certainly not required.

VMS
===

This section was written by Klaus K"ampf <kkaempf@rmi.de>.  It
describes how to build and install the binutils on openVMS (Alpha and
Vax).  (The BFD library only supports reading Vax object files.)

Compiling the release:

To compile the gnu binary utilities and the gnu assembler, you'll
need DEC C or GNU C for openVMS/Alpha. You'll need *both* compilers
on openVMS/Vax.

Compiling with either DEC C or GNU C works on openVMS/Alpha only. Some
of the opcodes and binutils files trap a bug in the DEC C optimizer,
so these files must be compiled with /noopt.

Compiling on openVMS/Vax is a bit complicated, as the bfd library traps
a bug in GNU C and the gnu assembler a bug in (my version of) DEC C.

I never tried compiling with VAX C.


You further need GNU Make Version 3.76 or later. This is available
at ftp.progis.de or any GNU archive site. The makefiles assume that
gmake starts gnu make as a foreign command.

If you're compiling with DEC C or VAX C, you must run

  $ @setup

before starting gnu-make. This isn't needed with GNU C.

On the Alpha you can choose the compiler by editing the toplevel
makefile.vms. Either select CC=cc (for DEC C) or CC=gcc (for GNU C)


Installing the release

Provided that your directory setup conforms to the GNU on openVMS
standard, you already have a concealed device named 'GNU_ROOT'.
In this case, a simple

 $ gmake install

suffices to copy all programs and libraries to the proper directories.

Define the programs as foreign commands by adding these lines to your
login.com:

  $ gas :== $GNU_ROOT:[bin]as.exe
  $ size :== $GNU_ROOT:[bin]size.exe
  $ nm :== $GNU_ROOT:[bin]nm.exe
  $ objdump :== $GNU_ROOT:[bin]objdump.exe
  $ strings :== $GNU_ROOT:[bin]strings.exe

If you have a different directory setup, copy the binary utilities
([.binutils]size.exe, [.binutils]nm.exe, [.binutils]objdump.exe,
and [.binutils]strings.exe) and the gnu assembler and preprocessor
([.gas]as.exe and [.gas]gasp.exe]) to a directory of your choice
and define all programs as foreign commands.


If you're satisfied with the compilation, you may want to remove
unneeded objects and libraries:

  $ gmake clean


If you have any problems or questions about the binutils on VMS, feel
free to mail me at kkaempf@rmi.de.

Copyright (C) 2012-2020 Free Software Foundation, Inc.

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.