--- /dev/null
+Cross-binutils debian packages are directly built from the binutils
+source package together with the native binutils packages.
+
+To build a cross-binutils package which is not yet built:
+
+ o Download and unpack the binutils source package:
+
+ apt-get source binutils
+
+ o Ensure you have the binutils build-dependencies installed:
+
+ apt-get build-dep binutils
+
+ o Add the binutils-<your-target> package to the control file:
+
+ rm -f stamps/control
+ debian/rules stamps/control TARGET=<your-target>
+
+ This change is permanent and will survive 'make clean'. If you
+ need to restore the original debian/control file:
+
+ rm -f stamps/control
+ debian/rules stamps/control TARGET=
+
+ o Then build the cross-binutils package:
+
+ TARGET=<your-target> dpkg-buildpackage -b -uc -us
+ or
+ echo arm >debian/target; dpkg-buildpackage -b -uc -us
+
+ (substitute your target name, e.g. "arm" or "m68k", instead of
+ "<your-target>")
+
+--
+Hector Oron <zumbi@debian.org>
+Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
+Matthias Klose <doko@debian.org>
+Nikita Youshchenko <yoush@cs.msu.su>
--- /dev/null
+This source package builds native packages and packages targeting
+debian architectures. To shorten a test build, some of these builds
+can be skipped.
+
+DEB_BUILD_OPTIONS="parallel=<N> <option> ..." dpkg-buildpackage ...
+
+Where <option> can be:
+
+ - nomult to diable the binutils-multilib build
+ - nohppa64 to disable the hppa64 build
+ - nopgo to disable the PGO/LTO build
+ - nocheck to disable running the testsuite
+ - nocross to disable all builds for other targets
+
+To build only a subset of the target architectures, also
+set CROSS_ARCHS in the env, e.g. CROSS_ARCHS="arm64 ppc64el"
--- /dev/null
+# big tables
+binutils-common binary: manpage-has-errors-from-man
--- /dev/null
+@PKG@ binary: package-name-doesnt-match-sonames
+@PKG@ binary: non-standard-dir-in-usr
+
+# needed for kfreebsd and the hurd
+@PKG@ binary: file-in-unusual-dir
+
+# internal libs, with the target name encoded
+@PKG@ binary: no-shlibs-control-file
+
+# yes, intended
+@PKG@ binary: shlib-in-multi-arch-foreign-package
+@PKG@ binary: triplet-dir-and-architecture-mismatch
+
+# some triplets are long ...
+@PKG@ binary: extended-description-line-too-long
--- /dev/null
+# don't warn about missing man pages for diverted binaries
+binutils-hppa64-linux-gnu binary: binary-without-manpage
+
+# the API of the shared libs is not public, don't care about the name
+binutils-hppa64-linux-gnu binary: package-name-doesnt-match-sonames
+
+binutils-hppa64-linux-gnu binary: non-standard-dir-in-usr
+
+# private library. no -dev package is provided, nothing can link it
+binutils-hppa64-linux-gnu binary: no-shlibs-control-file
--- /dev/null
+# package only has symlinks
+binutils-multiarch-dev binary: control-file-is-empty md5sums
--- /dev/null
+# don't warn about missing man pages for diverted binaries
+binutils-multiarch binary: binary-without-manpage
+
+# the API of the shared libs is not public, don't care about the name
+binutils-multiarch binary: package-name-doesnt-match-sonames
+
+# the upstream name, we don't care
+binutils-multiarch binary: dev-pkg-without-shlib-symlink
+
+# not in binutils-multiarch, just move these away
+binutils-multiarch: diversion-for-unknown-file usr/lib/libopcodes.a preinst:19
+binutils-multiarch: diversion-for-unknown-file usr/lib/libbfd.a preinst:16
+
--- /dev/null
+#! /bin/sh
+# Update .so symlinks and remove obsolete diversions.
+#
+# Removing a diversion requires a guarantee that the conflicting
+# file is not present any more, and we cannot guarantee that if
+# some other version of binutils-multiarch is installed.
+# So we remove the diversions in postinst, not preinst.
+set -e
+ma=@DEB_MULTIARCH@
+triplet=@DEB_TRIPLET@
+old_diversion() {
+ local divertto file
+ file=$1
+ divertto=${2-$file.single}
+ if
+ dpkg-divert --package binutils-multiarch --list |
+ grep -q -F "$divertto"
+ then
+ dpkg-divert --package binutils-multiarch \
+ --remove --rename \
+ --divert "$divertto" "$file"
+ fi
+}
+
+# remove obsolete diversions
+old_diversion /usr/bin/ld.bfd
+old_diversion /usr/bin/c++filt
+old_diversion /usr/lib/libbfd.a /usr/lib/libbfd-single.a
+old_diversion /usr/lib/libopcodes.a /usr/lib/libopcodes-single.a
+old_diversion /usr/bin/ld
+old_diversion /usr/bin/elfedit
+for f in elf32_sparc elf32ppc elf64alpha elf_i386 m68kelf \
+ alpha i386linux m68klinux sparclinux sun4
+do
+ for ext in x xbn xn xr xs xu
+ do
+ old_diversion /usr/lib/ldscripts/$f.$ext
+ done
+done
+old_diversion /usr/lib/libbfd-2.9.1.0.15.so.0.0.0 \
+ /usr/lib/libbfd-single-2.9.1.0.15.so.0.0.0
+old_diversion /usr/lib/libopcodes-2.9.1.0.15.so.0.0.0 \
+ /usr/lib/libopcodes-single-2.9.1.0.15.so.0.0.0
+old_diversion /usr/lib/libbfd.la /usr/lib/libbfd-single.la
+old_diversion /usr/lib/libopcodes.la /usr/lib/libopcodes-single.la
+old_diversion /usr/include/bfd.h /usr/include/bfd.single.h
+old_diversion /usr/lib/ldscripts
+
+rm -f /usr/lib/libbfd-*-multiarch.so.0
+rm -f /usr/lib/libopcodes-*-multiarch.so.0
+
+old_diversion /usr/bin/addr2line
+old_diversion /usr/bin/ar
+old_diversion /usr/bin/embedspu
+old_diversion /usr/bin/gprof
+old_diversion /usr/bin/nm
+old_diversion /usr/bin/objcopy
+old_diversion /usr/bin/objdump
+old_diversion /usr/bin/ranlib
+old_diversion /usr/bin/readelf
+old_diversion /usr/bin/size
+old_diversion /usr/bin/strings
+old_diversion /usr/bin/strip
+
+case "$ma" in i386-*)
+ if test -n "$context" && dpkg --compare-versions "$2" lt "2.27-8"; then
+ old_diversion /usr/bin/$ma-addr2line
+ old_diversion /usr/bin/$ma-ar
+ old_diversion /usr/bin/$ma-embedspu
+ old_diversion /usr/bin/$ma-gprof
+ old_diversion /usr/bin/$ma-nm
+ old_diversion /usr/bin/$ma-objcopy
+ old_diversion /usr/bin/$ma-objdump
+ old_diversion /usr/bin/$ma-ranlib
+ old_diversion /usr/bin/$ma-readelf
+ old_diversion /usr/bin/$ma-size
+ old_diversion /usr/bin/$ma-strings
+ old_diversion /usr/bin/$ma-strip
+ fi
+esac
--- /dev/null
+#! /bin/sh
+set -e
+this_ver=@DEB_VER@; # this version
+ma=@DEB_MULTIARCH@
+triplet=@DEB_TRIPLET@
+# action: upgrade, abort-upgrade, remove, abort-install, disappear,
+# purge, or failed-upgrade.
+context=$1
+if
+ test "$context" = failed-upgrade &&
+ dpkg --compare-versions "$this_ver" lt "$2"
+then
+ # postrm of the future failed.
+ # Who knows what it was supposed to do? Abort.
+ exit 1
+fi
+new_ver=; # version replacing this one, if any.
+case "$context" in
+failed-upgrade)
+ new_ver=$this_ver ;;
+abort-install|disappear)
+ new_ver= ;;
+*)
+ new_ver=$2 ;;
+esac
+
+diversion() {
+ local added_ver divertto file
+ added_ver=$1
+ file=$2
+ divertto=${3-$file.single}
+
+ if
+ test "$context" != purge &&
+ dpkg --compare-versions "$new_ver" lt "$added_ver"
+ then
+ dpkg-divert --package binutils-multiarch \
+ --remove --rename --divert "$divertto" "$file"
+ fi
+}
+
+
+for prog in nm objdump objcopy strings strip size \
+ ar ranlib addr2line gprof readelf
+do
+ diversion 2.27-8 "/usr/bin/$triplet-$prog"
+done
--- /dev/null
+#! /bin/sh
+set -e
+new_ver=@DEB_VER@; # this version
+ma=@DEB_MULTIARCH@
+triplet=@DEB_TRIPLET@
+context=$1; # why to install (install, upgrade, or abort-upgrade)
+old_ver=$2; # version being replaced, if any
+
+diversion() {
+ local added_ver divertto file
+ added_ver=$1
+ file=$2
+ divertto=${3-$file.single}
+
+ if
+ test "$context" = install ||
+ dpkg --compare-versions "$old_ver" lt "$added_ver" ||
+ dpkg --compare-versions "$new_ver" le "$old_ver"
+ then
+ dpkg-divert --package binutils-multiarch \
+ --add --rename --divert "$divertto" "$file"
+ fi
+}
+
+for prog in nm objdump objcopy strings strip size \
+ ar ranlib addr2line gprof readelf
+do
+ diversion 2.27-8 "/usr/bin/$triplet-$prog"
+done
--- /dev/null
+#! /bin/sh
+# Remove obsolete diversions.
+#
+# They are already removed in postinst, but if configuration fails,
+# they will still be around. Removing the package without
+# configuring would then allow the diversions to leak.
+#
+# So we catch them here. This cannot wait for postrm because that
+# would break error recovery during upgrades: after the old, working
+# version re-adds the diversion in preinst, the diversion would be removed
+# again in postrm. More generally, removing a diversion requires
+# a guarantee that the conflicting file is not present any more,
+# and we cannot guarantee that if some other version of
+# binutils-multiarch is installed.
+set -e
+this_ver=@DEB_VER@; # this version
+ma=@DEB_MULTIARCH@
+triplet=@DEB_TRIPLET@
+context=$1; # action: upgrade, remove, deconfigure, or failed-upgrade.
+if
+ test "$context" = failed-upgrade &&
+ dpkg --compare-versions "$this_ver" lt "$2"
+then
+ # prerm of the future failed.
+ # Who knows what it was supposed to do? Abort.
+ exit 1
+fi
+
+old_diversion() {
+ local divertto file
+ file=$1
+ divertto=${2-$file.single}
+ if
+ dpkg-divert --package binutils-multiarch --list |
+ grep -q -F "$divertto"
+ then
+ dpkg-divert --package binutils-multiarch \
+ --remove --rename \
+ --divert "$divertto" "$file"
+ fi
+}
+
+# remove obsolete diversions
+old_diversion /usr/bin/ld.bfd
+old_diversion /usr/bin/c++filt
+old_diversion /usr/lib/libbfd.a /usr/lib/libbfd-single.a
+old_diversion /usr/lib/libopcodes.a /usr/lib/libopcodes-single.a
+old_diversion /usr/bin/ld
+old_diversion /usr/bin/elfedit
+for f in elf32_sparc elf32ppc elf64alpha elf_i386 m68kelf \
+ alpha i386linux m68klinux sparclinux sun4
+do
+ for ext in x xbn xn xr xs xu
+ do
+ old_diversion /usr/lib/ldscripts/$f.$ext
+ done
+done
+old_diversion /usr/lib/libbfd-2.9.1.0.15.so.0.0.0 \
+ /usr/lib/libbfd-single-2.9.1.0.15.so.0.0.0
+old_diversion /usr/lib/libopcodes-2.9.1.0.15.so.0.0.0 \
+ /usr/lib/libopcodes-single-2.9.1.0.15.so.0.0.0
+old_diversion /usr/lib/libbfd.la /usr/lib/libbfd-single.la
+old_diversion /usr/lib/libopcodes.la /usr/lib/libopcodes-single.la
+old_diversion /usr/include/bfd.h /usr/include/bfd.single.h
+old_diversion /usr/lib/ldscripts
+
+rm -f /usr/lib/libbfd-*-multiarch.so.0
+rm -f /usr/lib/libopcodes-*-multiarch.so.0
+
+old_diversion /usr/bin/addr2line
+old_diversion /usr/bin/ar
+old_diversion /usr/bin/embedspu
+old_diversion /usr/bin/gprof
+old_diversion /usr/bin/nm
+old_diversion /usr/bin/objcopy
+old_diversion /usr/bin/objdump
+old_diversion /usr/bin/ranlib
+old_diversion /usr/bin/readelf
+old_diversion /usr/bin/size
+old_diversion /usr/bin/strings
+old_diversion /usr/bin/strip
+
+case "$ma" in i386-*)
+ if test -n "$context" && dpkg --compare-versions "$2" lt "2.27-8"; then
+ old_diversion /usr/bin/$ma-addr2line
+ old_diversion /usr/bin/$ma-ar
+ old_diversion /usr/bin/$ma-embedspu
+ old_diversion /usr/bin/$ma-gprof
+ old_diversion /usr/bin/$ma-nm
+ old_diversion /usr/bin/$ma-objcopy
+ old_diversion /usr/bin/$ma-objdump
+ old_diversion /usr/bin/$ma-ranlib
+ old_diversion /usr/bin/$ma-readelf
+ old_diversion /usr/bin/$ma-size
+ old_diversion /usr/bin/$ma-strings
+ old_diversion /usr/bin/$ma-strip
+ fi
+esac
--- /dev/null
+libbfd @VER@-multiarch@DATE_EXT@ binutils-multiarch (>= @DEB_UVER@), binutils-multiarch (<< @DEB_NVER@)
+libopcodes @VER@-multiarch@DATE_EXT@ binutils-multiarch (>= @DEB_UVER@), binutils-multiarch (<< @DEB_NVER@)
+libctf-multiarch 0 binutils-multiarch (>= @DEB_UVER@)
+libctf-nobfd-multiarch 0 binutils-multiarch (>= @DEB_UVER@)
--- /dev/null
+# empty
+
+# silence lintian stupidity
+@PKG@ binary: spelling-error-in-binary usr/bin/as mmnemonic mnemonic
--- /dev/null
+# manpages are in binutils-common
+binutils binary: binary-without-manpage usr/bin/ld.bfd
+binutils binary: binary-without-manpage usr/bin/ld.gold
+
+# silence lintian stupidity
+binutils binary: spelling-error-in-binary usr/bin/as mmnemonic mnemonic
--- /dev/null
+When reporting binutils errors, please provide the actual input files
+and options given to the tool (gas, objcopy, ld, etc.) at run time.
+This can mean the difference between a pleasant debugging experience
+and a heisenbug that becomes unreproducible when gcc's code generation
+changes.
+
+For example, to create a testcase for an "ld" problem, first find the
+"gcc" command line that triggers the error:
+
+ $ make
+ ... output ending in an error ...
+ $ make V=1 VERBOSE=1 2>&1 | head -1
+
+Add "-v" after gcc and run it again. One of the early output lines
+will be an invocation of collect2. Replace collect2 with "ld" and
+it should reproduce the same error. If you collect all the objects
+(including system libraries) mentioned on the "ld" command line in a
+tarball and send it along with the ld command line then that is a
+testcase.
+
+A possible step after that is to try omitting some objects from the
+ld command line and see if it still triggers the same error, but
+that's just icing on the cake.
+
+Happy debugging!
--- /dev/null
+activate-noawait ldconfig
--- /dev/null
+binutils (2.38-2) unstable; urgency=medium
+
+ * Update from the binutils 2.38 branch:
+ - Updated Serbian translations.
+ - ld: Keep indirect symbol from IR if referenced from shared object.
+ - i386: Update I386_NEED_DYNAMIC_RELOC_TYPE_P for DT_TEXTREL.
+ - Fix PR28882, build failure with gcc-4.2 due to use of 0b literals.
+ - x86: Disallow invalid relocation against protected symbol.
+
+ -- Matthias Klose <doko@debian.org> Fri, 18 Feb 2022 05:46:44 +0100
+
+binutils (2.38-1) unstable; urgency=medium
+
+ * binutils 2.38 release.
+
+ -- Matthias Klose <doko@debian.org> Wed, 09 Feb 2022 15:53:21 +0100
+
+binutils (2.37.90.20220207-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the 2.38 release branch.
+ - Revert "ld: Rewrite lang_size_relro_segment_1".
+ - Revert "elf: Remove the 1-page gap before the RELRO segment".
+
+ -- Matthias Klose <doko@debian.org> Mon, 07 Feb 2022 08:54:20 +0100
+
+binutils (2.37.90.20220130-2) unstable; urgency=medium
+
+ * Also ignore regressions for the cross packages.
+
+ -- Matthias Klose <doko@debian.org> Sun, 30 Jan 2022 17:51:18 +0100
+
+binutils (2.37.90.20220130-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the 2.38 release branch.
+ - Fix PR ld/28743, PR ld/28819. Closes: #1004272. LP: #1958642.
+ * Configure with --with-isa-spec=2.2 on riscv64. LP: #1959325. Only change
+ to the new ISA when GCC 12 becomes the default.
+ * Fix PR ld/28827, taken from the trunk.
+ * Fix PR ld/28826 x86_64 ld segfaults building xen, taken from the trunk.
+ Closes: #1004269. LP: #1958389.
+
+ -- Matthias Klose <doko@debian.org> Sun, 30 Jan 2022 14:41:25 +0100
+
+binutils (2.37.90.20220123-2) unstable; urgency=medium
+
+ * Apply proposed patch for PR ld/28819.
+
+ -- Matthias Klose <doko@debian.org> Tue, 25 Jan 2022 16:57:38 +0100
+
+binutils (2.37.90.20220123-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the 2.38 release branch.
+
+ -- Matthias Klose <doko@debian.org> Sun, 23 Jan 2022 17:51:30 +0100
+
+binutils (2.37.50.20220121-1) unstable; urgency=medium
+
+ * New upstream snapshot.
+ * Revert the last change, PR ld/28751 is fixed.
+
+ -- Matthias Klose <doko@debian.org> Fri, 21 Jan 2022 09:36:36 +0100
+
+binutils (2.37.50.20220106-2) unstable; urgency=medium
+
+ * Ignore known regressions on powerpc, ppc64, ppc64el, see PR ld/28751.
+
+ -- Matthias Klose <doko@debian.org> Fri, 07 Jan 2022 08:39:03 +0100
+
+binutils (2.37.50.20220106-1) unstable; urgency=medium
+
+ * New upstream snapshot.
+ * Configure with --disable-silent-rules.
+ * Disable LTO in mipsel to workaround timeouts during tests.
+
+ -- Matthias Klose <doko@debian.org> Thu, 06 Jan 2022 07:38:55 +0100
+
+binutils (2.37.50.20211201-1) experimental; urgency=medium
+
+ * New upstream snapshot.
+ * Ignore test regressions on mipsel, riscv64, sparc64.
+
+ -- Matthias Klose <doko@debian.org> Wed, 01 Dec 2021 10:52:43 +0100
+
+binutils (2.37.50.20211118-1) experimental; urgency=medium
+
+ * New upstream snapshot.
+ * Configure --with-gold-ldflags=-static-libstdc++.
+
+ -- Matthias Klose <doko@debian.org> Thu, 18 Nov 2021 09:20:55 +0100
+
+binutils (2.37.50.20211115-1) experimental; urgency=medium
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Mon, 15 Nov 2021 11:17:26 +0100
+
+binutils (2.37.50.20211102-1) experimental; urgency=medium
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Tue, 02 Nov 2021 13:47:31 +0200
+
+binutils (2.37-8) unstable; urgency=medium
+
+ * Update from the binutils 2.37 branch:
+ - PR28391, strip/objcopy --preserve-dates *.a: cannot set time.
+ - [GOLD] Got_offset_list: addend field.
+ - [GOLD] Remove addend from Local_got_entry_key.
+ - [GOLD] Output_data_got tidy.
+ - [GOLD] Output_data_got create entry method addends.
+ - [GOLD] Got_entry::write addends.
+ - [GOLD] PowerPC64 support for sym+addend GOT entries.
+ - ld: pru: Fix resource_table output section alignment.
+ - Fix PR28422, build_id use-after-free.
+ - Fix PR28459, readelf issues bogus warning.
+ - [GOLD] PowerPC64: Don't pretend to support multi-toc.
+ - [GOLD] Two GOT sections for PowerPC64.
+ - Fix PR gold/27625, powerpc64 gold __tls_get_addr calls.
+ - Fix PR28417, std::string no longer allows accepting nullptr_t.
+ * Bump standards version.
+
+ -- Matthias Klose <doko@debian.org> Tue, 02 Nov 2021 13:17:11 +0200
+
+binutils (2.37-7) unstable; urgency=medium
+
+ * Fix PR ld/28348, taken from the trunk. Closes: #994530.
+ * Revert the arc build, needs dpkg supporting this architecture.
+
+ -- Matthias Klose <doko@debian.org> Sun, 19 Sep 2021 17:23:57 +0200
+
+binutils (2.37-6) unstable; urgency=medium
+
+ * Add support to build for arc-linux-gnu. Closes: #994190.
+
+ -- Matthias Klose <doko@debian.org> Tue, 14 Sep 2021 08:41:56 +0200
+
+binutils (2.37-5) unstable; urgency=medium
+
+ * Update from the binutils 2.37 branch:
+ - [GOLD] PowerPC64 relocation overflow for -Os register save/restore funcs.
+ * Update libctf0 and libctf-nobsd0 symbols files.
+ * Rebuild man pages, included as empty files in the upstream tarball.
+ Closes: #992323. LP: #1940712.
+
+ -- Matthias Klose <doko@debian.org> Mon, 30 Aug 2021 10:51:17 +0200
+
+binutils (2.37-4) unstable; urgency=medium
+
+ * Update from the binutils 2.37 branch:
+ - Revert the ld script expression parsing changes.
+
+ -- Matthias Klose <doko@debian.org> Sun, 15 Aug 2021 16:51:18 +0200
+
+binutils (2.37-2) experimental; urgency=medium
+
+ * Update from the binutils 2.37 branch:
+ - Fix PR ld/28138, close the file descriptor if there is no archive fd.
+ - Fix PR 28144, man page generation.
+ - Fix ld script expression parsing.
+ - Fix build failures with clang.
+ - Revert: PowerPC: Don't generate unused section symbols, blindly
+ following x86 broken linux kernel builds.
+
+ -- Matthias Klose <doko@debian.org> Fri, 30 Jul 2021 13:49:51 +0200
+
+binutils (2.37-1) experimental; urgency=medium
+
+ * binutils 2.37 release.
+
+ -- Matthias Klose <doko@debian.org> Mon, 19 Jul 2021 08:11:10 +0200
+
+binutils (2.36.90.20210712-1) UNRELEASED; urgency=medium
+
+ * New upstream snapshot, taken from the 2.37 branch.
+
+ -- Matthias Klose <doko@debian.org> Mon, 12 Jul 2021 11:54:46 +0200
+
+binutils (2.36.90.20210705-1) experimental; urgency=medium
+
+ * New upstream snapshot, taken from the 2.37 branch.
+
+ -- Matthias Klose <doko@debian.org> Mon, 05 Jul 2021 09:17:21 +0200
+
+binutils (2.36.50.20210628-1) experimental; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Mon, 28 Jun 2021 16:14:58 +0200
+
+binutils (2.36.50.20210618-1) experimental; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+ * Apply a hack for mips. See #765710.
+
+ -- Matthias Klose <doko@debian.org> Fri, 18 Jun 2021 11:54:54 +0200
+
+binutils (2.36.50.20210601-1) experimental; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+ * Refresh patches.
+
+ -- Matthias Klose <doko@debian.org> Tue, 01 Jun 2021 21:25:10 +0200
+
+binutils (2.36.1-6) experimental; urgency=medium
+
+ * Update from the binutils 2.36 branch:
+ - Add install dependencies for ld -> bfd and libctf -> bfd.
+ * Fix dangling symlinks in the cross packages. Closes: #985434.
+ * Ignore bootstrap test regressions on alpha and ia64.
+
+ -- Matthias Klose <doko@debian.org> Sat, 20 Mar 2021 15:59:45 +0100
+
+binutils (2.36.1-5) experimental; urgency=medium
+
+ * Update from the binutils 2.36 branch:
+ - PR ld/27441, inconsistency in weak definitions.
+ - PowerPC64 undefined weak visibility vs GOT optimisation.
+
+ -- Matthias Klose <doko@debian.org> Fri, 05 Mar 2021 20:59:07 +0100
+
+binutils (2.36.1-4) experimental; urgency=medium
+
+ * Update from the binutils 2.36 branch:
+ - binutils: Avoid renaming over existing files.
+ - PR 26945, PR 27456.
+ * When stripping packages, call debugedit before dwz to avoid warnings.
+ * Add a README.source file.
+
+ -- Matthias Klose <doko@debian.org> Fri, 26 Feb 2021 11:17:08 +0100
+
+binutils (2.36.1-2) experimental; urgency=medium
+
+ [ Matthias Klose ]
+ * Remove unused patch.
+ * Show available memory for autopkg tests.
+ * Fix libctf* symbols files, and dependency generation. Closes: #983220.
+ * Add debugedit as dependency for the build autopkg test.
+
+ [ Nicolas Boulenguez ]
+ * Various packaging changes. Closes: #979517.
+ - Fix details in clean Make target when TARGET architecture is specified.
+ - Fix a variable substition in debian/control.
+ - Refresh patches, sorting files in each patch.
+ - Compute D_CROSS from P_CROSS.
+ - Spare two subprocesses in control file generation.
+ - Replace Make foreach function with addprefix when possible.
+ - Remove apparently redundant test.
+ - Replace calls to dpkg-parsechangelog with /usr/share/dpkg/pkg-info.mk.
+ - Make flow of with_cross easyer to follow.
+ - Simplify definition of CROSS_ARCHS.
+ - Fix prerequisites of stamps/control.
+ - Fix an undefined reference when TARGET is defined.
+ - Wrap two calls to dpkg-architecture into the _gnu_type macro.
+ - Simplify a clean command.
+ - Drop two unused variable definitions.
+ - Distinguish TARGET, DEB_TARGET_ARCH and DEB_TARGET_GNU_TYPE.
+ - Improve the _gnu_type and _multiarch macros.
+ * README.cross: Document TARGET-driven cross build. Closes: #979516.
+
+ -- Matthias Klose <doko@debian.org> Sun, 21 Feb 2021 12:52:20 +0100
+
+binutils (2.36.1-1) experimental; urgency=medium
+
+ * binutils 2.36.1 release.
+ * Update from the binutils 2.36 branch:
+ - IBM Z: Implement instruction set extensions.
+ - PR27382, build failure if fileno() is a macro.
+ - ld: Remove x86 ISA level run-time tests.
+ * debian/patches/mips64-default-n64.diff: Update (YunQiang Su).
+ Patch never forwarded upstream.
+ * Build with Rules-Requires-Root: no.
+ * Bump standards version.
+ * Set unique build-ids for stripped files.
+
+ -- Matthias Klose <doko@debian.org> Fri, 19 Feb 2021 14:52:51 +0100
+
+binutils (2.36-2) experimental; urgency=medium
+
+ * Snapshot, taken from the 2.36 branch (20210130).
+
+ -- Matthias Klose <doko@debian.org> Sat, 30 Jan 2021 16:04:47 +0100
+
+binutils (2.36-1) experimental; urgency=medium
+
+ * binutils 2.36 release.
+ * Update from the binutils 2.36 branch:
+ - DWARF-5: Ignore empty range in DWARF-5 line number tables.
+
+ -- Matthias Klose <doko@debian.org> Mon, 25 Jan 2021 11:43:44 +0100
+
+binutils (2.35.90.20210120-1) experimental; urgency=medium
+
+ * Snapshot, taken from the 2.36 branch (20210120).
+
+ -- Matthias Klose <doko@debian.org> Wed, 20 Jan 2021 10:45:39 +0100
+
+binutils (2.35.90.20210113-1) experimental; urgency=medium
+
+ * Snapshot, taken from the 2.36 branch (20210113).
+
+ -- Matthias Klose <doko@debian.org> Wed, 13 Jan 2021 12:00:22 +0100
+
+binutils (2.35.50.20210106-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20210106).
+ * Fix FTCBFS: Disable pgo for cross builds (Helmut Grohne). Closes: #977822.
+ * 'nopgo' in DEB_BUILD_OPTIONS also disables the pgo builds.
+
+ -- Matthias Klose <doko@debian.org> Wed, 06 Jan 2021 13:35:29 +0100
+
+binutils (2.35.50.20201218-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20201218).
+ * Configure the native builds with --enable-pgo-build=lto.
+
+ -- Matthias Klose <doko@debian.org> Fri, 18 Dec 2020 20:10:03 +0100
+
+binutils (2.35.50.20201209-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20201209).
+ * Update libctf symbols files.
+
+ -- Matthias Klose <doko@debian.org> Wed, 09 Dec 2020 12:56:08 +0100
+
+binutils (2.35.50.20201206-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20201206).
+
+ -- Matthias Klose <doko@debian.org> Sun, 06 Dec 2020 10:35:20 +0100
+
+binutils (2.35.50.20201125-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20201125).
+
+ -- Matthias Klose <doko@debian.org> Wed, 25 Nov 2020 10:23:07 +0100
+
+binutils (2.35.50.20201125-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20201125).
+
+ -- Matthias Klose <doko@debian.org> Wed, 25 Nov 2020 10:23:07 +0100
+
+binutils (2.35.50.20201103-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20201104).
+ * Ignore strip-nondeterminism errors.
+ * Configure with --enable-obsolete (ia64).
+
+ -- Matthias Klose <doko@debian.org> Tue, 03 Nov 2020 09:30:21 +0100
+
+binutils (2.35.1-2) unstable; urgency=medium
+
+ * Update from the binutils 2.35 branch:
+ - ARM32: Add support for Neoverse N2 and V1 CPUs.
+ - AArch64: Add support for Neoverse V1 CPU.
+ - Various Power10 and Power gold fixes.
+ - Fix PR gas/26685, x86: Check register operand for AddrPrefixOpReg.
+ - Fix PR ld/26711, x86: Properly merge -z ibt and -z shstk.
+ - Fix PR gas/26699, aarch64: Fix bogus type punning in parse_barrier().
+ - Fix PR binutils/26520, fix decoding DWARF information in the BFD library.
+ * AArch64: Add support for Neoverse N2 CPU, taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Fri, 09 Oct 2020 17:10:08 +0200
+
+binutils (2.35.1-1) unstable; urgency=medium
+
+ * binutils 2.35.1 release.
+
+ -- Matthias Klose <doko@debian.org> Mon, 21 Sep 2020 11:45:07 +0200
+
+binutils (2.35-3) unstable; urgency=medium
+
+ * Update from the binutils 2.35 branch:
+ - PowerPC TPREL_HA/LO optimisation.
+ - Partially fix PR gas/26406, quadratic slowdown when processing secondary
+ relocations.
+ - Fix PR binutils/26548, spurious overflow error when decoding negative
+ LEB128 values.
+ - mark's dwarf backports
+ - bpf: add xBPF ISA.
+ - Backport patches from the mainline to fix the handling of DWARF-5 debug
+ information
+ - PowerPC: Rename xvcvbf16sp to xvcvbf16spn.
+ - Fix PR binutils/26389, nm prints "c" for a common symbol with
+ -flto and -fcommon.
+ - Arm: Fix IT-predicated MVE vcvt.
+
+ -- Matthias Klose <doko@debian.org> Fri, 11 Sep 2020 12:34:43 +0200
+
+binutils (2.35-2) unstable; urgency=medium
+
+ * Update from the binutils 2.35 branch:
+ - Fixes for the eBPF ELF backend.
+ - Fix PR ld/26312, aarch64: set sh_entsize of .plt to 0.
+ - Fix PR gas/26305, x86: Add {disp16} pseudo prefix, handle {disp32}
+ for (%bp)/(%ebp)/(%rbp).
+ - Fix PR ld/26328, compilation warnings.
+
+ -- Matthias Klose <doko@debian.org> Thu, 13 Aug 2020 16:16:49 +0200
+
+binutils (2.35-1) unstable; urgency=medium
+
+ * binutils 2.35 release.
+ - Fix PR gas/26263. Closes: #965380.
+ * Explicitly configure with --disable-x86-used-note.
+ * Configure mipsel, mipsn32el, mips64el again with
+ --enable-mips-fix-loongson3-llsc=yes (YunQiang Su). Closes: #952737.
+
+ -- Matthias Klose <doko@debian.org> Fri, 24 Jul 2020 12:52:26 +0200
+
+binutils (2.34.90.20200706-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the binutils 2.35 branch.
+
+ -- Matthias Klose <doko@debian.org> Mon, 06 Jul 2020 21:10:37 +0200
+
+binutils (2.34.50.20200605-1) experimental; urgency=medium
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Fri, 05 Jun 2020 10:56:37 +0200
+
+binutils (2.34.50.20200512-1) experimental; urgency=medium
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Tue, 12 May 2020 16:24:56 +0200
+
+binutils (2.34-6) unstable; urgency=medium
+
+ * Update from the binutils 2.34 branch:
+ - Fix PR lto/94249, typo in a macro usage, improve endianess detection.
+ - PR25745, powerpc64-ld overflows string buffer in --stats mode.
+ - plugin: Don't invoke LTO-wrapper.
+ - PR binutils/25640, plugin: Use LDPT_ADD_SYMBOLS_V2 to get symbol type.
+ - Fix dwarf.c build with GCC 10.
+ - PR binutils/25717, build failure with GCC 10.
+
+ -- Matthias Klose <doko@debian.org> Tue, 07 Apr 2020 13:29:21 +0200
+
+binutils (2.34-5) unstable; urgency=medium
+
+ * Update from the binutils 2.34 branch:
+ - Fix PR gas/25660, vadd/vsub with lt and le condition codes for MVE.
+ - Fix powerpc64-ld infinite loop.
+
+ -- Matthias Klose <doko@debian.org> Thu, 19 Mar 2020 20:45:59 +0100
+
+binutils (2.34-4) unstable; urgency=medium
+
+ * Update from the binutils 2.34 branch:
+ - Fix PR24511, nm should not mark symbols in .init_array as "t".
+ - Fix PR binutils/25584, don't call lto-wrapper for ar and ranlib.
+
+ -- Matthias Klose <doko@debian.org> Fri, 28 Feb 2020 11:18:34 +0100
+
+binutils (2.34-3) unstable; urgency=medium
+
+ * Update from the binutils 2.34 branch:
+ - Fix PR gas/25516, Accept Intel64 only instruction by default.
+ - Fix PR 25447, prevents a potential illegal memory access when parsing
+ PE binaries.
+ - Fix PR binutils/25355, import fixes for using the LTO plugin with nm.
+ - Fix PR 25585, PHDR segment not covered by LOAD segment.
+ - MSP430 updates.
+ - Mention x86 assembler options to align branches.
+ - AArch64: Fix MOVPRFX markup for bf16 conversions.
+ * Make the test summary files reproducible. Addresses: #950585.
+
+ -- Matthias Klose <doko@debian.org> Sat, 22 Feb 2020 09:49:46 +0100
+
+binutils (2.34-2) unstable; urgency=medium
+
+ * Regenerate the control file.
+
+ -- Matthias Klose <doko@debian.org> Sun, 02 Feb 2020 17:46:11 +0100
+
+binutils (2.34-1) unstable; urgency=medium
+
+ * New upstream release.
+ * Bump standards version.
+
+ -- Matthias Klose <doko@debian.org> Sun, 02 Feb 2020 08:45:55 +0100
+
+binutils (2.33.90.20200122-2) unstable; urgency=medium
+
+ * libctf-nobfd0: Add Breaks/Replaces to libbinutils. Closes: #949454.
+
+ -- Matthias Klose <doko@debian.org> Wed, 22 Jan 2020 07:49:18 +0100
+
+binutils (2.33.90.20200122-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the 2.34 release branch.
+
+ -- Matthias Klose <doko@debian.org> Wed, 22 Jan 2020 06:18:41 +0100
+
+binutils (2.33.50.20200115-2) unstable; urgency=high
+
+ [YunQiang Su]
+ * refresh and re-enable: mips64-default-n64.diff
+
+ -- YunQiang Su <syq@debian.org> Thu, 16 Jan 2020 23:35:11 +0800
+
+binutils (2.33.50.20200115-1) unstable; urgency=medium
+
+ * New upstream snapshot.
+ * Tighten the build dependency to 2.33.50.20200114-1 for this upload.
+
+ -- Matthias Klose <doko@debian.org> Wed, 15 Jan 2020 21:18:18 +0100
+
+binutils (2.33.50.20200114-1) unstable; urgency=medium
+
+ * New upstream snapshot.
+ * Build on testing for arm64, and upload the binaries.
+
+ -- Matthias Klose <doko@debian.org> Tue, 14 Jan 2020 14:19:00 +0100
+
+binutils (2.33.50.20200111-1) unstable; urgency=medium
+
+ * New upstream snapshot.
+ * Make autopkgtests cross-test-friendly (Steve Langasek).
+
+ -- Matthias Klose <doko@debian.org> Sat, 11 Jan 2020 14:24:29 +0100
+
+binutils (2.33.50.20200107-1) unstable; urgency=medium
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Tue, 07 Jan 2020 23:19:25 +0100
+
+binutils (2.33.50.20200105-2) experimental; urgency=medium
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Sun, 05 Jan 2020 11:33:49 +0100
+
+binutils (2.33.50.20191212-1) experimental; urgency=medium
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Thu, 12 Dec 2019 16:16:13 +0100
+
+binutils (2.33.50.20191205-1) experimental; urgency=medium
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Thu, 05 Dec 2019 21:22:15 +0100
+
+binutils (2.33.50.20191128-1) experimental; urgency=medium
+
+ * New upstream snapshot.
+ * Split out libctf packages.
+ * Save dejagnu log and sum files in binutils-dev.
+
+ -- Matthias Klose <doko@debian.org> Thu, 28 Nov 2019 09:57:31 +0100
+
+binutils (2.33.50.20191121-2) experimental; urgency=medium
+
+ * Fix packaging cross targets.
+
+ -- Matthias Klose <doko@debian.org> Thu, 21 Nov 2019 23:08:45 +0100
+
+binutils (2.33.50.20191121-1) experimental; urgency=medium
+
+ * New upstream snapshot.
+ * Remove the 012_check_ldrunpath_length patch.
+ * Don't apply the mips64-default-n64 patch.
+ * Refresh patches.
+ * Put libctf libctf libraries in libbinutils and binutils-dev for now.
+
+ -- Matthias Klose <doko@debian.org> Thu, 21 Nov 2019 18:50:25 +0100
+
+binutils (2.33.1-6) unstable; urgency=medium
+
+ * Update from the binutils 2.33 branch:
+ - [gas] Implement .cfi_negate_ra_state directive (AArch64).
+
+ -- Matthias Klose <doko@debian.org> Thu, 12 Dec 2019 23:32:03 +0100
+
+binutils (2.33.1-5) unstable; urgency=medium
+
+ * Revert configuring with --enable-mips-fix-loongson3-llsc=yes on mipsel,
+ mips64el, mipsn32el. Causes GCC bootstrap comparison failures.
+
+ -- Matthias Klose <doko@debian.org> Mon, 02 Dec 2019 11:55:09 +0100
+
+binutils (2.33.1-4) unstable; urgency=medium
+
+ * Configure with --enable-mips-fix-loongson3-llsc=yes on mipsel, mips64el,
+ mipsn32el (YunQiang Su).
+ * Enable building mipsel and mips64el targets on arm64 and ppc64el (YunQiang
+ Su). Addresses: #938979.
+
+ -- Matthias Klose <doko@debian.org> Thu, 21 Nov 2019 15:28:14 +0100
+
+binutils (2.33.1-2) unstable; urgency=medium
+
+ * Update from the binutils 2.33 branch:
+ - Arm: Fix out of range conditional branch (PR/24991).
+ - [bfd] Revise import stubs on hppa.
+ - [bfd] Provide 8-byte minimum alignment for .plt section on hppa.
+ * Drop amd64 cross compiler from the build dependencies on x32.
+
+ -- Matthias Klose <doko@debian.org> Sun, 20 Oct 2019 21:28:38 +0200
+
+binutils (2.33.1-1) unstable; urgency=medium
+
+ * Binutils 2.33.1 release.
+
+ -- Matthias Klose <doko@debian.org> Tue, 15 Oct 2019 11:43:46 +0200
+
+binutils (2.33-2) unstable; urgency=medium
+
+ * Update from the binutils 2.33 branch:
+ - Fix PR25079, "ar s" stopped working. Closes: #941921.
+ - PowerPC TLS miscounting PLT for __tls_get_addr.
+ - PowerPC section flag tidy.
+ - PowerPC PIC vs. DLL TLS issues.
+ - PR25046, readelf "Reading xxx bytes extends past end of file for dynamic section".
+ - PR24262, plugin search dir doesn't respect --libdir.
+
+ -- Matthias Klose <doko@debian.org> Wed, 09 Oct 2019 10:42:29 +0200
+
+binutils (2.33-1) unstable; urgency=medium
+
+ * Binutils 2.33 release (taken from the binutils-2_33 tag).
+ * Update from the binutils 2.33 branch:
+ - Fix PR 24942, change objcopy's --set-section-alignment option so that it
+ takes a byte alignment value rather than a power of two alignment value.
+ - x86-64: fix handling of PUSH/POP of segment register. LP: #1843394.
+ * Merge changes from binutils-mipsen.
+ * Bump standards version.
+
+ -- Matthias Klose <doko@debian.org> Tue, 08 Oct 2019 11:43:29 +0200
+
+binutils (2.32.51.20190909-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk (20190909).
+ * Build the mipsel and mips64el cross packages from the binutils-mipsen
+ source package.
+
+ -- Matthias Klose <doko@debian.org> Mon, 09 Sep 2019 08:50:20 +0200
+
+binutils (2.32.51.20190821-2) unstable; urgency=medium
+
+ * Drop build dependency on g++-mips-linux-gnu.
+ * Stop building mips binutils.
+
+ -- Matthias Klose <doko@debian.org> Thu, 22 Aug 2019 09:49:59 +0200
+
+binutils (2.32.51.20190821-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk (20190821).
+ * Update test dependencies for added ppc64el, riscv64 and s390x builds.
+
+ -- Matthias Klose <doko@debian.org> Wed, 21 Aug 2019 11:32:58 +0200
+
+binutils (2.32.51.20190813-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk (20190813).
+ - Fix PR ld/24857: ld: error adding symbols: bad value. Closes: #932847.
+ * binutils-source: Fix ftbfs when with_native is off (YunQiang Su).
+ Closes: #933358.
+
+ -- Matthias Klose <doko@debian.org> Tue, 13 Aug 2019 16:26:14 +0200
+
+binutils (2.32.51.20190727-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk (20190727).
+ - Fix PR ld/24832. Closes: #932287.
+ * Build ppc64el packages on arm64.
+ * Build s390x packages on arm64 and ppc64el.
+ * Build riscv64 packages on arm64 and ppc64el. Closes: #932398.
+ * Bump standards version.
+
+ -- Matthias Klose <doko@debian.org> Sat, 27 Jul 2019 16:58:37 +0200
+
+binutils (2.32.51.20190707-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk (20190707).
+
+ -- Matthias Klose <doko@debian.org> Sun, 07 Jul 2019 12:20:11 +0200
+
+binutils (2.32.51.20190701-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20190701).
+
+ -- Matthias Klose <doko@debian.org> Mon, 01 Jul 2019 13:46:05 +0200
+
+binutils (2.32.51.20190624-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20190624).
+ - Fix PR ld/24704, skiboot link failure. LP: #1833237.
+
+ -- Matthias Klose <doko@debian.org> Mon, 24 Jun 2019 07:59:05 +0000
+
+binutils (2.32.51.20190611-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20190611).
+ * Simplify setting the soname for the various builds.
+
+ -- Matthias Klose <doko@debian.org> Tue, 11 Jun 2019 10:48:30 +0200
+
+binutils (2.32-8) experimental; urgency=medium
+
+ * Snapshot, taken from the 2.32 branch (20190424).
+ - Fix PR ld/24302 (AArch64): When DF_BIND_NOW don't use TLSDESC GOT value.
+ - Fix PR ld/24458 (x86): Also check x86 linker_def for non-shared
+ definition.
+ - AArch64: Add new LDGM/STGM instruction.
+ - AArch64: Update Store Allocation Tag instructions.
+ - AArch64: Fix disassembler bug with out-of-order sections.
+
+ -- Matthias Klose <doko@debian.org> Wed, 24 Apr 2019 09:25:48 +0200
+
+binutils (2.32-7) experimental; urgency=medium
+
+ * Snapshot, taken from the 2.32 branch (20190321).
+ - Fix PR ld/24355, segfault in function called from ppc_finish_symbols.
+ * Demote binutils-<target> from Multi-Arch: foreign to Multi-Arch: allowed
+ (Helmut Grohne). Closes: #920286.
+ * Let binutils-for-host Depends: binutils-<host>:any.
+
+ -- Matthias Klose <doko@debian.org> Thu, 21 Mar 2019 16:23:32 +0100
+
+binutils (2.32-6) experimental; urgency=medium
+
+ * Snapshot, taken from the 2.32 branch (20190313).
+ - S/390: arch13 instruction descriptions.
+ * Fix VCS attributes in the control file. Closes: #915982.
+
+ -- Matthias Klose <doko@debian.org> Wed, 13 Mar 2019 16:12:45 +0100
+
+binutils (2.32-5) experimental; urgency=medium
+
+ * Snapshot, taken from the 2.32 branch (20190213).
+ - S390: Revert "Add support to GNU ld to separate got related plt entries".
+ * binutils-source: Redact the build directory out of the tarball paths.
+ (Andrej Shadura). Closes: #920797.
+
+ -- Matthias Klose <doko@debian.org> Wed, 06 Mar 2019 11:11:50 +0100
+
+binutils (2.32-4) experimental; urgency=medium
+
+ * Remove mips64 build/check dependency.
+ * Fix PR binutils/23843, taken from the trunk.
+ * Fix PR ld/24276, taken from the trunk. Addresses: #923246.
+
+ -- Matthias Klose <doko@debian.org> Wed, 27 Feb 2019 22:34:34 +0100
+
+binutils (2.32-3) experimental; urgency=medium
+
+ * Snapshot, taken from the 2.32 branch (20190213).
+ - Fix PR ld/24151, PR gas/24165.
+ * Stop building cross packages now built by binutils-mipsen.
+
+ -- Matthias Klose <doko@debian.org> Wed, 13 Feb 2019 10:47:43 +0100
+
+binutils (2.32-2) experimental; urgency=medium
+
+ * Snapshot, taken from the 2.32 branch (20190208).
+ - Make inline plt reloc "unsupported for bss-plt" an error (ppc32).
+ - Arm: Backport hlt to all architectures.
+ - SPARC: fix PR ld/18841 (ld test failures).
+ - Visium: fix bogus overflow check on 32-bit hosts.
+ - Visium: align branch absolute instruction for the GR6.
+ * Stop building packages for powerpcspe.
+
+ -- Matthias Klose <doko@debian.org> Sat, 09 Feb 2019 13:12:21 +0100
+
+binutils (2.32-1) experimental; urgency=medium
+
+ * New upstream version.
+
+ -- Matthias Klose <doko@debian.org> Sun, 03 Feb 2019 10:34:56 +0100
+
+binutils (2.31.90.20190119-1) experimental; urgency=medium
+
+ * Snapshot, taken from the binutils 2.32 branch (20190119).
+
+ -- Matthias Klose <doko@debian.org> Sat, 19 Jan 2019 18:30:02 +0100
+
+binutils (2.31.51.20181204-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20181204).
+
+ -- Matthias Klose <doko@debian.org> Tue, 04 Dec 2018 11:20:13 +0100
+
+binutils (2.31.51.20181022-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20181022).
+ * Refresh patches.
+
+ -- Matthias Klose <doko@debian.org> Mon, 22 Oct 2018 12:08:04 +0200
+
+binutils (2.31.1-10) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.31 branch (20181130).
+ - Fix PR ld/23937, powerpc64le local ifunc IRELATIVE relocs are wrong.
+
+ -- Matthias Klose <doko@debian.org> Fri, 30 Nov 2018 13:20:30 +0100
+
+binutils (2.31.1-9) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.31 branch (20181127).
+ - Fix Pr ld/23904, regression in Cortex A53 erratum with PIE.
+ Closes: #911497.
+
+ -- Matthias Klose <doko@debian.org> Tue, 27 Nov 2018 14:25:35 +0100
+
+binutils (2.31.1-8) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.31 branch (20181121).
+ - Fix PR gas/23854 (x86): Disable GOT relaxation with data prefix.
+ - Fix PR ld/23818, when assigning symbol version, hide debug symbols defined
+ in discarded sections from IR objects so that they can be removed later.
+ - ARC updates.
+ - ARM: Skip new binary decode tests on pe targets.
+ - ARM: Fix disassembler crashing on -b binary when thumb file and thumb not
+ forced.
+
+ -- Matthias Klose <doko@debian.org> Fri, 23 Nov 2018 09:02:12 +0100
+
+binutils (2.31.1-7) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.31 branch (20181018).
+ - AArch64: Fix error checking for SIMD udot (by element).
+ - x86: Add Intel ENCLV to assembler and disassembler.
+
+ -- Matthias Klose <doko@debian.org> Thu, 18 Oct 2018 08:54:07 +0200
+
+binutils (2.31.1-6) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.31 branch (20180919).
+ - PR ld/23499: elf: Check for corrupt symbol version info.
+ - Fix Aarch64 bug in warning filtering.
+ - Improve the code in the assembler to detect and reject a duplicate
+ input and output file.
+ * Don't reset CROSS_ARCHS when building in an autopkg tests (as done by
+ the cross-toolchain-base build test).
+
+ -- Matthias Klose <doko@debian.org> Wed, 19 Sep 2018 13:48:13 +0200
+
+binutils (2.31.1-5) unstable; urgency=medium
+
+ * Fix the "build" autopkg test, depending on fakeroot and allowing output
+ on stderr.
+
+ -- Matthias Klose <doko@debian.org> Fri, 31 Aug 2018 11:56:41 +0200
+
+binutils (2.31.1-4) unstable; urgency=medium
+
+ * Rewrite. the "build" autopkg tests not to use the "build-needed"
+ restriction until #906125 is fixed. Closes: #884117.
+ * Build armel and armhf cross binutils on ppc64el.
+
+ -- Matthias Klose <doko@debian.org> Tue, 14 Aug 2018 20:43:44 +0200
+
+binutils (2.31.1-3) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.31 branch (20180814).
+ - Fix PR ld/23428, properly add X86_ISA_1_NEEDED property.
+ - Fix PR ld/23486, properly merge GNU_PROPERTY_X86_ISA_1_USED.
+ - x32: Align the .note.gnu.property section to 4 bytes.
+ - PowerPC64 __tls_get_addr_opt stub .eh_frame fix.
+ - PowerPC64: __tls_get_addr_opt stubs and tocsave optimization.
+ - PR gas/23465, x86: don't mistakenly scale non-8-bit displacements.
+ - PR gold/23455, add --warn-drop-version option; by default, do not warn
+ when discarding version info.
+ - hppa: Fix unwind offset for call_info->start_symbol.
+ * Build arm64 cross binutils on ppc64el.
+
+ -- Matthias Klose <doko@debian.org> Tue, 14 Aug 2018 07:33:39 +0200
+
+binutils (2.31.1-2) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.31 branch (20180726).
+ - S/390: Set the htm flag on PPA.
+ - x86: Add a GNU_PROPERTY_X86_ISA_1_USED note if needed.
+ - x86: Split vcvtps2{,u}qq and vcvttps2{,u}qq.
+
+ -- Matthias Klose <doko@debian.org> Thu, 26 Jul 2018 12:23:07 +0200
+
+binutils (2.31.1-1) unstable; urgency=medium
+
+ * Binutils 2.31.1 release.
+ * Remove the riscv64 build hack. Closes: #903857.
+
+ -- Matthias Klose <doko@debian.org> Wed, 18 Jul 2018 11:58:00 +0200
+
+binutils (2.31-1) unstable; urgency=medium
+
+ * Binutils 2.31 release.
+
+ -- Matthias Klose <doko@debian.org> Mon, 16 Jul 2018 11:40:18 +0200
+
+binutils (2.30.90.20180710-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.31 branch (20180710).
+ - Fix PR ld/23388, configuration with --enable-separate-code on i386.
+ Closes: #903376.
+ - Fix PR ld/23372, Remove x86 ISA properties with empty bits.
+ - Fix PR binutils/23369, read/write flag for these registers on AArch64.
+ - Fix PR binutils/23242, SBO bit in disassembly mask for ldrah on AArch64.
+ - [GOLD] PowerPC .gnu.attributes support.
+ - CVE-2018-8945: PR binutils/22809, objdump segfault.
+
+ -- Matthias Klose <doko@debian.org> Tue, 10 Jul 2018 11:44:16 +0200
+
+binutils (2.30.90.20180705-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.31 branch (20180705).
+ - Install the diagnostics.h header. Closes: #902765, #902823.
+
+ -- Matthias Klose <doko@debian.org> Thu, 05 Jul 2018 17:55:14 +0200
+
+binutils (2.30.90.20180627-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.31 branch (20180627).
+ - CVE-2018-10372: PR binutils/23064, Fix illegal memory access when parsing
+ corrupt DWARF information.
+ - CVE-2018-10373: PR binutils/23065, nm segfault.
+ - CVE-2018-10534: PR binutils/23110, objcopy segfault.
+ - CVE-2018-10535: PR binutils/23113, objcopy segfault.
+
+ -- Matthias Klose <doko@debian.org> Wed, 27 Jun 2018 21:55:43 +0200
+
+binutils (2.30.52.20180613-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20180613).
+
+ -- Matthias Klose <doko@debian.org> Wed, 13 Jun 2018 14:20:30 +0200
+
+binutils (2.30.51.20180512-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20180512).
+
+ -- Matthias Klose <doko@debian.org> Sat, 12 May 2018 11:45:10 -0400
+
+binutils (2.30-22) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180622.
+ - x86 gas: Replace CET bit with IBT and SHSTK bits.
+
+ -- Matthias Klose <doko@debian.org> Fri, 22 Jun 2018 08:11:21 +0200
+
+binutils (2.30-21) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180529.
+ - x86-64: Add TLSDESC fields to elf_x86_lazy_plt_layout.
+ - PR binutils/23199, mark section in a section group with SHF_GROUP.
+ - PR ld/23194, x86: Don't set eh->local_ref to 1 for versioned symbol.
+ - PR ld/23189, x86: Don't set eh->local_ref to 1 for linker defined symbols.
+ - PR binutils/23199, Invalid SHT_GROUP entry leads to group confusion.
+ * Fix PR gprof/23056, memory corruption in gprof. LP: #1763098.
+ * Fix PR binutils/23054, memory corruption in as. LP: #1763096.
+ * Fix PR ld/23055, memory corruption in ld. LP: #1763094.
+
+ -- Matthias Klose <doko@debian.org> Tue, 29 May 2018 15:46:35 +0200
+
+binutils (2.30-20) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180516.
+ - Fix PR binutils/23109, disassembly mask for vector sdot on AArch64.
+ - Fix uninitialised memory acccess in COFF bfd backend.
+ - Update Portuguese translations.
+
+ -- Matthias Klose <doko@debian.org> Wed, 16 May 2018 10:21:19 -0400
+
+binutils (2.30-19) unstable; urgency=medium
+
+ * Build-depend on procps.
+
+ -- Matthias Klose <doko@debian.org> Thu, 03 May 2018 07:44:55 +0200
+
+binutils (2.30-17) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180502.
+ - Fix PR ld/23123, PR ld/22374, PowerPC32 ifunc regression.
+ - AArch64: Fix the mask for the sqrdml(a|s)h instructions.
+ * Fix unintialized memory in aarch64 opcodes, taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Wed, 02 May 2018 14:11:28 +0200
+
+binutils (2.30-16) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180425.
+ - Fix PR ld 22782, x86: Remove the unused _GLOBAL_OFFSET_TABLE_.
+ - Update spanish and russian translations.
+ * Add amd64, i386, x32 and riscv64 cross compilers as build (test)
+ dependencies.
+
+ -- Matthias Klose <doko@debian.org> Wed, 25 Apr 2018 06:53:58 +0200
+
+binutils (2.30-15) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180408.
+ * Only build the basic package when running the autopkg tests.
+ Closes: #884117.
+
+ -- Matthias Klose <doko@debian.org> Sun, 08 Apr 2018 22:55:34 +0200
+
+binutils (2.30-14) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180405.
+ - Fix PR binutils/23025, Clear vex instead of vex.evex (x86).
+ * Fix PR gold/22770, MIPS: Fix GOT page counter in multi-got links,
+ taken from the trunk. Closes: #886222.
+ * Fix PR ld/23030 (stop the IA64 linker from removing unwind tables
+ when garbage collecting), taken from the trunk. Closes: #894915, #894719.
+ * More work arounds to build natively on riscv64.
+
+ -- Matthias Klose <doko@debian.org> Thu, 05 Apr 2018 19:13:24 +0200
+
+binutils (2.30-13) unstable; urgency=medium
+
+ * Build cross binutils for i386 and x32 on arm64 and ppc64el.
+
+ -- Matthias Klose <doko@debian.org> Wed, 04 Apr 2018 10:32:15 +0200
+
+binutils (2.30-11) unstable; urgency=medium
+
+ * Filter out the host architecture when passed as a cross architecture.
+
+ -- Matthias Klose <doko@debian.org> Sun, 01 Apr 2018 17:01:49 +0200
+
+binutils (2.30-10) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180330.
+ - Fix PR 22773, ARM assembler's parsing of an illegal ORR instruction.
+ - Fix PR gold/22868, PR ld/22972 on SPARC, .
+ - PR ld/23000, x86-64: Add ENDBR64 to the TLSDESC PLT entry.
+
+ -- Matthias Klose <doko@debian.org> Fri, 30 Mar 2018 18:55:59 +0800
+
+binutils (2.30-9) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180325.
+ - Fix PowerPC64 out-of-line save/restore functions.
+ - Remove unnecessary power9 group terminating nop.
+ - Set non_ir_ref_dynamic if a symbol is made dynamic.
+ - Fix PR ld/22836, "-r -s" doesn't work with -g3 using GCC 7.
+ * Fix amd64, i386 and x32 cross builds.
+
+ -- Matthias Klose <doko@debian.org> Sun, 25 Mar 2018 14:53:41 +0800
+
+binutils (2.30-8) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180318.
+ - [ARM] Fix bxns mask.
+ - Extend the fix for PR ld/20882.
+ * Fix PowerPC64 out-of-line save/restore functions. Closes: #886264.
+ * Revert the 2.30-7 change.
+
+ -- Matthias Klose <doko@debian.org> Sun, 18 Mar 2018 12:51:40 +0800
+
+binutils (2.30-7) unstable; urgency=medium
+
+ * Upload without build dependencies on the cross compilers and don't run
+ the testsuite for this upload.
+
+ -- Matthias Klose <doko@debian.org> Thu, 08 Mar 2018 12:04:10 +0700
+
+binutils (2.30-6) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180308.
+ - Fix PR ld/15904, linker error with --no-keep-memory.
+ - Enable link time garbage collection for the IA64 target. Closes: #890909.
+ - Fix PR gas/22014, memory corruption in MIPS assembler.
+ - Fix PR ld/22758, a bug that would place executable and non-executables
+ pages in the same segment.
+ - Fix PR ld/22832 on SPARC.
+ - Fix AArch32 build attributes for Armv8.4-A.
+ - Update translations.
+ * CVE-2018-7208: Fix PR binutils/22741, taken from the trunk.
+ * CVE-2018-7568: Fix PR binutils/22894, taken from the trunk.
+ * CVE-2018-7569: Fix PR binutils/22895, taken from the trunk.
+ * CVE-2018-7642: Fix PR binutils/22887, taken from the trunk.
+ * CVE-2018-7643: Fix PR binutils/22905, taken from the trunk.
+ * CVE-2018-7570: PR binutils/22881 needs a proper backport.
+ * Update package descriptions for binutils-<target>. Closes: #891377.
+ * Build binutils-for-host for TARGET (Helmut Grohne). Closes: #891863.
+
+ -- Matthias Klose <doko@debian.org> Thu, 08 Mar 2018 09:56:54 +0700
+
+binutils (2.30-5) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180215.
+ - gas: xtensa: fix trampoline placement.
+ - Fix PR gas/22738 (.dc.a directive has wrong size on SPARC 64-bit).
+ - Fix GOT relocation overflow on SPARC. Closes: #890359.
+ * strings --include-all-whitespace doesn't take an argument. Closes: #887894.
+
+ -- Matthias Klose <doko@debian.org> Thu, 15 Feb 2018 08:20:04 +0700
+
+binutils (2.30-4) unstable; urgency=high
+
+ * Update, taken from the 2.30 branch 20180209.
+ - Fix PR binutils/22788 (CVE-2018-6872).
+ * binutils-multiarch: Add riscv64 support.
+ * Bump dpkg version to a version supporting riscv64.
+
+ -- Matthias Klose <doko@debian.org> Fri, 09 Feb 2018 19:24:28 +0100
+
+binutils (2.30-3) unstable; urgency=high
+
+ * Update, taken from the 2.30 branch 20180208.
+ - Remove speculation barrier support, remove --speculate-indirect-jumps
+ support (PPC).
+ - Fix PR ld/22764.
+ * CVE-2018-6323: Fix PR binutils/22746, taken from the trunk.
+ * CVE-2018-6543: Fix PR binutils/22769, taken from the trunk.
+ * CVE-2018-6759: Fix PR binutils/22794, taken from the trunk.
+ * Build riscv64 cross packages. This is using a hack, making binutils
+ not building natively on riscv64. At the mercy of a dpkg update
+ to handle riscv64 in stretch ...
+
+ -- Matthias Klose <doko@debian.org> Thu, 08 Feb 2018 10:22:10 +0100
+
+binutils (2.30-2) unstable; urgency=medium
+
+ * Update, taken from the 2.30 branch 20180205.
+ - Fix PR ld/22762.
+ - gold: Add support for DWARF-4 line number tables.
+ - Update Brazillian portuguese and Russian translations.
+ * Apply approved patch for PR ld/22764 (AArch64). LP: #1746765.
+ Closes: #888789.
+ * Fix PR binutils/22734, taken from the trunk. Closes: #887729.
+
+ -- Matthias Klose <doko@debian.org> Mon, 05 Feb 2018 16:22:40 +0100
+
+binutils (2.30-1) unstable; urgency=medium
+
+ * Binutils 2.30 release.
+
+ -- Matthias Klose <doko@debian.org> Mon, 29 Jan 2018 14:29:38 +0100
+
+binutils (2.29.90.20180122-1) unstable; urgency=medium
+
+ * Snapshot, taken from the binutils 2.30 branch (20180122).
+ * Security issues addressed in 2.30: CVE-2017-13716, CVE-2017-14930,
+ CVE-2017-14932, CVE-2017-14933, CVE-2017-14934, CVE-2017-14938,
+ CVE-2017-14939, CVE-2017-14940, CVE-2017-15020, CVE-2017-15021,
+ CVE-2017-15022, CVE-2017-15023, CVE-2017-15024, CVE-2017-15025,
+ CVE-2017-15225, CVE-2017-15938, CVE-2017-15996, CVE-2017-16826,
+ CVE-2017-16827, CVE-2017-16828, CVE-2017-16829, CVE-2017-16830,
+ CVE-2017-16831, CVE-2017-16832, CVE-2017-17080, CVE-2017-17121,
+ CVE-2017-17122, CVE-2017-17123, CVE-2017-17124, CVE-2017-17125,
+ CVE-2017-17126.
+
+ -- Matthias Klose <doko@debian.org> Tue, 23 Jan 2018 04:11:38 +0100
+
+binutils (2.29.51.20180110-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20180110).
+
+ -- Matthias Klose <doko@debian.org> Wed, 10 Jan 2018 16:54:44 +0100
+
+binutils (2.29.51.20171219-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20171219).
+
+ -- Matthias Klose <doko@debian.org> Tue, 19 Dec 2017 14:50:11 +0100
+
+binutils (2.29.51.20171208-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20171208).
+ * binutils-source: Depend on python3 instead of python.
+ * Override m68k, powerpcspe and m68k buildd admins to run the testsuite.
+ * Build binutils-x86-64-linux-gnu on arm64 and ppc64el. See #883769.
+ * Revived from the tombs, build a binutils-ia64-linux-gnu package.
+
+ -- Matthias Klose <doko@debian.org> Fri, 08 Dec 2017 15:19:09 +0100
+
+binutils (2.29.51.20171128-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20171128).
+
+ -- Matthias Klose <doko@debian.org> Tue, 28 Nov 2017 08:59:33 +0100
+
+binutils (2.29.1-13) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20180105.
+ - Fix PR ld/22626, invalid dynindx used for dynamic relocs against
+ section symbols.
+ * Fix cross builds, use host tools (Helmut Grohne). Closes: #883865.
+
+ -- Matthias Klose <doko@debian.org> Fri, 05 Jan 2018 23:44:48 +0100
+
+binutils (2.29.1-12) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20171212.
+ - Fix PR binutils/21118, don't mask X_add_number containing
+ a register number.
+ * Revived from the tombs, build a binutils-ia64-linux-gnu package.
+
+ -- Matthias Klose <doko@debian.org> Wed, 13 Dec 2017 01:10:25 +0100
+
+binutils (2.29.1-11) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20171208.
+ - Fix PR gold/22309.
+ * Build binutils-x86-64-linux-gnu on arm64 and ppc64el. See #883769.
+
+ -- Matthias Klose <doko@debian.org> Fri, 08 Dec 2017 12:41:16 +0100
+
+binutils (2.29.1-10) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20171201.
+ - Fix PR gold/22233, segfault in relocate_erratum_stub on aarch64.
+ - Update local fix for PR gold/20765, internal error in fix_errata on
+ aarch64 (Peter Smith). LP: #1638902.
+ * binutils-source: Depend on python3 instead of python.
+ * Override m68k, powerpcspe and m68k buildd admins to run the testsuite.
+
+ -- Matthias Klose <doko@debian.org> Fri, 01 Dec 2017 02:34:24 +0100
+
+binutils (2.29.1-9) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20171128.
+ - Fix PR ld/22431, powerpc64 ld segfault when .plt discarded.
+ - Fix DWARF reader to use correct size for DW_FORM_ref_addr.
+
+ -- Matthias Klose <doko@debian.org> Tue, 28 Nov 2017 07:02:24 +0100
+
+binutils (2.29.1-8) unstable; urgency=medium
+
+ * Apply proposed patch for PR gold/22233. Closes: #876786.
+
+ -- Matthias Klose <doko@debian.org> Mon, 13 Nov 2017 15:45:39 +0100
+
+binutils (2.29.1-7) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20171107.
+ - Fix PR ld/22397, PR ld/22300, PR binutils/22348.
+ * Use dwz -m to compress the -dbg packages.
+ * Add a plethora of mips r6 packages ... Closes: #881060.
+ * Provide "long" description for -dbg packages. Closes: #880001.
+
+ -- Matthias Klose <doko@debian.org> Wed, 08 Nov 2017 12:17:38 +0100
+
+binutils (2.29.1-6) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20171022.
+ - [GOLD] Fix powerpc64 optimization of TOC accesses.
+ * Do the extra/optional dance ...
+ * Build debug packages. Closes: #863728.
+ * Fix stripping the binutils-<native triplet> packages.
+
+ -- Matthias Klose <doko@debian.org> Sun, 22 Oct 2017 22:41:34 +0200
+
+binutils (2.29.1-5) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20171017.
+ - Fix PR binutils/22245, undefined behavior in bfd_set_error.
+ - Correct ctor/dtor in init_array/fini_array error value.
+ * Stop installing i586 compat links for i386 builds. Closes: #877791.
+ * Build a binutils-i686-linux-gnu package on amd64 and x32 too.
+
+ -- Matthias Klose <doko@debian.org> Tue, 17 Oct 2017 11:29:33 +0200
+
+binutils (2.29.1-4) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20171001.
+ - PR ld/22220, BFD linker wrongly marks symbols as PREVAILING_DEF_IRONLY.
+ - PR ld/22199, x86-64: Don't pass output_bfd to info->callbacks->minfo.
+ - [GOLD] Set non-exec stack for ppc64.
+ * Move man/{go,}ld.1.gz to binutils-common (Helmut Grohne). Closes: #877266.
+ * Build-depend on target g++ compilers instead of target gcc compilers.
+ * Fail when string merge can't alloc memory, taken from the trunk.
+ Closes: #874674.
+ * Fix legacy cross builds. Closes: #876677.
+
+ -- Matthias Klose <doko@debian.org> Sun, 01 Oct 2017 20:16:22 +0200
+
+binutils (2.29.1-3) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20170923.
+ - gold: Add --no-relax option.
+ - readelf: Handle E_MIPS_MACH_5900.
+ - gold: PowerPC function address in non-PIC.
+ - Fix PR binutils/22163, PR binutils/22170.
+ * libbinutils: Fix generation of upper dependency for two-number versions.
+ * debian/rules. Remove the old cross build targets.
+
+ -- Matthias Klose <doko@debian.org> Sat, 23 Sep 2017 14:00:50 +0200
+
+binutils (2.29.1-1) unstable; urgency=medium
+
+ * binutils 2.29.1 release.
+ * Convert to package source format 3.0 (quilt).
+
+ -- Matthias Klose <doko@debian.org> Wed, 20 Sep 2017 10:11:56 +0200
+
+binutils (2.29-13) unstable; urgency=medium
+
+ * Build again all cross packages.
+
+ -- Matthias Klose <doko@debian.org> Tue, 19 Sep 2017 13:11:06 +0200
+
+binutils (2.29-12) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20170919.
+ - Fix PR ld/21441, PowerPC64 stubs don't match calculated size.
+ Closes: #876134.
+ - Fix PR ld/22048, Incorrect .eh_frame section in libc.so.
+ - Fix PR ld/22150, ld keeps a version reference for gc'd symbols.
+ Closes: #874585. LP: #1715641.
+ - Fix PR ld/22148, Integer overflow in elf64-x86-64.c.
+ - Fix PR ld/21924, Require GCC 5 or above for 3 x86 tests.
+ * Fix installation of test summaries.
+ * Compare test summaries for cross builds.
+
+ -- Matthias Klose <doko@debian.org> Tue, 19 Sep 2017 13:04:07 +0200
+
+binutils (2.29-10) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20170915.
+ - Fix PR binutils/22047 (CVE-2017-14129), PR binutils/22018.
+ * gold on 32bit archs: Release mapped files after each pass.
+ * Build-depend on cross compilers to run the tests for the binutils
+ cross packages.
+ * Install the ldscripts into /usr/lib/<multiarch>/ldscripts and move
+ ldscripts into the binutils-<triplet> packages.
+ * Install the unprefixed manual packages into binutils-common and
+ derive the timestamps from the debian/changelog entry.
+ * binutils-<triplet>: Remove dependency on binutils.
+
+ -- Matthias Klose <doko@debian.org> Fri, 15 Sep 2017 11:55:58 +0200
+
+binutils (2.29-9) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20170906.
+ - Fix PR binutils/22032, PR binutils/21786 (CVE-2017-12451),
+ PR binutils/21787 (CVE-2017-12448), PR binutils/21813 (CVE-2017-12450,
+ CVE-2017-12452, CVE-2017-12453, CVE-2017-12454), PR ld/21824,
+ PR binutils/21916, PR ld/21441, PR ld/22067, PR ld/22064, PR ld/22061,
+ PR binutils/22059 (CVE-2017-14128), PR binutils/21933 (CVE-2017-12799),
+ PR binutils/22060, PR binutils/22058 (CVE-2017-14130), PR binutils/21995,
+ PR binutils/21861, PR binutils/21813 (CVE-2017-12456), PR binutils/21909,
+ PR binutils/21820, PR binutils/21990, PR binutils/21994, PR ld/21441,
+ PR ld/22064, PR ld/22061, PR lto/81968, PR lto/81968, PR lto/81925.
+ * Fix typo in control.in interpolation when TARGET is non-empty (Helmut
+ Grohne). Addresses: #873387.
+
+ -- Matthias Klose <doko@debian.org> Wed, 06 Sep 2017 08:14:12 +0200
+
+binutils (2.29-8) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20170830.
+ - Fix PR gold/21868. Closes: #830540, #869768.
+ - Fix address violation issues when parsing corrupt binaries.
+ - PR gold/21847: Provide symbol flag for PowerPC64 localentry:0 tracking.
+
+ -- Matthias Klose <doko@debian.org> Wed, 30 Aug 2017 08:03:09 +0200
+
+binutils (2.29-7) unstable; urgency=high
+
+ * Fix binutils dependency on binutils-<triplet> on non amd64 architectures.
+
+ -- Matthias Klose <doko@debian.org> Wed, 23 Aug 2017 23:51:26 +0200
+
+binutils (2.29-6) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20170823.
+ - Fix PR ld/21988, PR ld/21964, PR ld/21910.
+ * readelf: Add patch to read Infinity notes.
+ * Reorganize packages to provide binutils-for-host/binutils-for-build
+ packages (Helmut Grohne). Closes: #842439.
+ - Break out a binutils-common package.
+ - Refactor code to build with DEB_BUILD_OPTIONS=nogold.
+ - Rename gold, ld.gold, ld.bfd to their triplet prefixed equivalents.
+ - Remove shlibs files for hppa64 and cross packages.
+ - Set NATIVE_ARCHS explicitly.
+ - Split out a libbinutils package and binutils-<triplet> packages.
+ - Build binutils-for-host and binutils-for-build packages.
+ * Fix some issues in the above patches.
+ * Mark binutils-common and libbinutils as M-A: same.
+ * Remove obsolete Breaks/Conflicts/Replaces.
+ * Replace FIXME markers with TODO markers. Silly lintian ...
+
+ -- Matthias Klose <doko@debian.org> Wed, 23 Aug 2017 12:01:12 +0200
+
+binutils (2.29-5) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20170820.
+ - Fix PR binutils/21962, buffer overrun when parsing a corrupt tekhex
+ binary.
+ - Fix PR ld/18808: [AArch64] Skip IFUNC relocations in debug sections.
+ - Fix PR ld/18841: [AArch64] ifunc relocation ordering.
+ - [AArch64] Turn lr, fp, ip0 and ip1 into proper aliases.
+ - Fix PR ld/21923.
+ * Build gold on s390x. LP: #1709873.
+
+ -- Matthias Klose <doko@debian.org> Sun, 20 Aug 2017 19:00:03 +0200
+
+binutils (2.29-4) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20170804.
+ * Fix PR ld/21884, taken from the trunk. Do not choose a non-ELF format
+ input file to hold the linker created GOT sections. Closes: #870611.
+
+ -- Matthias Klose <doko@debian.org> Mon, 07 Aug 2017 08:46:12 -0400
+
+binutils (2.29-3) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20170802.
+ - S390 testsuite fixes.
+ * Fix PR ld/21884, taken from the trunk. Closes: #870343.
+
+ -- Matthias Klose <doko@debian.org> Wed, 02 Aug 2017 14:16:35 +0200
+
+binutils (2.29-2) unstable; urgency=medium
+
+ * Update, taken from the 2.29 branch 20170731.
+ - Fix PR 21847, PowerPC64 --plt-localentry issues.
+ - Fix PR gold/21857, PR ld/21849 (AVR).
+ * Remove Daniel as an uploader. Closes: #869305.
+
+ -- Matthias Klose <doko@debian.org> Mon, 31 Jul 2017 09:17:30 +0200
+
+binutils (2.29-1) unstable; urgency=medium
+
+ * binutils 2.29 release.
+
+ -- Matthias Klose <doko@debian.org> Tue, 25 Jul 2017 11:02:19 +0200
+
+binutils (2.28.90.20170718-1) experimental; urgency=medium
+
+ * Snapshot, taken from the 2.29 branch (20170718).
+
+ -- Matthias Klose <doko@debian.org> Tue, 18 Jul 2017 11:26:15 +0200
+
+binutils (2.28.51.20170703-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20170703).
+ - Addresses CVE-2017-9040, CVE-2017-9042, CVE-2017-9043, CVE-2017-9044,
+ CVE-2017-9742, CVE-2017-9743, CVE-2017-9744, CVE-2017-9745,
+ CVE-2017-9746, CVE-2017-9747, CVE-2017-9748, CVE-2017-9749,
+ CVE-2017-9750, CVE-2017-9751, CVE-2017-9752, CVE-2017-9753,
+ CVE-2017-9754, CVE-2017-9755, CVE-2017-9756, CVE-2017-9954,
+ CVE-2017-9955. Closes: #863674.
+
+ -- Matthias Klose <doko@debian.org> Mon, 03 Jul 2017 16:08:53 +0200
+
+binutils (2.28.51.20170627-1) experimental; urgency=high
+
+ * Snapshot, taken from the trunk (20170627).
+
+ -- Matthias Klose <doko@debian.org> Tue, 27 Jun 2017 14:53:24 +0200
+
+binutils (2.28.51.20170620-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk (20170620).
+ - Addresses issues CVE-2017-9040, CVE-2017-9042, CVE-2017-9043.
+ - ILP32 patches applied upstream. Closes: #861833.
+ - Fixes PR ld/21334 (MIPS), undefined hidden symbols causing assertion
+ failure. Closes: #858898.
+ * Configure with --enable-new-dtags.
+ * Don't revert the commit causing PR 21074.
+
+ -- Matthias Klose <doko@debian.org> Tue, 20 Jun 2017 15:32:31 +0200
+
+binutils (2.28-6) unstable; urgency=medium
+
+ * Update, taken from the 2.28 branch 20170615.
+ - Fix PR ld/19579 (AArch64), handling of relocations against common symbols.
+ Closes: #863152.
+ - Fix PR ld/21523 (ARM32).
+ - Fix PR ld/21529 (ARM32), internal error in linker.
+ - Fix PR ld/21404 (AVR).
+ - Fix PR binutils/21034.
+ - Fix PR gold/21503, gold not creating linker stub symbols on ppc64.
+ - Remove linker option: -z prefix-nop (x86).
+ * Fix several crashes. Addresses: #863674.
+ - PR binutils/21343, readelf crash. CVE-2017-9038.
+ - PR binutils/21345, readelf crash. CVE-2017-9039.
+ - PR binutils/21344, readelf crash. CVE-2017-9041.
+
+ -- Matthias Klose <doko@debian.org> Thu, 15 Jun 2017 17:46:47 +0200
+
+binutils (2.28-5) unstable; urgency=medium
+
+ * Update, taken from the 2.28 branch 20170510.
+ - RISC-V updates.
+ - Fix PR ld/21334 (MIPS).
+ - VxWorks fix.
+ - Fix PR ld/16044 (CRIS).
+ * Fix PR binutils/21412, global-buffer-overflow in objcopy. CVE-2017-8393.
+ * Fix PR binutils/21414, segfault in objcopy. CVE-2017-8394.
+ * Fix PR binutils/21431, objcopy segfault - null pointer dereferencing.
+ CVE-2017-8395.
+ * Fix PR binutils/21432, heap buffer overflow in objdump. CVE-2017-8396.
+ * Fix PR binutils/21434, heap buffer overflow in objdump. CVE-2017-8397.
+ * Fix PR binutils/21438, heap buffer overflow in printf_common.
+ CVE-2017-8398.
+ * Fix PR binutils/21440, prevent memory exhaustion from a corrupt PE binary
+ with an overlarge number of relocs. CVE-2017-8421.
+ * gold (SPARC): Fix assertion failure relaxing TLS for position-independent
+ executables. Closes: #862017.
+
+ -- Matthias Klose <doko@debian.org> Wed, 10 May 2017 12:12:53 +0200
+
+binutils (2.28-4) unstable; urgency=medium
+
+ * Update, taken from the 2.28 branch 20170418.
+ - Fix PR ld/21233: Avoid sweeping forced-undefined symbols in section GC.
+ - BFD fix.
+ - Fix PR ld/19579, PR ld/21306, link error with PIE on s390x.
+ * Fix PR binutils/21342, null pointer dereferences when using a link built
+ with clang. Closes: #859989. CVE-2017-7614.
+
+ -- Matthias Klose <doko@debian.org> Tue, 18 Apr 2017 08:08:02 +0630
+
+binutils (2.28-3) unstable; urgency=medium
+
+ * Update, taken from the 2.28 branch 20170405.
+ - RISC-V updates.
+ - Fix PR binutils/21303 (PPC), objdump doesn't show e200z4 insns.
+ - S/390: Remove vx2 facility flag.
+ - Update -maltivec and -mvsx options to only enable their oldest
+ instructions (PPC).
+ - Add support for the new 'lnia' extended mnemonic (PPC).
+ - Fix ld uninitialized read of script ASSERT data structure.
+ * Fix incorrect library search order on PowerPC, taken from the trunk.
+ * Fix PR ld/21233 (MIPS only), taken from the trunk. Closes: #857017.
+ * Fix a french translation. Closes: #859503.
+ * Fix PR binutils/21157, handling of corrupt STABS enum type strings.
+ Closes: #858324. CVE-2017-7210.
+ * Fix PR binutils/21137, readelf writing to illegal addresses.
+ Closes: #858264. CVE-2017-6965.
+ * Fix PR binutils/21156, illegal memory accesses in readelf.
+ Closes: #858256. CVE-2017-6969.
+ * Fix PR binutils/21139, read-after-free error in readelf.
+ Closes: #858263. CVE-2017-6966.
+ * Fix PR binutils/21135, invalid read of section contents.
+ Closes: #858323. CVE-2017-7209.
+ * Fix PR demangler/70909, libiberty Demangler segfaults. CVE-2016-4491.
+
+ -- Matthias Klose <doko@debian.org> Wed, 05 Apr 2017 17:48:03 +0200
+
+binutils (2.28-2) unstable; urgency=medium
+
+ * Update, taken from the 2.28 branch 20170307.
+ - Fix PR ld/20519, PR binutils/21224, PR binutils/21124 (all PPC).
+
+ -- Matthias Klose <doko@debian.org> Tue, 07 Mar 2017 11:09:19 +0100
+
+binutils (2.28-1) unstable; urgency=medium
+
+ * binutils 2.28 release.
+ - S/390: Add support for new cpu architecture - arch12.
+ - S/390: Issue error for overflowing relocs.
+ - Fix PR gas/20744 (PPC32): Correct VLE 16D and SDAREL relocations.
+ - Fix PowerPC ld segfault on script discarding dynamic sections.
+ - Sync libiberty sources with GCC mainline. Fixes PR PR c++/70182,
+ PR c++/77489, PR c++/78761.
+ - Nios2 dynobj handling fixes.
+ - Don't make dynamic .data.rel.ro SEC_READONLY.
+ - PowerPC addpcis fix.
+ - RISC-V updates.
+ - [AArch64] Additional SVE instructions, add a "compnum" feature,
+ add SVE system registers, fix +sve documentation, add separate
+ feature flag for weaker release consistent load insns.
+ * Don't install windows related man pages in cross packages. Closes: #855630.
+ * Fix ld.1 symlink for targets without gold.
+
+ -- Matthias Klose <doko@debian.org> Thu, 02 Mar 2017 14:39:24 +0100
+
+binutils (2.27.90.20170221-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the binutils 2.28 branch.
+ - Fix Alpha executables segfaulting when linked with -z,now.
+ * Don't install windows related man pages in cross packages. Closes: #855630.
+ * Don't install the embedspu binary for powerpcspe. Closes: #850691.
+
+ -- Matthias Klose <doko@debian.org> Tue, 21 Feb 2017 13:06:04 +0100
+
+binutils (2.27.90.20170218-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the binutils 2.28 branch.
+ - Fix PR ld/21000, PR ld/21132 (closes: #855095).
+ - Fix powerpc testsuite source errors.
+ - Fix PR ld/21168, i386: Allow "lea foo@GOT, %reg" in PIC
+ - opcodes: Fix use after free in cgen instruction lookup.
+ - MIPS/BFD: Respect the ELF gABI dynamic symbol table sort requirement.
+ - MIPS/BFD: Use `bfd_size_type' for dynamic symbol table indices.
+ - MIPS/BFD: Streamline hash table references in `mips_elf_sort_hash_table'.
+ - MIPS/BFD: Fix assertion in `mips_elf_sort_hash_table'.
+ - POWER9: Add scv/rfscv instruction support.
+ - RiscV updates.
+
+ -- Matthias Klose <doko@debian.org> Sat, 18 Feb 2017 05:37:06 +0100
+
+binutils (2.27.90.20170205-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the binutils 2.28 branch.
+ - MIPS/LD/testsuite: Correct relocation addends in VxWorks tests.
+ - MIPS/LD/testsuite: Fix a `tls-multi-got-1-1.s' build failure.
+ - MIPS: Add options to control branch ISA checks.
+ - MIPS/GAS/testsuite: Convert branch local list tests to dump tests.
+ - Fix PR ld/20995 for cris-linux.
+ - gold: Fix PPC64 TOC indirect to TOC relative segfault.
+ - Fix PR ld/21000, support -z relro on hppa. Other hppa updates.
+ - PR binutils/19935: Fix fallout from now-default initfini-array.
+
+ -- Matthias Klose <doko@debian.org> Sun, 05 Feb 2017 21:05:07 +0100
+
+binutils (2.27.90.20170124-2) unstable; urgency=medium
+
+ * Revert the commit causing PR 21074. Works around #852035.
+
+ -- Matthias Klose <doko@debian.org> Thu, 26 Jan 2017 18:09:09 +0100
+
+binutils (2.27.90.20170124-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the binutils 2.28 branch.
+ - Fix PR gold/21054 (closes: #851736).
+
+ -- Matthias Klose <doko@debian.org> Tue, 24 Jan 2017 15:24:49 +0100
+
+binutils (2.27.90.20170118-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the binutils 2.28 branch.
+ - Fix PR binutils/21059, PR gas/20992, PR gas/20649,
+ PR binutils/20828 (closes: #844227).
+
+ -- Matthias Klose <doko@debian.org> Wed, 18 Jan 2017 20:05:43 +0100
+
+binutils (2.27.90.20170114-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the binutils 2.28 branch.
+ - Fix PR ld/21038, PR ld/20830, PR gold/21040.
+ * Apply proposed patch for PR binutils/20828 (mips). Addresses: #844227.
+
+ -- Matthias Klose <doko@debian.org> Sat, 14 Jan 2017 11:43:57 +0100
+
+binutils (2.27.90.20170113-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the binutils 2.28 branch.
+ - Fix PR binutils/20876 (closes: #838875), PR gold/21040,
+ PR gold/21039.
+
+ -- Matthias Klose <doko@debian.org> Fri, 13 Jan 2017 13:31:53 +0100
+
+binutils (2.27.90.20170109-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the binutils 2.28 branch.
+ - Fix PR ld/20989.
+
+ -- Matthias Klose <doko@debian.org> Mon, 09 Jan 2017 11:03:34 +0100
+
+binutils (2.27.90.20161231-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the binutils 2.28 branch.
+ - Fix PR ld/20995, PR binutils/20464, PR binutils/14625, PR gas/10946,
+ PR gold/20996, PR gold/17643.
+
+ -- Matthias Klose <doko@debian.org> Sat, 31 Dec 2016 02:10:21 +0100
+
+binutils (2.27.51.20161220-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+ - Fix PR ld/20968 (closes: #848731), PR ld/20908, PR gold/20949,
+ PR gold/14676, PR gold/20983, PR gold/20976, PR gold/20749,
+ PR gold/20522, PR gold/14676, PR gold/16711, PR gold/20717, PR c++/78252.
+
+ -- Matthias Klose <doko@debian.org> Tue, 20 Dec 2016 09:11:49 +0100
+
+binutils (2.27.51.20161212-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+ - Implements --push-state/--pop-state for gold.
+ - Fix PR ld/20908, PR ld/20909, PR gas/20898, PR gas/20897, PR gold/20717,
+ PR gold/20834, PR gold/18989, PR ld/20910, PR ld/20911, PR ld/20912,
+ PR ld/20932, PR binutils/20931, PR binutils/20929, PR binutils/20905,
+ PR binutils/20907, PR binutils/20921, PR binutils/20922, PR ld/20925,
+ PR ld/20924, PR binutils/20930, PR ld/20923, PR gas/20901, PR gas/20896,
+ PR gas/20902, PR gas/20904, PR gold/20717, PR gold/16711, PR gold/20878,
+ PR ld/20906.
+
+ -- Matthias Klose <doko@debian.org> Mon, 12 Dec 2016 13:49:47 +0100
+
+binutils (2.27.51.20161201-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+ - Update PR ld/20815 (closes: #845690).
+ - Fix PR ld/20868 (AArch64), PR ld/16720 (mips), PR binutils/20891,
+ PR binutils/20892, PR ld/20886 (PPC64), PR gas/20895, PR binutils/20637,
+ PR binutils/20893.
+
+ -- Matthias Klose <doko@debian.org> Thu, 01 Dec 2016 15:55:10 +0100
+
+binutils (2.27.51.20161127-1) unstable; urgency=high
+
+ * New upstream snapshot, taken from the trunk.
+ - Fix PR target/20737 (ARM32), PR ld/20858.
+ * Revert the fix for PR ld/20815. Addresses: #845690.
+
+ -- Matthias Klose <doko@debian.org> Sun, 27 Nov 2016 21:00:36 +0100
+
+binutils (2.27.51.20161124-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+ - Fix PR ld/20815, PR gas/20744, PR gas/20827, PR gold/20346,
+ PR gold/20693.
+ * Fix PR ld/20858, error handling $ORIGIN variable.
+ Closes: #845171, #844847.
+
+ -- Matthias Klose <doko@debian.org> Thu, 24 Nov 2016 03:34:06 +0100
+
+binutils (2.27.51.20161118-2) unstable; urgency=medium
+
+ * Revert problematic sparc64 GOT patch (closes: #844782).
+
+ -- Matthias Klose <doko@debian.org> Sat, 19 Nov 2016 13:40:17 +0100
+
+binutils (2.27.51.20161118-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+ - SPARC updates, ARMv8.3 updates.
+ - Fix PR ld/20675.
+ * Fix typo in debian changelog. Closes: #843710.
+
+ -- Matthias Klose <doko@debian.org> Fri, 18 Nov 2016 14:11:45 +0100
+
+binutils (2.27.51.20161116-2) unstable; urgency=medium
+
+ * Stop building the mipsr6 mipsr6el mipsn32r6 mipsn32r6el mips64r6 mips64r6el
+ variants; can't continue with this work, because package uploads with
+ these architectures are still rejected.
+ * Add homepage attribute to the control file: Closes: #841432.
+ * ld: enable new dtags by default for linux/gnu targets. Closes: #835859.
+ * Fix PR ld/20827, using proposed patch. Closes: #844378.
+
+ -- Matthias Klose <doko@debian.org> Thu, 17 Nov 2016 11:56:55 +0100
+
+binutils (2.27.51.20161116-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+ - Fix PR ld/20789 (AVR), PR ld/20800 (x86), PR target/20737 (AArch64),
+ PR binutils/20801, PR binutils/20814, PR binutils/20751,
+ PR binutils/20794, PR gas/20803 (SPARC), PR gas/20732,
+ PR binutils/20799 (x86), PR binutils/20754 (x86), PR binutils/20701 (x86),
+
+ -- Matthias Klose <doko@debian.org> Wed, 16 Nov 2016 11:50:32 +0100
+
+binutils (2.27.51.20161108-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+ - Fix PR ld/20535 and PR ld/20784.
+
+ -- Matthias Klose <doko@debian.org> Tue, 08 Nov 2016 12:14:20 +0100
+
+binutils (2.27.51.20161105-2) unstable; urgency=medium
+
+ * Revert fix for PR ld/20535, causing PR ld/20784. Closes: #843339.
+
+ -- Matthias Klose <doko@debian.org> Sun, 06 Nov 2016 17:36:45 +0100
+
+binutils (2.27.51.20161105-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+ * Disable the work around for the build failure on mips* targets.
+
+ -- Matthias Klose <doko@debian.org> Sat, 05 Nov 2016 13:12:01 +0100
+
+binutils (2.27.51.20161102-1) unstable; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+ Security issues fixed: CVE-2016-6131, CVE-2016-4493, CVE-2016-4492,
+ CVE-2016-4490, CVE-2016-4489, CVE-2016-4488, CVE-2016-4487, CVE-2016-2226.
+
+ -- Matthias Klose <doko@debian.org> Wed, 02 Nov 2016 20:38:57 +0100
+
+binutils (2.27.51.20161027-2) experimental; urgency=medium
+
+ * Work around build failure on mips* targets.
+
+ -- Matthias Klose <doko@debian.org> Sun, 30 Oct 2016 19:35:41 +0200
+
+binutils (2.27.51.20161027-1) experimental; urgency=medium
+
+ * New upstream snapshot, taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Thu, 27 Oct 2016 16:57:21 +0200
+
+binutils (2.27-9) unstable; urgency=medium
+
+ * Update, taken from the 2.27 branch 20161014.
+ - Fix PR ld/20608, PR ld/20545, PR gold/20238.
+ * Fix cross build for non-standard cross archs (Helmut Grohne).
+ Closes: #839956.
+ * Fix ld segfault on ARM32, taken from the trunk. Closes: #840374.
+ * Fix PR ld/20648, taken from the trunk. Closes: #835544.
+ * Fix PR ld/20649, using proposed patch. Closes: #834147.
+
+ -- Matthias Klose <doko@debian.org> Mon, 17 Oct 2016 13:12:51 +0200
+
+binutils (2.27-8) unstable; urgency=medium
+
+ * Fix diversion updates for 32bit x86 targets.
+ * Update Break for hardening-wrapper.
+
+ -- Matthias Klose <doko@debian.org> Wed, 31 Aug 2016 10:11:22 +0200
+
+binutils (2.27-7) unstable; urgency=medium
+
+ * Update, taken from the 2.27 branch 20160830.
+ - Fix PR ld/20531.
+ * Fix diversion updates. Closes: #834836.
+
+ -- Matthias Klose <doko@debian.org> Tue, 30 Aug 2016 16:24:37 +0200
+
+binutils (2.27-6) unstable; urgency=high
+
+ * Update, taken from the 2.27 branch 20160819.
+ - Fix PR ld/20472.
+ * binutils-multiarch: Divert the triplet-prefixed names. Closes: #834253.
+
+ -- Matthias Klose <doko@debian.org> Fri, 19 Aug 2016 07:02:50 +0200
+
+binutils (2.27-5) unstable; urgency=high
+
+ * Update, taken from the 2.27 branch 20160812.
+ * Fix unexecutable MIPS binaries with -Wl,-z,noexecstack (Aurelian Jarno).
+ Closes: #834096.
+
+ -- Matthias Klose <doko@debian.org> Fri, 12 Aug 2016 09:27:17 +0200
+
+binutils (2.27-4) unstable; urgency=medium
+
+ * Fix gold on mipsr6 targets (Aurelian Jarno).
+
+ -- Matthias Klose <doko@debian.org> Tue, 09 Aug 2016 21:58:13 +0200
+
+binutils (2.27-3) unstable; urgency=medium
+
+ * Backport patches to fix gold on sparc64 (James Clarke). Closes: #833688.
+ * Fix gold on mips64 targets (Aurelian Jarno). Closes: #833654.
+
+ -- Matthias Klose <doko@debian.org> Tue, 09 Aug 2016 12:15:51 +0200
+
+binutils (2.27-2) unstable; urgency=medium
+
+ * Disable gold for all mips cross targets too.
+
+ -- Matthias Klose <doko@debian.org> Sun, 07 Aug 2016 16:30:20 +0200
+
+binutils (2.27-1) unstable; urgency=medium
+
+ * binutils 2.27 release.
+ * Update, taken from the 2.27 branch 20160807.
+ * Re-enable gold on sparc and sparc64. Closes: #818934.
+ * Disable SH64 support for the multilib build.
+ * Disable gold on all mips targets, currently fails to link.
+
+ -- Matthias Klose <doko@debian.org> Sun, 07 Aug 2016 13:38:27 +0200
+
+binutils (2.26.1-1) unstable; urgency=medium
+
+ * binutils 2.26.1 release.
+
+ -- Matthias Klose <doko@debian.org> Thu, 30 Jun 2016 10:37:37 +0200
+
+binutils (2.26-12) unstable; urgency=medium
+
+ * Update, taken from the 2.26 branch 20160624.
+ - Fix PR ld/20254 (AVR), PR ld/20221 (AVR), PR ld/20244 (x86).
+ - Support for three more new POWER9 instructions.
+ * Cherry pick backports for AArch64 vulcan support (Dann Frazier).
+ LP: #1594452.
+
+ -- Matthias Klose <doko@debian.org> Fri, 24 Jun 2016 10:42:57 +0200
+
+binutils (2.26-11) unstable; urgency=medium
+
+ * Update, taken from the 2.26 branch 20160610.
+ - Fix PR ld/20159, reverting the change for PR ld/16467. LP: #1588123.
+ * Use ldconfig triggers instead of calling ldconfig directly.
+
+ -- Matthias Klose <doko@debian.org> Fri, 10 Jun 2016 18:37:39 +0200
+
+binutils (2.26-10) unstable; urgency=medium
+
+ * Update, taken from the 2.26 branch 20160601.
+ - Fix PR ld/20117, PR ld/20030, PR ld/20093.
+ - Support for a few more new POWER9 instructions.
+ * Build for N32 and MIPS r6 (YunQiang Su). Closes: #807377.
+ * Mark cross binutils as M-A: foreign (Helmut Grohne). Closes: #824424.
+ * More reproducible build fixes (Chris Lamb). Closes: #824413.
+ * Fix PR ld/19886, --as-needed regression, taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Wed, 01 Jun 2016 21:31:32 +0200
+
+binutils (2.26-9) unstable; urgency=medium
+
+ * Update, taken from the 2.26 branch 20160512.
+ - Fix PR ld/19878, PR ld/19827, PR gas/19909, PR ld/20006, PR gold/19047,
+ PR gas/20047, PR 20060.
+
+ -- Matthias Klose <doko@debian.org> Thu, 12 May 2016 16:59:29 +0200
+
+binutils (2.26-8) unstable; urgency=medium
+
+ * Update, taken from the 2.26 branch 20160321.
+ - Fix PR ld/19827.
+
+ -- Matthias Klose <doko@debian.org> Mon, 21 Mar 2016 15:38:30 +0100
+
+binutils (2.26-7) unstable; urgency=medium
+
+ * Update, taken from the 2.26 branch 20160316.
+ - Fix PR ld/19623. Closes: #817891, PR ld/19539, PR binutils/19523.
+ * Fix cross-building from any-i386 (Samuel Thibault). Closes: #816128.
+
+ -- Matthias Klose <doko@debian.org> Wed, 16 Mar 2016 10:21:59 +0100
+
+binutils (2.26-6) unstable; urgency=medium
+
+ * Update, taken from the 2.26 branch 20160310.
+ - Fix PR ld/19579, PR ld/19752, PR ld/19739.
+ - Fix PR binutils/19775. Closes: #813006.
+
+ -- Matthias Klose <doko@debian.org> Thu, 10 Mar 2016 13:08:38 +0100
+
+binutils (2.26-5) unstable; urgency=medium
+
+ * Update, taken from the 2.26 branch 20160213.
+ - Fix PR ld/19698, PR ld/19553, ppc64 and AArch64 fixes.
+
+ -- Matthias Klose <doko@debian.org> Fri, 26 Feb 2016 17:07:29 +0100
+
+binutils (2.26-4) unstable; urgency=medium
+
+ * Update, taken from the 2.26 branch 20160213.
+ - Fix PR ld/19615, PR ld/19601 (closes: #812858), PR gas/19520.
+ * Fix stripping packages for cross builds. Closes: #813337.
+
+ -- Matthias Klose <doko@debian.org> Sat, 13 Feb 2016 17:13:00 +0100
+
+binutils (2.26-3) unstable; urgency=medium
+
+ * Update, taken from the 2.26 branch 20160203.
+ * Fix PR binutils/19523, objdump not supporting gnu_debuglink with
+ compressed debug sections; taken from the trunk. Closes: #812089.
+
+ -- Matthias Klose <doko@debian.org> Wed, 03 Feb 2016 15:11:43 +0100
+
+binutils (2.26-2) unstable; urgency=medium
+
+ * Do a release build, not enabled upstream for the release.
+
+ -- Matthias Klose <doko@debian.org> Wed, 27 Jan 2016 18:22:45 +0100
+
+binutils (2.26-1) unstable; urgency=medium
+
+ * binutils 2.26 release.
+ - Fix PR 19421, reverting the fix for PR 4317. Closes: #808246.
+ * Fix build failure with new coreutils. Closes: #812846.
+
+ -- Matthias Klose <doko@debian.org> Wed, 27 Jan 2016 12:36:00 +0100
+
+binutils (2.25.90.20160101-2) unstable; urgency=medium
+
+ * Apply proposed patch for PR ld/19368. Closes: #807974.
+
+ -- Matthias Klose <doko@debian.org> Tue, 05 Jan 2016 17:32:06 +0100
+
+binutils (2.25.90.20160101-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.26 branch (20160101).
+ * PR gas/19359, work around a GCC issue on POWER8.
+
+ -- Matthias Klose <doko@debian.org> Fri, 01 Jan 2016 13:40:16 +0100
+
+binutils (2.25.90.20151209-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.26 branch (20151209).
+ * Fix cross build dependencies. Closes: #807378.
+
+ -- Matthias Klose <doko@debian.org> Wed, 09 Dec 2015 12:41:22 +0100
+
+binutils (2.25.90.20151125-2) unstable; urgency=medium
+
+ * Add ARMv8.1 Virtualization Host Extensions support, taken from the trunk.
+ * Import zlib 1.2.8, taken from the trunk.
+ * Filter the date/user line from the cross binutils test results.
+ Closes: #806490.
+
+ -- Matthias Klose <doko@debian.org> Mon, 30 Nov 2015 11:52:26 +0100
+
+binutils (2.25.90.20151125-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.26 branch (20151125).
+ - Fixed stack overflow TEMP-0000000-A2945B.
+ * Build ppc64el binutils on ppc64.
+
+ -- Matthias Klose <doko@debian.org> Wed, 25 Nov 2015 14:19:39 +0100
+
+binutils (2.25.51.20151113-2) unstable; urgency=medium
+
+ * Backport patches from the trunk:
+ - Fix PR ld/19263, segfault for s390_elf. Closes: #805237.
+ - Fix PR ld/19264, account for .tbss alignment when adjusting start
+ of relro. LP: #1516444.
+
+ -- Matthias Klose <doko@debian.org> Thu, 19 Nov 2015 14:16:15 +0100
+
+binutils (2.25.51.20151113-1) unstable; urgency=medium
+
+ * Snapshot, taken from the just created 2.26 branch (20151113).
+ - Fixed PR ld/19123. Closes: #801879.
+ - Ignore relocations in .data.rel.ro.local (hppa). Closes: #801531.
+ - Fix PR gas/19217, wrong use of MOVT to replace LDR (ARM32). LP: #1513985.
+ * Stop building gold on sparc and sparc64. Closes: #803474.
+
+ -- Matthias Klose <doko@debian.org> Fri, 13 Nov 2015 11:08:24 +0100
+
+binutils (2.25.51.20151106-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk 20151106.
+ * Work around PR ld/19188, internal linker error. LP: #1511542.
+
+ -- Matthias Klose <doko@debian.org> Fri, 06 Nov 2015 18:44:09 +0100
+
+binutils (2.25.51.20151028-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk 20151028.
+ - Fix PR ld/19171 (LP: #1510067), PR ld/19175 (LP: #1510270).
+ * Revert the fix for PR gold/19119, fixing gold on armhf, arm64 and powerpc.
+
+ -- Matthias Klose <doko@debian.org> Wed, 28 Oct 2015 09:34:03 +0100
+
+binutils (2.25.51.20151021-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk 20151021.
+ * binutils-i686-gnu: Don't ship ldscripts.
+
+ -- Matthias Klose <doko@debian.org> Wed, 21 Oct 2015 19:46:24 +0200
+
+binutils (2.25.51.20151020-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk 20151020.
+ * Build cross packages for debian port architectures.
+ * Move libraries into the multiarch libdir.
+ * Include gold on KFreeBSD.
+ * Install the gnu-triplet prefixed binaries and manual pages as files,
+ and provide non-prefixed symlinks.
+ * Add a breaks in binutils for hardening-wrapper (<< 2.8); the diversions
+ need to be adopted for the real files.
+ * Don't ship windows related manual pages.
+ * Change the search order for ld to first search in /usr/lib*,
+ then in /usr/<gnu-triplet>/lib*.
+ * Run the testsuite for all cross targets.
+ * Configure with --disable-compressed-debug-sections.
+
+ -- Matthias Klose <doko@debian.org> Wed, 21 Oct 2015 01:14:01 +0200
+
+binutils (2.25.51.20151014-1) experimental; urgency=medium
+
+ * Snapshot, taken from the trunk 20151014.
+ * Explicitly configure --with-system-zlib.
+ * Disable compressed debug sections on x86. See PR gas/19109.
+ * Configure cross builds with --enable-initfini-array.
+
+ -- Matthias Klose <doko@debian.org> Thu, 15 Oct 2015 01:18:36 +0200
+
+binutils (2.25.1-7) unstable; urgency=medium
+
+ * Fix PR ld/18867, ld reloc sorting causing glibc to crash on alpha.
+ Taken from the branch. Closes: #792555.
+
+ -- Matthias Klose <doko@debian.org> Sun, 11 Oct 2015 10:33:38 +0200
+
+binutils (2.25.1-6) unstable; urgency=medium
+
+ * Configure with --enable-initfini-array (not the default for cross builds).
+ * Backport PR gold/18855 (sparc).
+
+ -- Matthias Klose <doko@debian.org> Fri, 09 Oct 2015 14:57:11 +0200
+
+binutils (2.25.1-5) unstable; urgency=medium
+
+ * Fix setting the default library path on i386.
+
+ -- Matthias Klose <doko@debian.org> Mon, 05 Oct 2015 13:03:39 +0200
+
+binutils (2.25.1-4) unstable; urgency=medium
+
+ * On i386, configure for i686-linux-gnu. Provide i585-linux-gnu symlinks.
+
+ -- Matthias Klose <doko@debian.org> Thu, 01 Oct 2015 19:19:24 +0200
+
+binutils (2.25.1-3) unstable; urgency=medium
+
+ * Regenerate the control file. Closes: #799234.
+ * Configure cross builds with --with-sysroot=/. Closes: #799703.
+ * Backport PR ld/18668 from the trunk. Closes: #797666.
+ * Fix lintian warnings for the binutils-hppa64-linux-gnu package.
+
+ -- Matthias Klose <doko@debian.org> Tue, 22 Sep 2015 18:38:07 +0200
+
+binutils (2.25.1-2) unstable; urgency=medium
+
+ * Build cross binutils packages targeting the release architectures.
+ * Rename shared libraries for the cross packages and install into
+ the standard location.
+ * Don't ship the header files and static libraries for the cross packages.
+ * Rename binutils-hppa64 to binutils-hppa64-linux-gnu.
+ * PR binutils/18750, fix stack buffer overflows when parsing corrupt
+ ihex files.
+
+ -- Matthias Klose <doko@debian.org> Tue, 15 Sep 2015 01:54:21 +0200
+
+binutils (2.25.1-1) unstable; urgency=medium
+
+ * Binutils 2.25.1 release.
+
+ -- Matthias Klose <doko@debian.org> Sat, 08 Aug 2015 00:36:12 +0200
+
+binutils (2.25-11) unstable; urgency=medium
+
+ * Fix broken -Bsymbolic-functions on ARM32, hppa, m68k. Taken from
+ the trunk.
+
+ -- Matthias Klose <doko@debian.org> Fri, 31 Jul 2015 12:40:32 +0200
+
+binutils (2.25-10) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20150711.
+ - POWERPC fixes.
+
+ -- Matthias Klose <doko@debian.org> Sat, 11 Jul 2015 12:12:38 +0200
+
+binutils (2.25-9) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20150622.
+ - ARM32, AArch64, POWERPC fixes.
+ * Fix PR gas/18427, gas slow on hppa, taken from the trunk. Closes: #787192.
+
+ -- Matthias Klose <doko@debian.org> Mon, 22 Jun 2015 11:45:36 +0200
+
+binutils (2.25-8) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20150523.
+ - PPC and AArch64 backports from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Sat, 23 May 2015 09:44:54 +0200
+
+binutils (2.25-7) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20150411.
+ * More adjustments for reproducible builds. Closes: #774429.
+
+ -- Matthias Klose <doko@debian.org> Fri, 24 Apr 2015 13:18:01 +0200
+
+binutils (2.25-6) unstable; urgency=medium
+
+ * Apply patches from the 2.25 branch to address PR binutils/17512,
+ PR binutils/17531.
+ * Removal partial backports for PR binutils/17531.
+ * Configure with --enable-deterministic-archives. Closes: #774429.
+
+ -- Matthias Klose <doko@debian.org> Thu, 26 Mar 2015 16:40:36 +0100
+
+binutils (2.25-5) unstable; urgency=medium
+
+ * Remove '*.rej' files in the source package. Closes: #775679.
+ * Make the package build reproducibly (addresses: #774429):
+ - Fix mtimes before building binary packages.
+ - Stop recording the current time when creating gzip files.
+ - Sort file list in md5sums.
+ - Fix mtimes before building source tarball.
+ - Sort file list in binutils source tarball.
+ - If available, call strip-nondeterminism on static libraries.
+ * Fix PR ld/17827 - PIE copy relocations are broken with pointers.
+ Closes: #772958.
+
+ -- Matthias Klose <doko@debian.org> Wed, 25 Feb 2015 09:00:51 +0100
+
+binutils (2.25-4) unstable; urgency=medium
+
+ * Backport fixes for PR binutils/17531 up to 2014-12-22.
+
+ -- Matthias Klose <doko@debian.org> Thu, 15 Jan 2015 08:00:07 +0100
+
+binutils (2.25-3) unstable; urgency=medium
+
+ * Don't build as a release candidate, fixing the upper shlibs dependency.
+ * Refresh patches.
+
+ -- Matthias Klose <doko@debian.org> Thu, 25 Dec 2014 13:45:39 +0100
+
+binutils (2.25-2) unstable; urgency=medium
+
+ * Apply proposed patch for PR ld/17742 (don't create .eh_frame_hdr
+ on shared lib bfd).
+
+ -- Matthias Klose <doko@debian.org> Thu, 25 Dec 2014 06:55:02 +0100
+
+binutils (2.25-1) unstable; urgency=medium
+
+ * binutils 2.25 release.
+ - MIPS specific gas update.
+
+ -- Matthias Klose <doko@debian.org> Thu, 25 Dec 2014 05:49:55 +0100
+
+binutils (2.24.90.20141219-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20141219.
+ - Fix PR ld/17713 (segfault), PR ld/17689 (link error), PR ld/15228.
+ * Apply proposed patch for PR gold/17729 (fixing ~600 GCC test failures).
+
+ -- Matthias Klose <doko@debian.org> Fri, 19 Dec 2014 18:59:30 +0100
+
+binutils (2.24.90.20141209-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20141209.
+ - Fix PR binutils/17677, PR gold/17670 (powerpc),
+ PR gold/17566 (powerpc).
+
+ -- Matthias Klose <doko@debian.org> Tue, 09 Dec 2014 09:31:53 +0100
+
+binutils (2.24.90.20141201-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20141201.
+ - Fix PR ld/16452, PR/ld/16457: Don't output symbol version
+ requirement for non-DT_NEEDED libs. Closes: #728529.
+
+ -- Matthias Klose <doko@debian.org> Mon, 01 Dec 2014 21:53:10 +0100
+
+binutils (2.24.90.20141128-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20141128.
+ - gold: Fix corrupted .eh_frame section with LTO and --gc-sections.
+ - gold: Fix PowerPC relaxation corner case.
+ * Relax upper shlibs version dependency to the next release candidate.
+
+ -- Matthias Klose <doko@debian.org> Fri, 28 Nov 2014 14:20:09 +0100
+
+binutils (2.24.90.20141124-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20141124.
+ - ppc alignment fixes, Go fixes
+ - PR binutils/17597, PR binutils/17512, PR binutils/17521, PR binutils/17533,
+ trunk backports for fixing the recent CVE issues.
+ - One more fix for Cortex-A53 Erratum 835769 (AArch64).
+
+ -- Matthias Klose <doko@debian.org> Mon, 24 Nov 2014 17:29:27 +0100
+
+binutils (2.24.90.20141111-2) unstable; urgency=medium
+
+ * Fix ld -r abort in _bfd_elf_write_section_eh_frame, taken from the trunk.
+ Closes: #769067.
+
+ -- Matthias Klose <doko@debian.org.org> Tue, 11 Nov 2014 11:10:27 +0100
+
+binutils (2.24.90.20141111-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20141111.
+ - Update .MIPS.abiflags to support MIPS R6.
+ * gold: Misc updates for the AArch64 backend, taken from the trunk.
+ * Mention some CVE issues, fixed in the 20141104 snapshot:
+ - CVE-2014-8484 (PR binutils/17509).
+ - CVE-2014-8485, CVE-2014-8504 (PR binutils/17510).
+ - CVE-2014-8501, CVE-2014-8502, CVE-2014-8503 (PR binutils/17512).
+ * Fix some lintian warnings.
+
+ -- Matthias Klose <doko@debian.org> Tue, 11 Nov 2014 07:55:51 +0100
+
+binutils (2.24.90.20141104-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20141104.
+ - Fix PR bfd/17481.
+ - Fix PR17488, powerpc64-linux-ld segfault. LP: #1381580.
+ - Fix PR ld/17492. LP: #882353.
+ - Fix PR gas/17493. LP: #1051156.
+ - Add gcc-4.9 libgomp symbols requiring --plt-thread-safe for power7.
+ - PowerPC64 ELFv1 function symbol definition vs LTO and discarded sections.
+ - ppc: enable msgclr and msgsnd on Power8.
+ - Relax ppc64_elf_tls_optimize assertion.
+ * Pick patch from the trunk:
+ - Support relexation for the gold aarch64 backend.
+ - AArch64: move bogus assertion.
+ - Fix build configured with --enable-targets=aarch64-linux.
+ - Fix running ld-unique tests on ARM.
+ - gas: Recognize: AArch64 ThunderX processor.
+
+ -- Matthias Klose <doko@debian.org> Tue, 04 Nov 2014 02:14:45 +0100
+
+binutils (2.24.90.20141014-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.25 branch 20141014.
+ * Remove patches picked from upstream.
+ * Build gold on AArch64.
+
+ -- Matthias Klose <doko@debian.org> Tue, 14 Oct 2014 12:46:08 +0200
+
+binutils (2.24.51.20141001-4) unstable; urgency=high
+
+ * Fix PR ld/17647, taken from upstream. Closes: #764573.
+
+ -- Matthias Klose <doko@debian.org> Mon, 13 Oct 2014 20:03:30 +0200
+
+binutils (2.24.51.20141001-3) unstable; urgency=medium
+
+ * Fix PR ld/17447, taken from upstream. LP: #1371636.
+
+ -- Matthias Klose <doko@debian.org> Tue, 07 Oct 2014 12:26:24 +0200
+
+binutils (2.24.51.20141001-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20141001.
+
+ -- Matthias Klose <doko@debian.org> Wed, 01 Oct 2014 02:32:06 +0200
+
+binutils (2.24.51.20140918-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20140918.
+
+ -- Matthias Klose <doko@debian.org> Thu, 18 Sep 2014 19:28:16 +0200
+
+binutils (2.24.51.20140903-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20140903.
+ * Try to work around binutils-multiarch build failure on sh4 by disabling
+ hppa targets for the binutils-multiarch build. Addresses: #758830.
+ * Enable powerpc targets for ppc64el. Closes: #760395.
+
+ -- Matthias Klose <doko@debian.org> Wed, 03 Sep 2014 23:02:26 +0200
+
+binutils (2.24.51.20140818-1) unstable; urgency=high
+
+ * Snapshot, taken from the trunk 20140818.
+ - Fix GLIBC ifunc breakage on PowerPC64 ELFv2. LP: #1355962.
+
+ -- Matthias Klose <doko@debian.org> Mon, 18 Aug 2014 13:49:01 +0200
+
+binutils (2.24.51.20140814-2) unstable; urgency=medium
+
+ * Still provide i486-* symlinks.
+
+ -- Matthias Klose <doko@debian.org> Sun, 17 Aug 2014 17:06:36 +0200
+
+binutils (2.24.51.20140814-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20140814.
+ - Add ld options --push-state and --pop-state.
+ * binutils-hppa64: Set architecture to hppa.
+ * Add aarch64_ilp32-linux-gnu multiarch directories to the search path.
+
+ -- Matthias Klose <doko@debian.org> Thu, 14 Aug 2014 13:28:40 +0200
+
+binutils (2.24.51.20140807-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20140807.
+ - Remove patch for pr14918, integrated upstream.
+
+ -- Matthias Klose <doko@debian.org> Thu, 07 Aug 2014 11:41:44 +0200
+
+binutils (2.24.51.20140727-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20140727.
+
+ -- Matthias Klose <doko@debian.org> Sun, 27 Jul 2014 15:44:40 +0200
+
+binutils (2.24.51.20140709-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20140709.
+ - Fix PR gold/15639, -flto and ld.gold on ARM.
+ Closes: #712189. LP: #1191909.
+
+ -- Matthias Klose <doko@debian.org> Wed, 09 Jul 2014 19:44:18 +0200
+
+binutils (2.24.51.20140704-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20140704.
+ * Build gold for mips* targets.
+ * Update the patch for the mips64el support. Closes: #750566, #753052.
+ * Update patches for the current trunk.
+
+ -- Matthias Klose <doko@debian.org> Fri, 04 Jul 2014 12:00:05 +0200
+
+binutils (2.24.51.20140617-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20140617.
+
+ -- Matthias Klose <doko@debian.org> Tue, 17 Jun 2014 10:29:20 +0200
+
+binutils (2.24.51.20140604-3) unstable; urgency=medium
+
+ * Update the mips64-default-n64 patch (Yunqiang Su). Closes: #750566.
+
+ -- Matthias Klose <doko@debian.org> Sat, 07 Jun 2014 13:43:35 +0200
+
+binutils (2.24.51.20140604-2) unstable; urgency=medium
+
+ * Stop applying the mips64-default-n64 patch until it is updated.
+
+ -- Matthias Klose <doko@debian.org> Thu, 05 Jun 2014 11:20:39 +0200
+
+binutils (2.24.51.20140604-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20140604.
+ * Refactor rules for consistent usage of the PF macro (Helmut Grohne).
+
+ -- Matthias Klose <doko@debian.org> Wed, 04 Jun 2014 13:48:21 +0200
+
+binutils (2.24.51.20140425-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20140425.
+ * Refactor rules for consistent usage of the PF macro (Helmut Grohne).
+ * On x86 targets provide gnu-type prefixed binaries with the cpu that GCC
+ is configured for.
+ * 129_multiarch_libpath.patch: Fix to search multiarch dirs, only needed
+ for a minority of packages still using ld directly for linking instead
+ of the recommended use of gcc.
+
+ -- Matthias Klose <doko@debian.org> Sun, 27 Apr 2014 21:52:56 +0200
+
+binutils (2.24.51.20140411-2) unstable; urgency=medium
+
+ * No-change rebuild to get rid off ftp-master mail storm.
+
+ -- Matthias Klose <doko@debian.org> Sat, 12 Apr 2014 15:23:31 +0200
+
+binutils (2.24.51.20140411-1) unstable; urgency=medium
+
+ * Snapshot, taken from the trunk 20140411.
+ * Provide $(DEB_HOST_GNU_TYPE)- prefixed binaries and man pages.
+ * Don't enable the spu targets on powerpc targets anymore.
+ * Build the gold linker on hurd-i386 (Svante Signell). Closes: #744020.
+
+ -- Matthias Klose <doko@debian.org> Fri, 11 Apr 2014 18:49:22 +0200
+
+binutils (2.24-5) unstable; urgency=medium
+
+ * Update from the 2.24 branch, 20140321.
+ * Stop building the binutils-spu package.
+ * Add a binutils-multiarch-dev package. Closes: #583160
+
+ -- Matthias Klose <doko@debian.org> Fri, 21 Mar 2014 11:23:40 +0100
+
+binutils (2.24-4) unstable; urgency=medium
+
+ * Update from the 2.24 branch, 20140304.
+ * Update Aarch64 ilp32 linker and libdir names.
+ * Fix relocations for thread local variables on AArch64. Updated patch
+ taken from the trunk.
+ * Enable AArch64 big endian targets for AArch64 builds and for
+ binutils-multiarch.
+ * gas: Add entry for "xgene1" (AArch64).
+ * gas: Remove the alignment limit on AArch64.
+ * Add a Built-Using attribute for for the binutils-cross-* packages.
+ Closes: #738311.
+
+ -- Matthias Klose <doko@debian.org> Tue, 04 Mar 2014 02:21:00 +0100
+
+binutils (2.24-3) unstable; urgency=medium
+
+ * Update from the 2.24 branch, 20140124.
+ * Display the reference causing a shared library to be needed (taken from
+ the trunk).
+
+ -- Matthias Klose <doko@debian.org> Fri, 24 Jan 2014 14:39:48 +0100
+
+binutils (2.24-2) unstable; urgency=medium
+
+ * Update from the 2.24 branch, 20131209.
+ * Remove versioned build dependencies which are not needed anymore
+ since 2005.
+ * Drop the ld_system_root patch.
+ * Fix PowerPC64 linking of --just-symbols objects (Alan Modra).
+
+ -- Matthias Klose <doko@debian.org> Mon, 09 Dec 2013 13:57:43 +0100
+
+binutils (2.24-1) unstable; urgency=low
+
+ * Final upstream release.
+ * ifunc updates for AArch64, taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Mon, 02 Dec 2013 11:21:16 +0200
+
+binutils (2.23.91.20131123-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from the 2.24 branch.
+ * Stop shipping libiberty, now available in libiberty-dev.
+
+ -- Matthias Klose <doko@debian.org> Sat, 23 Nov 2013 08:27:51 +0100
+
+binutils (2.23.90.20131116-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from the 2.24 branch.
+
+ -- Matthias Klose <doko@debian.org> Sat, 16 Nov 2013 12:40:28 +0100
+
+binutils (2.23.90.20131017-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from the 2.24 branch.
+
+ -- Matthias Klose <doko@debian.org> Thu, 17 Oct 2013 14:22:05 +0200
+
+binutils (2.23.90.20130927-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from the 2.24 branch.
+ * Add ifunc support for AArch64.
+
+ -- Matthias Klose <doko@debian.org> Fri, 27 Sep 2013 14:05:44 +0200
+
+binutils (2.23.52.20130828-1) unstable; urgency=low
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Wed, 28 Aug 2013 15:22:51 +0200
+
+binutils (2.23.52.20130727-1) unstable; urgency=low
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Sat, 27 Jul 2013 10:37:11 +0200
+
+binutils (2.23.52.20130722-1) unstable; urgency=low
+
+ * New upstream snapshot.
+ - Fix PR ld/15762, glibc being built without warning sections.
+ * Set the libdir for arm64 to lib, not lib64.
+ * Stop building the binutils-gold package, let binutils provide
+ binutils-gold. Packages requiring gold should explicity pass
+ -fuse-ld=gold to the compiler, packages requiring the bfd linker
+ should pass -fuse-ld=bfd to the compiler.
+ * Refresh patches.
+
+ -- Matthias Klose <doko@debian.org> Mon, 22 Jul 2013 21:13:32 +0200
+
+binutils (2.23.52.20130620-1) unstable; urgency=low
+
+ * New upstream snapshot.
+ * Add conflicts with mingw binutils. Closes: #712057, #712063.
+ * Always compare the test results with the ones from the installed binutils.
+
+ -- Matthias Klose <doko@debian.org> Thu, 20 Jun 2013 12:27:31 +0200
+
+binutils (2.23.52.20130612-1) unstable; urgency=low
+
+ * New upstream snapshot.
+ - Fix issue #15323, redefining weak functions in -flto incrementally-linked
+ executable. Closes: #710936.
+ * Install libiberty.a again in binutils-dev, not installed anymore upstream
+ by default.
+ * Import the autopkg tests from Ubuntu.
+ * Enable i386pep emulation for the x86 builds. Closes: #703463.
+ * Fix typo in ld(1). Closes: #704867.
+ * Add mips64(el) support (YunQiang Su). Closes: #710214.
+
+ -- Matthias Klose <doko@debian.org> Wed, 12 Jun 2013 11:35:05 +0200
+
+binutils (2.23.52.20130522-1) experimental; urgency=low
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Wed, 22 May 2013 16:22:04 +0200
+
+binutils (2.23.2-2) experimental; urgency=low
+
+ * Add support for Cortex-A53 / Cortex-A57.
+ * Fix PR gas/14887 and PR gas/14987, gas syntax errors on ARM.
+ LP: #1166628.
+
+ -- Matthias Klose <doko@debian.org> Tue, 16 Apr 2013 02:21:44 +0200
+
+binutils (2.23.2-1) experimental; urgency=low
+
+ * binutils 2.23.2 release.
+
+ -- Matthias Klose <doko@debian.org> Tue, 26 Mar 2013 19:58:59 +0100
+
+binutils (2.23.1-1~exp6) experimental; urgency=low
+
+ * Update from the 2.23 branch (20130222).
+ * For cross builds, add the tool libdir to the library search path.
+ * Revert broken patch:
+ - Recognize DEB_TARGET_ARCH for cross builds.
+
+ -- Matthias Klose <doko@debian.org> Sat, 23 Feb 2013 01:57:30 +0100
+
+binutils (2.23.1-1~exp5) experimental; urgency=low
+
+ * Update from the 2.23 branch (20130213).
+ - AArch64 and PPC updates.
+ * Recognize DEB_TARGET_ARCH for cross builds. Closes: #695595.
+ * Fix srec_scan null dereference (Sang Kil Cha). Closes: #684903.
+
+ -- Matthias Klose <doko@debian.org> Wed, 13 Feb 2013 12:10:31 +0100
+
+binutils (2.23.1-1~exp4) experimental; urgency=low
+
+ * Fix PR ld/14918: linking with -flto always links in libgcc_s.so.
+ Closes: #650145.
+ * Fix build failure with texinfo 4.14. Closes: #697353.
+
+ -- Matthias Klose <doko@debian.org> Sat, 05 Jan 2013 14:06:23 +0100
+
+binutils (2.23.1-1~exp3) experimental; urgency=low
+
+ * Update from the 2.23 branch (20121204).
+ * Add fuse-ld= for GCC linker option compatibility in ld and gold.
+ * gold cross builds: Search the multiarch directories too.
+
+ -- Matthias Klose <doko@debian.org> Wed, 05 Dec 2012 08:35:10 +0100
+
+binutils (2.23.1-1~exp2) experimental; urgency=low
+
+ * Update from the 2.23 branch (20121121).
+ - arm, arm64 and x32 updates.
+
+ -- Matthias Klose <doko@debian.org> Wed, 21 Nov 2012 13:47:06 +0100
+
+binutils (2.23.1-1~exp1) experimental; urgency=low
+
+ * binutils 2.23.1 release.
+
+ -- Matthias Klose <doko@debian.org> Thu, 15 Nov 2012 13:50:55 +0100
+
+binutils (2.23-1) experimental; urgency=low
+
+ * Update multi-arch paths for x32 (x86_64-linux-gnux32) (Daniel Schepler).
+ Closes: #692138.
+ * Add new ARM hard-float/soft-float ABI flags for EABI_VER5 (Steve McIntyre).
+ * Silence lintian stupidity about interpreting every string in binaries
+ as text (Emmanuel Fleury). Closes: #661639.
+ * In ld.texi, remove cross reference to BFD internals documentation.
+
+ -- Matthias Klose <doko@debian.org> Tue, 06 Nov 2012 10:42:37 +0100
+
+binutils (2.23-1) experimental; urgency=low
+
+ * binutils 2.23 release.
+ * Don't include the documents licensed under GFDL with cover texts.
+ Closes: #650504.
+
+ -- Matthias Klose <doko@debian.org> Wed, 24 Oct 2012 10:29:50 +0200
+
+binutils (2.22.90.20120924-1) experimental; urgency=low
+
+ * New upstream snapshot (taken from the 2.23 branch).
+ * Fix bfd.h, removing the safety inclusion guard.
+ * Fix multilib conflicts of generated values by __WORDSIZE-based expressions.
+
+ -- Matthias Klose <doko@debian.org> Mon, 24 Sep 2012 18:39:51 +0200
+
+binutils (2.22.90.20120913-2) experimental; urgency=low
+
+ * Undo the reversion of the mips patches, unrelated issue.
+ * Build again with -marm on armhf. Testsuite still not ready for thumb mode.
+
+ -- Matthias Klose <doko@debian.org> Sat, 15 Sep 2012 03:00:10 +0200
+
+binutils (2.22.90.20120913-1) experimental; urgency=low
+
+ * New upstream snapshot (taken from the 2.23 branch).
+ * Add R_AARCH64_GOT_LD_PREL19 reloc implementation, taken from the trunk.
+ * Revert mips updates.
+ See http://sourceware.org/ml/binutils/2012-09/msg00158.html
+
+ -- Matthias Klose <doko@debian.org> Thu, 13 Sep 2012 20:35:08 +0200
+
+binutils (2.22.90.20120907-2) experimental; urgency=low
+
+ * Fix build failure on kfreebsd.
+
+ -- Matthias Klose <doko@debian.org> Sun, 09 Sep 2012 15:41:54 +0200
+
+binutils (2.22.90.20120907-1) experimental; urgency=low
+
+ * New upstream snapshot (taken from the 2.23 branch).
+ * Don't build anymore with -marm on armhf.
+ * Work around `install' limitation not able to pass parameters
+ to the strip command. Closes: #686183.
+ * Generate md5sums file. Closes: #684079.
+
+ -- Matthias Klose <doko@debian.org> Sat, 08 Sep 2012 13:40:39 +0200
+
+binutils (2.22.90.20120816-2) experimental; urgency=low
+
+ * Some refactoring of debian/rules based on patches from Marcin:
+ * Introduce DEB_TARGET_* macros to unify native and cross builds.
+ * Build the control file as the first step for cross builds.
+ * Try again building without --disable-werror.
+ * Refactor stripping of binaries into a `strip_package' macro.
+
+ -- Matthias Klose <doko@debian.org> Tue, 21 Aug 2012 15:31:05 +0200
+
+binutils (2.22.90.20120816-1) experimental; urgency=low
+
+ * New upstream snapshot (taken from the 2.23 branch).
+ * Configure for aarch64 and x32 targets.
+
+ -- Matthias Klose <doko@debian.org> Thu, 16 Aug 2012 13:26:56 +0200
+
+binutils (2.22.90.20120731-1) experimental; urgency=low
+
+ * New upstream snapshot (taken from the 2.23 branch).
+
+ -- Matthias Klose <doko@debian.org> Tue, 31 Jul 2012 22:20:22 +0200
+
+binutils (2.22.52.20120704-1) experimental; urgency=low
+
+ * New upstream snapshot.
+
+ -- Matthias Klose <doko@debian.org> Wed, 04 Jul 2012 14:40:01 +0200
+
+binutils (2.22-7) unstable; urgency=low
+
+ * Update from the binutils-2_22-branch 20120704.
+ - Fix PR ld/13991 and a gold issue on ARM.
+ * Fix warning building libiberty/md5.c. Closes: #674831.
+ * Enable x86_64-pep in binutils-multiarch. Closes: #675364.
+
+ -- Matthias Klose <doko@debian.org> Wed, 04 Jul 2012 11:00:14 +0200
+
+binutils (2.22-6.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Fix PR ld/14069 (hurd-i386) (Closes: #671804).
+
+ -- Samuel Thibault <sthibault@debian.org> Fri, 18 May 2012 11:52:14 +0200
+
+binutils (2.22-6) unstable; urgency=low
+
+ * Update from the binutils-2_22-branch 20120307.
+ - Fix PR ld/12161 (avr), PR binutils/13622 (readelf crash),
+ PR binutils/13476 (hppa), PR ld/13387 (hppa),
+ * Fix typo in elf64-x86-64.c, follow-up patch to PR ld/13302.
+
+ -- Matthias Klose <doko@debian.org> Thu, 08 Mar 2012 18:52:20 +0100
+
+binutils (2.22-5) unstable; urgency=low
+
+ * Update from the binutils-2_22-branch 20120124.
+ - Fix PR ld/13581 (x32).
+ * Fix PR gas/13449 (ARM), taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Tue, 24 Jan 2012 21:26:43 +0100
+
+binutils (2.22-4) unstable; urgency=low
+
+ * Don't bump the soversion (revert the change in 2.22-3).
+ * Apply proposed patch for PR binutils/13534, allowing ar to handle
+ files bigger than 2GB (Francois Gouget). Closes: #652887).
+ * Recognize DW_LANG_Go in readelf (backport from trunk).
+
+ -- Matthias Klose <doko@debian.org> Sat, 07 Jan 2012 09:07:25 +0100
+
+binutils (2.22-3) unstable; urgency=low
+
+ * Update from the binutils-2_22-branch 20120102.
+ - gold updates.
+ - mips updates.
+
+ -- Matthias Klose <doko@debian.org> Tue, 03 Jan 2012 06:06:20 +0100
+
+binutils (2.22-2) unstable; urgency=low
+
+ * Update from the binutils-2_22-branch 20111211.
+ * Fix build failure with make 3.82 (Daniel Schepler). Closes: #650064.
+
+ -- Matthias Klose <doko@debian.org> Sun, 11 Dec 2011 16:30:14 +0000
+
+binutils (2.22-1) unstable; urgency=low
+
+ * Binutils 2.22 release.
+
+ -- Matthias Klose <doko@debian.org> Mon, 21 Nov 2011 16:50:53 +0100
+
+binutils (2.21.90.20111025-1) unstable; urgency=low
+
+ * Snapshot, taken from the binutils-2_22-branch 20111025.
+ * Fix lintian warnings.
+
+ -- Matthias Klose <doko@debian.org> Tue, 25 Oct 2011 15:06:46 +0200
+
+binutils (2.21.90.20111019-3) unstable; urgency=low
+
+ * Fix PR ld/13302, taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Sun, 23 Oct 2011 13:15:07 +0200
+
+binutils (2.21.90.20111019-2) unstable; urgency=low
+
+ * Fix PR ld/13287, taken from the trunk. LP: #872687.
+
+ -- Matthias Klose <doko@debian.org> Thu, 20 Oct 2011 12:29:18 +0200
+
+binutils (2.21.90.20111019-1) unstable; urgency=low
+
+ * Snapshot, taken from the binutils-2_22-branch 20111019.
+
+ -- Matthias Klose <doko@debian.org> Wed, 19 Oct 2011 22:25:05 +0200
+
+binutils (2.21.90.20111004-2) unstable; urgency=low
+
+ * Fix PR ld/13250, preserve the maximum alignment and size for common
+ symbols (H.J. Lu). Closes: #608901. LP: #697229.
+
+ -- Matthias Klose <doko@debian.org> Thu, 06 Oct 2011 08:06:04 +0200
+
+binutils (2.21.90.20111004-1) unstable; urgency=medium
+
+ * Snapshot, taken from the binutils-2_22-branch 20111004.
+ * Fix PR ld/13195, taken from the trunk. Closes: #643858, #644183.
+
+ -- Matthias Klose <doko@debian.org> Tue, 04 Oct 2011 12:12:16 +0200
+
+binutils (2.21.53.20110922-1) unstable; urgency=low
+
+ * Snapshot, taken from the binutils-2_22-branch 20110924.
+
+ -- Matthias Klose <doko@debian.org> Sat, 24 Sep 2011 09:55:38 +0200
+
+binutils (2.21.53.20110910-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20110910.
+ - Fix PR gas/13024. Closes: #635592.
+ * Build with proposed patch for PR ld/12965.
+ * Don't ship .la files in the cross binutils packages.
+ * For native builds, add the multiarch directories to the default
+ search path.
+
+ -- Matthias Klose <doko@debian.org> Sat, 10 Sep 2011 13:06:01 +0200
+
+binutils (2.21.53.20110823-3) unstable; urgency=low
+
+ * Revert the last change:
+ - Default to --hash-style=both in ld.bfd and ld.gold.
+
+ -- Matthias Klose <doko@debian.org> Thu, 25 Aug 2011 10:48:28 +0200
+
+binutils (2.21.53.20110823-2) unstable; urgency=low
+
+ * Default to --hash-style=both in ld.bfd and ld.gold.
+ * Fix s390x build (Aurelian Jarno). Closes: #635167.
+
+ -- Matthias Klose <doko@debian.org> Wed, 24 Aug 2011 13:06:48 +0200
+
+binutils (2.21.53.20110823-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20110823.
+ - ld --no-copy-dt-needed-entries/--no-add-needed is now the default.
+
+ -- Matthias Klose <doko@debian.org> Tue, 23 Aug 2011 21:23:38 +0200
+
+binutils (2.21.53.20110805-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20110805.
+
+ -- Matthias Klose <doko@ubuntu.com> Fri, 05 Aug 2011 12:25:49 +0200
+
+binutils (2.21.53.20110729-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20110729.
+ * Fix s390x build (Aurelian Jarno). Closes: #635167.
+
+ -- Matthias Klose <doko@debian.org> Fri, 29 Jul 2011 19:04:46 +0200
+
+binutils (2.21.53.20110720-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20110720.
+ - Fix PR ld/12978. Closes: #632681.
+
+ -- Matthias Klose <doko@debian.org> Wed, 20 Jul 2011 20:54:51 +0200
+
+binutils (2.21.52.20110707-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20110707.
+ - Fix build failure on mips/mipsel. Closes: #632690.
+ - Fix issues on kfreebsd-amd64. Closes: #632671.
+
+ -- Matthias Klose <doko@debian.org> Thu, 07 Jul 2011 06:48:33 +0200
+
+binutils (2.21.52.20110703-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20110703.
+
+ -- Matthias Klose <doko@debian.org> Sun, 03 Jul 2011 21:56:44 +0200
+
+binutils (2.21.52.20110606-2) unstable; urgency=low
+
+ * Fix PR ld/12845, taken from the trunk. Closes: #628685.
+
+ -- Matthias Klose <doko@debian.org> Thu, 09 Jun 2011 12:45:15 +0200
+
+binutils (2.21.52.20110606-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20110606.
+ - Fix PR ld/12833. Closes: #628770.
+ - Fix spelling errors. Closes: #604696.
+ * Let gold accept a dummy -z buildd-<random-string> option.
+ * Add a /usr/share/bug/binutils/presubj file for reportbug (and symlinks
+ from the other /usr/share/bug/binutils-foo directories) explaining how
+ to make a self-contained testcase (Jonathan Nieder). Closes: #629147.
+ * Fix ld crash cause of invalid pointer in munmap_chunk. Closes: #628916.
+
+ -- Matthias Klose <doko@debian.org> Tue, 07 Jun 2011 00:03:47 +0200
+
+binutils (2.21.51.20110523-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20110523.
+
+ -- Matthias Klose <doko@debian.org> Mon, 23 May 2011 23:38:52 +0200
+
+binutils (2.21.51.20110421-6) unstable; urgency=low
+
+ [ Marcin Juszkiewicz ]
+ * Use pregenerated ld.gold.1 for cross builds.
+
+ [ Matthias Klose ]
+ * Redefine STRIP and install_binary for cross builds (Ken Werner).
+ * Apply fix for PR ld/12726, taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Thu, 19 May 2011 15:51:22 +0200
+
+binutils (2.21.51.20110421-5) unstable; urgency=medium
+
+ * Use a symlink for /usr/bin/ld, even if gold is not built. Closes: #615262.
+
+ -- Matthias Klose <doko@debian.org> Tue, 17 May 2011 17:58:17 +0200
+
+binutils (2.21.51.20110421-4) unstable; urgency=low
+
+ * Fix PR ld/12730, taken from the trunk. Closes: #625616.
+ * Cortex A8 workarounds for PLT tail calls (Richard Sandiford).
+
+ -- Matthias Klose <doko@debian.org> Sun, 08 May 2011 02:06:22 +0200
+
+binutils (2.21.51.20110421-3) unstable; urgency=low
+
+ * Fix segfault in ar, delete_members.
+
+ -- Matthias Klose <doko@debian.org> Sun, 01 May 2011 17:30:42 +0200
+
+binutils (2.21.51.20110421-2) unstable; urgency=low
+
+ * Fix typo in the patch for PR gas/12698.
+
+ -- Matthias Klose <doko@debian.org> Wed, 27 Apr 2011 21:33:47 +0200
+
+binutils (2.21.51.20110421-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20110421.
+ * Install a man page for ld.gold, generated by help2man. Closes: #619823.
+ * Apply proposed patch for PR gas/12698. Closes: #623964.
+
+ -- Matthias Klose <doko@debian.org> Wed, 27 Apr 2011 18:14:39 +0200
+
+binutils (2.21.51.20110419-2) unstable; urgency=low
+
+ * Fix powerpcspe and sparc builds.
+
+ -- Matthias Klose <doko@debian.org> Tue, 19 Apr 2011 13:47:56 +0200
+
+binutils (2.21.51.20110419-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20110419.
+
+ -- Matthias Klose <doko@debian.org> Tue, 19 Apr 2011 10:18:14 +0200
+
+binutils (2.21.51.20110409-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20110409.
+
+ -- Matthias Klose <doko@debian.org> Sat, 09 Apr 2011 13:53:24 +0200
+
+binutils (2.21.51.20110403-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20110403.
+
+ -- Matthias Klose <doko@debian.org> Sun, 03 Apr 2011 23:54:13 +0200
+
+binutils (2.21.0.20110327-3) unstable; urgency=high
+
+ * Fix architecture field for binutils-gold (powerpcspe).
+ * Add support for arm-*-gnueabihf targets. Closes: #621029.
+ * Fix PR ld/12654: Properly handle R_386_TLS_LDO_32 for PIE. LP: #663294.
+ * Fix PR ld/12637, reloc overflow for R_MIPS_TLS_LDM (Richard Sandiford),
+ taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Sun, 10 Apr 2011 17:23:40 +0200
+
+binutils (2.21.0.20110327-2) unstable; urgency=low
+
+ * Fix architecture field for binutils-gold.
+ * Configure with --disable-werror on armhf.
+
+ -- Matthias Klose <doko@debian.org> Tue, 29 Mar 2011 19:38:55 +0200
+
+binutils (2.21.0.20110327-1) unstable; urgency=low
+
+ * Update from the 2.21 branch 20110327.
+ * Add multiarch directories to linker search path. Closes: #369064.
+ LP: #738098.
+
+ -- Matthias Klose <doko@debian.org> Sun, 27 Mar 2011 22:32:57 +0100
+
+binutils (2.21.0.20110322-1) unstable; urgency=low
+
+ * Update from the 2.21 branch 20110322.
+ * S/390: Make as to accept all instructions if no -march option given.
+ taken from the trunk (Aurelian Jarno). Closes: #618751.
+ * Extend support for armhf (Loic Minier).
+ - debian/control.in, debian/control, debian/rules: Enable gold for armhf.
+ - debian/rules: Introduce $(CROSS) (set to $(DEB_HOST_GNU_TYPE)- when
+ cross-building) and call $(CROSS)cpp to check whether -marm is needed or
+ not instead of testing for armel; an alternative would be to
+ unconditionally set -marm if DEB_HOST_ARCH_CPU is arm.
+ - debian/rules: commented out -fno-section-anchors CFLAGS handling would
+ also be enabled for armhf.
+ - debian/rules: ignore regressions on armhf as well; note that
+ ignore_regressions is set three times.
+
+ -- Matthias Klose <doko@debian.org> Tue, 22 Mar 2011 23:12:39 +0100
+
+binutils (2.21.0.20110302-2) unstable; urgency=low
+
+ [ Carlos O'Donell ]
+ * Fix binutils-hppa64 build.
+
+ [ Matthias Klose ]
+ * Fix PR ld/12376 (John David Anglin), taken from the trunk.
+ * Update to the 2.21 branch, 20110310.
+
+ -- Matthias Klose <doko@debian.org> Thu, 10 Mar 2011 21:35:07 +0100
+
+binutils (2.21.0.20110302-1) unstable; urgency=low
+
+ * Update from the 2.21 branch.
+
+ [ Thorsten Glaser ]
+ * patches/640_m68k_fix-TLS_GD-relocation: new, temp. Closes: #611768.
+
+ [ Matthias Klose ]
+ * On ppc64, look for 32 bit target libraries in /lib32, /usr/lib32 etc.,
+ first.
+
+ -- Matthias Klose <doko@debian.org> Wed, 02 Mar 2011 02:41:17 +0100
+
+binutils (2.21.0.20110216-2) unstable; urgency=low
+
+ * Upload to unstable.
+
+ -- Matthias Klose <doko@debian.org> Tue, 22 Feb 2011 20:35:16 +0100
+
+binutils (2.21.0.20110216-1) experimental; urgency=low
+
+ * Update from the 2.21 branch.
+
+ -- Matthias Klose <doko@debian.org> Wed, 16 Feb 2011 15:54:15 +0100
+
+binutils (2.21-5) experimental; urgency=low
+
+ * Update gold to 1.11, taken from the 2.21 branch.
+ * Add the arm-linux-gnueabi target to binutils-multiarch (Loic Minier).
+
+ -- Matthias Klose <doko@ubuntu.com> Tue, 25 Jan 2011 00:51:38 +0100
+
+binutils (2.21-4) experimental; urgency=low
+
+ * Fix handling of writable .eh_frame section in gold, taken from the
+ 2.21 branch.
+
+ -- Matthias Klose <doko@debian.org> Wed, 12 Jan 2011 00:42:15 +0100
+
+binutils (2.21-3) experimental; urgency=low
+
+ [ Matthias Klose ]
+ * Don't include `-system' in the bfd version identifier.
+
+ [ Sedat Dilek ]
+ * 160_pr12327.patch: Fix PR ld/12327, taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Thu, 29 Dec 2010 23:51:35 +0100
+
+binutils (2.21-2) experimental; urgency=low
+
+ * Don't install ld.bfd in binutils-multiarch.
+ * Fix assembler bug blocking Thumb-2 kernel builds (CS issue #8775).
+
+ -- Matthias Klose <doko@debian.org> Fri, 10 Dec 2010 13:45:00 +0100
+
+binutils (2.21-1) experimental; urgency=low
+
+ * binutils 2.21 release.
+
+ [ Marcin Juszkiewicz ]
+ * Enable building gold in cross builds. LP: #686530.
+ * Allow to build only the -source package, and include the version
+ in the package name. LP: #682646.
+
+ -- Matthias Klose <doko@debian.org> Thu, 09 Dec 2010 23:24:49 +0100
+
+binutils (2.20.90.20101121-1) experimental; urgency=low
+
+ * Update from the binutils 2.21 release branch.
+
+ -- Matthias Klose <doko@debian.org> Sun, 21 Nov 2010 14:03:14 +0100
+
+binutils (2.20.90.20101105-2) experimental; urgency=low
+
+ * binutils 2.21 prerelease 1.
+
+ -- Matthias Klose <doko@debian.org> Wed, 10 Nov 2010 01:04:59 +0100
+
+binutils (2.20.51.20101028-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20101028.
+
+ -- Matthias Klose <doko@debian.org> Thu, 28 Oct 2010 16:57:11 +0200
+
+binutils (2.20.51.20101009-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20101009.
+
+ -- Matthias Klose <doko@debian.org> Sat, 09 Oct 2010 14:41:08 +0200
+
+binutils (2.20.51.20100925-2) experimental; urgency=low
+
+ * Allow ar scripts to contain ~ in the filename (Zygmunt Krynicki, taken
+ from Linaro). LP: #641488.
+
+ -- Matthias Klose <doko@debian.org> Thu, 30 Sep 2010 10:20:41 +0200
+
+binutils (2.20.51.20100925-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100925.
+ * Fix PR ld/10144, mips/ld: non-dynamic relocations refer to dynamic symbol
+ Closes: #519006.
+
+ -- Matthias Klose <doko@debian.org> Sat, 25 Sep 2010 16:24:20 +0200
+
+binutils (2.20.51.20100908-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100908.
+ * Link executables statically when `static' is passed in DEB_BUILD_OPTIONS
+ (Jim Heck). Closes: #590101.
+ * Apply proposed patch for PR ld/10340 (ld doesn't honor sysroot prefix
+ for ldscripts). LP: #625320.
+ * Build binutils-hppa64 in cross builds (Al Viro). Closes: #595319.
+ * Fix some lintian warnings.
+
+ -- Matthias Klose <doko@debian.org> Wed, 08 Sep 2010 16:31:47 +0200
+
+binutils (2.20.51.20100813-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100813.
+
+ [ Jonathan Nieder ]
+ * Remove ld.bfd from binutils-multiarch (not that useful without an
+ multiarch assembler).
+
+ [ Marcin Juszkiewicz ]
+ * Revert sysroot to / for cross builds. LP: #598389.
+ * Generate debian/control for native and cross builds. LP: #612629.
+ * Provide packaging rules in -source package. LP: #608745.
+
+ [ Matthias Klose ]
+ * Don't apply patches, when PATCHED_SOURCES is set to `yes'.
+ * Proposed patch for PR11889, readelf crashes for malformed binaries
+ (Dan Rosenberg). LP: #614206.
+
+ -- Matthias Klose <doko@debian.org> Fri, 13 Aug 2010 11:10:14 +0200
+
+binutils (2.20.51.20100710-2) experimental; urgency=medium
+
+ * Don't use configury for cross builds for native builds. LP: #604134.
+
+ -- Matthias Klose <doko@debian.org> Sun, 11 Jul 2010 10:24:28 +0200
+
+binutils (2.20.51.20100710-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100710.
+ - Fix PR gas/10531. LP: #599485.
+ * debian/rules: Introduce PF macros (Jim Heck). Closes: #588357.
+
+ [ Marcin Juszkiewicz ]
+ * Don't install documentation files in -cross packages. Closes: #586636.
+ * Set sysroot to /usr/$(TARGET) for cross builds. LP: #598389.
+
+ -- Matthias Klose <doko@debian.org> Sat, 10 Jul 2010 10:42:55 +0200
+
+binutils (2.20.51.20100617-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100617.
+ * Merge 'binary-cross' target into 'binary' one (Marcin Juszkiewicz).
+ * debian/copyright: Update to GFDL 1.3.
+
+ -- Matthias Klose <doko@debian.org> Thu, 17 Jun 2010 15:20:34 +0200
+
+binutils (2.20.51.20100527-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100527.
+
+ [ Jonathan Nieder ]
+ * debian/binutils-multiarch.preinst.in: Re-add diversions on reinstall.
+ Closes: #581156.
+ * Remove c++filt from binutils-multiarch.
+ * Rename /usr/bin/ld from multiarch build to ld.bfd. Closes: #582490.
+
+ -- Matthias Klose <doko@debian.org> Thu, 27 May 2010 10:40:48 +0200
+
+binutils (2.20.51.20100518-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100518.
+
+ -- Matthias Klose <doko@debian.org> Tue, 18 May 2010 13:29:45 +0200
+
+binutils (2.20.51.20100428-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100428.
+
+ -- Matthias Klose <doko@debian.org> Wed, 28 Apr 2010 10:07:28 +0200
+
+binutils (2.20.51.20100418-2) experimental; urgency=low
+
+ * Add upper dependency
+
+ -- Matthias Klose <doko@debian.org> Sun, 18 Apr 2010 20:52:41 +0200
+
+binutils (2.20.51.20100418-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100418.
+ * debian/*.shlibs.in: Automate upstream version changes.
+ * Configure native build --with-sysroot=/. Closes: #556126.
+ * Move the ld.gold binary into the binutils package, just keep the
+ diversion (ld) in the binutils-gold package.
+ * Linker selection: ld is used by default, to use the gold linker,
+ pass -fuse-linker-plugin (no other side effects if -flto/-fwhopr
+ is not passed). To force ld.bfd or ld.gold, pass -B/usr/lib/compat-ld
+ for ld.bfd or /usr/lib/gold-ld for ld.gold.
+ * Apply proposed patch for ARM: Add option to disable merging of adjacent
+ exidx unwinder entries.
+
+ [ Jonathan Nieder ]
+ * Clean up diversion handling in binutils-multiarch:
+ - remove diversion of libbfd.a and libopcodes.a. Closes: #545067.
+ - wait for the new version to be unpacked before removing old diversions
+ - avoid messages from re-adding diversions when upgrading from a version
+ that already has them
+ - remove diversions when downgrading to a version that does not have
+ them (for example, when recovering from an upgrade failure)
+ * Add diversion for ld.bfd in binutils-multiarch.
+ * Update comment in debian/rules to acknowledge that binutils-multiarch
+ includes a linker now.
+ * Add c++filt to binutils-multiarch.
+ * Remove elfedit from binutils-multiarch.
+ Its functionality does not depend on the list of supported targets.
+ * Fixup to version changes handling.
+
+ -- Matthias Klose <doko@debian.org> Sun, 18 Apr 2010 14:18:59 +0200
+
+binutils (2.20.51.20100405-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100405.
+ * debian/*.shlibs: Update to the version from the trunk.
+ * Mangle the soname of the binutils libraries to be different than
+ the default name. Closes: #557620.
+ Packaged cross builds should do the same.
+ * Add diversion for elfedit in binutils-multiarch (Jonathan Nieder).
+ Closes: #576126.
+ * Convert to quilt (Sedat Dilek).
+ * Update to proposed patch to enable both gold and ld in a single toolchain.
+ The gold binary is now installed as `gold'. Keep the name `ld.gold'.
+
+ -- Matthias Klose <doko@debian.org> Mon, 05 Apr 2010 14:49:46 +0200
+
+binutils (2.20.51.20100227-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100227.
+ * debian/*.shlibs: Update to the version from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Sat, 27 Feb 2010 08:55:05 +0100
+
+binutils (2.20.51.20100222-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100222.
+ * debian/*.shlibs: Update to the version from the trunk.
+ * binutils-dev: Install plugin-api.h.
+ * Ignore testsuite regressions on armel.
+
+ -- Matthias Klose <doko@debian.org> Tue, 23 Feb 2010 02:27:28 +0100
+
+binutils (2.20.51.20100216-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100216.
+ * debian/*.shlibs: Update to the version from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Tue, 16 Feb 2010 17:49:47 +0100
+
+binutils (2.20.51.20100112-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100112.
+ * debian/*.shlibs: Update to the version from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Tue, 12 Jan 2010 09:06:51 +0100
+
+binutils (2.20.51.20100109-2) experimental; urgency=low
+
+ * Regenerate ld/configure (includes ld in the binutils package).
+
+ -- Matthias Klose <doko@debian.org> Mon, 11 Jan 2010 01:48:09 +0100
+
+binutils (2.20.51.20100109-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100109.
+ - PR gold/10980: Support more options available by current GNU ld.
+ Closes: #555886.
+ - Fix PR gold/11072: Discard .gnu_debuglink sections, taken from the trunk.
+ Closes: #563366.
+ * debian/*.shlibs: Update to the version from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Sat, 09 Jan 2010 14:32:33 +0100
+
+binutils (2.20.51.20100101-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20100101.
+ * debian/*.shlibs: Update to the version from the trunk.
+ * Remove patches available on the trunk.
+
+ -- Matthias Klose <doko@debian.org> Fri, 01 Jan 2010 18:49:42 +0100
+
+binutils (2.20.1-11) unstable; urgency=medium
+
+ * Fix PR gold/10893, IFUNC support for gold backported from the trunk
+ (Aurelian Jarno). Closes: #585051.
+
+ -- Matthias Klose <doko@debian.org> Mon, 14 Jun 2010 07:17:13 +0200
+
+binutils (2.20.1-10) unstable; urgency=low
+
+ * Drop build dependency on expect-tcl8.3. Closes: #472964.
+
+ -- Matthias Klose <doko@debian.org> Sun, 30 May 2010 12:23:46 +0200
+
+binutils (2.20.1-9) unstable; urgency=high
+
+ * [arm] branches to weak symbols, update patch from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Thu, 06 May 2010 15:42:22 +0200
+
+binutils (2.20.1-8) unstable; urgency=low
+
+ * [arm] branches to weak symbols, patch taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Thu, 29 Apr 2010 20:36:07 +0200
+
+binutils (2.20.1-7) unstable; urgency=low
+
+ * Apply proposed patch for ARM: Add option to disable merging of adjacent
+ exidx unwinder entries. Addresses PR libgcj/40860.
+
+ -- Matthias Klose <doko@debian.org> Tue, 20 Apr 2010 22:51:35 +0000
+
+binutils (2.20.1-6) unstable; urgency=low
+
+ * Move the ld.gold binary into the binutils package, just keep the
+ diversion (ld) in the binutils-gold package.
+ * Linker selection: ld is used by default, to use the gold linker,
+ pass -fuse-linker-plugin (no other side effects if -flto/-fwhopr
+ is not passed). To force ld.bfd or ld.gold, pass -B/usr/lib/compat-ld
+ for ld.bfd or /usr/lib/gold-ld for ld.gold.
+ * Disable building gold on arm. Use gold from the trunk, if needed.
+ * Backport fixups of Loongson2F from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Sat, 17 Apr 2010 18:27:45 +0200
+
+binutils (2.20.1-5) unstable; urgency=medium
+
+ * Apply patch for PR gas/11456: Use memcpy to copy overlap memory.
+
+ -- Matthias Klose <doko@debian.org> Fri, 02 Apr 2010 01:36:07 +0200
+
+binutils (2.20.1-4) unstable; urgency=low
+
+ * Mangle the soname of the binutils libraries to be different than
+ the default name. Closes: #557620.
+ Packaged cross builds should do the same.
+ * Reduce ARM linking time (backport from the trunk).
+ * Apply fix for PR ld/11426, taken from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Tue, 30 Mar 2010 22:32:12 +0200
+
+binutils (2.20.1-3) unstable; urgency=low
+
+ * binutils-gold: Install the gold binary as `gold' as well, as proposed
+ by a patch to enable both gold and ld in a single toolchain.
+
+ -- Matthias Klose <doko@debian.org> Sun, 21 Mar 2010 06:43:48 +0100
+
+binutils (2.20.1-2) unstable; urgency=low
+
+ * Fix version in debian/*shlibs to match the release version;
+ the 2.20.1 upstream release identifies as 2.20.1.20100303.
+
+ -- Matthias Klose <doko@debian.org> Mon, 08 Mar 2010 18:01:22 +0100
+
+binutils (2.20.1-1) unstable; urgency=low
+
+ * New upstream release.
+ * Don't set has_ifunc_symbols if the symbol comes from a shared library
+ (backport from the trunk).
+ * Don't include documentation files in the -cross packages.
+ Closes: #571522. LP: #514509.
+ * Fix typo in ld documentation. LP: #497923.
+ * Add readelf --unwind support for ARM.
+
+ -- Matthias Klose <doko@debian.org> Mon, 08 Mar 2010 04:47:46 +0100
+
+binutils (2.20-6) unstable; urgency=low
+
+ * Apply updates from the 2.20 branch up to 20100205
+ - 135_arm_dis_thumb2.dpatch: Remove, applied upstream.
+ - 136_gold_gnu_debuglink.dpatch: Remove, applied upstream.
+ * armel: Fix ld-shared/shared.exp and ld-elfvsb/elfvsb.exp failures
+ (proposed patch, Matthew Gretton-Dann). Closes: #564685. LP: #446478.
+ * Fix PR other/42602: demangling a global constructors symbol.
+ Closes: #561150.
+
+ -- Matthias Klose <doko@debian.org> Fri, 05 Feb 2010 20:01:20 +0100
+
+binutils (2.20-5) unstable; urgency=low
+
+ * Apply updates from the 2.20 branch up to 20100109
+ * Apply patches from the trunk:
+ - [arm] Prevent disassembler from aborting on an invalid Thumb2 instruction.
+ - Fix PR gold/11072: Discard .gnu_debuglink sections. Closes: #563366.
+ - Fix PR ld/11138: internal error when DSO is before object files.
+ Closes: #562822.
+ - Fix PR gold/11042: COPY relocs need for the dynamic object.
+ Closes: #559183.
+ - Fix PR gold/10916: Fix --exclude-libs with undefined symbol.
+ Closes: #555012.
+ - Fix PR gold/10979: gold linker crashes. Closes: #553916.
+ - Fix PR gas/10740: Intel syntax far jumps broken. Closes: #541535.
+
+ -- Matthias Klose <doko@debian.org> Sat, 09 Jan 2010 10:43:04 +0100
+
+binutils (2.20-4) unstable; urgency=low
+
+ * Fix binutils-gold update. Closes: #555734.
+ * Don't configure gold for spu on powerpc.
+
+ -- Matthias Klose <doko@debian.org> Wed, 11 Nov 2009 23:33:20 +0100
+
+binutils (2.20-3) unstable; urgency=low
+
+ * Apply updates from the 2.20 branch up to 20091108:
+ - Fix PR gold/10876 (closes: #553435), PR gold/10910, PR gold/10860,
+ PR gold/10880 (closes: #553512, #553436), PR gold/10887,
+ PR gold/10893, PR gold/10895 (thanks to Peter Fritzsche for tracking
+ the gold reports).
+ * Fix libiberty build failure on sh4 (Nobuhiro Iwamatsu). Closes: #550810.
+ * PR ld/10858: Fix pie on mips/mipsel. Closes: #526961.
+ * Ignore regressions on sparc; the proper fix is to fix the testcases
+ for v9.
+ * Remove the conflict between binutils-multiarch and binutils-gold.
+ Closes: #521106.
+
+ -- Matthias Klose <doko@debian.org> Tue, 10 Nov 2009 02:15:41 +0100
+
+binutils (2.20-2) unstable; urgency=high
+
+ * Apply updates from the 2.20 branch up to 20091028:
+ - Fix PR binutils/10802, PR binutils/10793, PR binutils/10792,
+ PR gas/10856.
+ - Remove local patches now in the branch.
+ * Ignore regressions on armel when building with gcc-4.4; the proper fix
+ is to build the testcases using -fno-section-anchors.
+
+ -- Matthias Klose <doko@debian.org> Thu, 29 Oct 2009 22:17:42 +0100
+
+binutils (2.20-1) unstable; urgency=low
+
+ * binutils 2.20 final release.
+ - Fix PR binutils/10785, memory corruptions.
+ - PR ld/10749, ia64 linker failure.
+ - PR gas/2117, ia64 assembler fix.
+ - gold updates.
+ * Configure with --enable-plugins. Closes: #550088.
+ * debian/test-suite-compare.py: Don't count untested test cases as
+ regressions.
+ * binutils-gold: Install /usr/lib/compat-ld/ld to point to the
+ old linker. To use the old linker when gold is installed, use
+ gcc -B/usr/lib/compat-ld/ (including the trailing slash).
+
+ -- Matthias Klose <doko@debian.org> Sat, 17 Oct 2009 12:22:30 +0200
+
+binutils (2.19.91.20091006-1) unstable; urgency=low
+
+ * Snapshot, taken from the 2.20 release branch 20091006.
+ - cfi_sections changes applied.
+ * debian/*.shlibs: Update to the version from the branch.
+ * binutils-gold: Build the testsuite as part of the check target
+ instead of the build target to avoid build failures when the
+ installed binutils soname is the same as the one which is built
+ (gas is segfaulting). Just a workaround, not a solution.
+ * Add 150_gold_copyrelocs.dpatch, add -z copyrelocs option for gold.
+ * binutils-source: Depend on texinfo, zlib1g-dev.
+
+ -- Matthias Klose <doko@debian.org> Tue, 06 Oct 2009 22:13:24 +0200
+
+binutils (2.19.91.20091003-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.20 release branch 20091003.
+ - Fix PR ld/9863, regression in testsuite on armel.
+ - Fix regressions seen in the GCC/libjava testsuite.
+ * debian/*.shlibs: Update to the version from the branch.
+ * No need to build libiberty_pic.a twice.
+
+ -- Matthias Klose <doko@debian.org> Sat, 03 Oct 2009 14:59:14 +0200
+
+binutils (2.19.91.20090927-1) unstable; urgency=low
+
+ * Snapshot, taken from the 2.20 release branch 20090927.
+ * debian/*.shlibs: Update to the version from the branch.
+ * On mips/mipsel disabled -pie/--pie-executable. Still broken,
+ see #526961. Add an option --force-pie on mips/mipsel only
+ for testing purposes.
+ Change requested by debian-release (Andreas Barth).
+
+ -- Matthias Klose <doko@debian.org> Sun, 27 Sep 2009 11:56:06 +0200
+
+binutils (2.19.91.20090923-1) unstable; urgency=medium
+
+ * Snapshot, taken from the 2.20 release branch 20090923 (last upload
+ was taken from the trunk)..
+ * debian/*.shlibs: Update to the version from the branch.
+
+ -- Matthias Klose <doko@debian.org> Wed, 23 Sep 2009 09:50:04 +0200
+
+binutils (2.19.91.20090922-1) unstable; urgency=low
+
+ * Snapshot, taken from the 2.20 release branch 20090922.
+ * debian/*.shlibs: Update to the version from the branch.
+
+ -- Matthias Klose <doko@ubuntu.com> Tue, 22 Sep 2009 19:36:50 +0200
+
+binutils (2.19.91.20090910-1) unstable; urgency=low
+
+ * Snapshot, taken from the 2.20 release branch 20090910, corresponding
+ to the 2.19.90 upstream snapshot.
+ * Fix Thumb-2 shared libraries (Daniel Jacobowitz), patch taken
+ from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Thu, 10 Sep 2009 17:05:30 +0200
+
+binutils (2.19.90.20090909-1) unstable; urgency=low
+
+ * Snapshot, taken from the 2.20 release branch 20090909.
+ * debian/*.shlibs: Update to the version from the branch.
+ * Disable build failure for regressions on mips/mipsel.
+
+ -- Matthias Klose <doko@debian.org> Wed, 09 Sep 2009 09:50:36 +0200
+
+binutils (2.19.51.20090827-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20090827.
+ - Fix PR ld/10518: In linker scripts override a "*" match by any other
+ wildcard match. Closes: #540751.
+ * debian/*.shlibs: Update to the version from the trunk. Closes: #540800.
+ * Add sysroot support for cross builds (Hector Oron). Closes: #522480.
+ * Update long description of binutils-doc. Closes: #428764.
+ * Tighten build dependency on autoconf.
+ * Fix some lintian warnings.
+
+ -- Matthias Klose <doko@debian.org> Thu, 27 Aug 2009 17:09:28 +0200
+
+binutils (2.19.51.20090805-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20090805.
+ - Fix PR binutils/10364, strip not failing on unwritable files.
+ Closes: #276428.
+ - Fix PR binutils/10363, objdump -T crashing on corrupted file.
+ Closes: #487963.
+ * 129_cortex_a8.dpatch: Fix a couple of cortex-a8 erratum bugs.
+
+ -- Matthias Klose <doko@debian.org> Wed, 05 Aug 2009 10:24:40 +0200
+
+binutils (2.19.51.20090723-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20090723.
+ * debian/*.shlibs: Update to the version from the trunk.
+ * Undo the reversion in the last upload, use the upstream fix instead.
+
+ -- Matthias Klose <doko@debian.org> Thu, 23 Jul 2009 09:39:50 +0200
+
+binutils (2.19.51.20090722-2) unstable; urgency=low
+
+ * Apply build-id patch to avoid memory corruption (taken from Fedora).
+ * Revert ld/ldlang.c rev 1.312. Closes: #537389.
+
+ -- Matthias Klose <doko@debian.org> Wed, 22 Jul 2009 19:19:30 +0200
+
+binutils (2.19.51.20090722-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20090722.
+ * debian/*.shlibs: Update to the version from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Wed, 22 Jul 2009 16:51:11 +0200
+
+binutils (2.19.51.20090714-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20090714.
+ * debian/*.shlibs: Update to the version from the trunk.
+ * Install a libiberty compiled with -fPIC as libiberty_pic.a.
+ Closes: #530888.
+ * Remove obsolete README.Debian. Closes: #324260.
+ * binutils-dev: Include demangle.h. Closes: #134985.
+
+ -- Matthias Klose <doko@debian.org> Tue, 14 Jul 2009 13:13:37 -0400
+
+binutils (2.19.51.20090704-1) unstable; urgency=low
+
+ * Snapshot, taken from the trunk 20090704.
+ - debian/patches/128_arm_eabi_auto_it.dpatch: Remove, applied upstream.
+ * debian/*.shlibs: Update to the version from the trunk.
+ * Bump standards version.
+
+ -- Matthias Klose <doko@debian.org> Sat, 04 Jul 2009 10:37:18 +0200
+
+binutils (2.19.51.20090613-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20090613.
+ * debian/*.shlibs: Update to the version from the trunk.
+ * Build binutils-gold on armel.
+ * Apply proposed patch for new option for automatically generating IT blocks.
+
+ -- Matthias Klose <doko@debian.org> Sat, 13 Jun 2009 14:39:41 +0000
+
+binutils (2.19.51.20090508-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20090508.
+ - Fix PR binutils/9743, relocation issues on arm.
+ * debian/*.shlibs: Update to the version from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Fri, 08 May 2009 11:08:14 +0200
+
+binutils (2.19.51.20090419-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20090419.
+ * debian/*.shlibs: Update to the version from the trunk.
+ * debian/patches/013_bash_in_ld_testsuite.dpatch: Update.
+
+ -- Matthias Klose <doko@debian.org> Sun, 19 Apr 2009 22:12:19 +0200
+
+binutils (2.19.51.20090315-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20090315.
+ * debian/*.shlibs: Update to the version from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Sun, 15 Mar 2009 11:38:58 +0100
+
+binutils (2.19.1-1) unstable; urgency=low
+
+ * Upload to unstable.
+ * binutils-source: Make .dpatch files executable.
+
+ -- Matthias Klose <doko@debian.org> Sun, 15 Feb 2009 22:46:34 +0100
+
+binutils (2.19.1-1~exp1) experimental; urgency=low
+
+ * Binutils 2.19.1 release.
+ * debian/*.shlibs: Update to the release version.
+
+ -- Matthias Klose <doko@debian.org> Wed, 04 Feb 2009 09:57:55 +0100
+
+binutils (2.19.0.20090110-1~exp1) experimental; urgency=low
+
+ * Update to the binutils-2_19-branch 20090110.
+ - Fix PR binutils/7011. LP: #254790.
+ * debian/*.shlibs: Update to the version from the branch.
+
+ -- Matthias Klose <doko@debian.org> Sat, 10 Jan 2009 13:56:09 +0100
+
+binutils (2.19-1~exp2) experimental; urgency=low
+
+ * debian/patches/129_scale-DW_CFA_advance_loc.dpatch: Scale
+ DW_CFA_advance_loc[124] output values.
+ * debian/patches/128_arm_relocs_against_weak.dpatch: Fix R_ARM_THM_CALL
+ relocations against undefined weak symbols in shared libraries.
+
+ -- Matthias Klose <doko@debian.org> Sun, 30 Nov 2008 13:22:11 +0100
+
+binutils (2.19-1~exp1) experimental; urgency=low
+
+ * Binutils 2.19 release.
+ * debian/*.shlibs: Update to the release version.
+ * Build binutils-gold on powerpc.
+ * debian/control: Update to GPL3, reference the GFDL.
+ * Fail the build if the testsuite shows regressions compared to the
+ last (installed) build.
+ * Make lintian more happy.
+
+ -- Matthias Klose <doko@debian.org> Sun, 26 Oct 2008 13:06:27 +0200
+
+binutils (2.18.93.20081009-1) experimental; urgency=low
+
+ * Snapshot, taken from the 2.19 branch 20081009 (corresponding to the
+ 2.18.93 upstream snapshot.
+ * debian/*.shlibs: Update to the version from the branch.
+ * Add build dependency on zlib1g-dev.
+ * In gprof(1), remove references to monitor(3) and profil(2).
+ Closes: #293948.
+
+ -- Matthias Klose <doko@ubuntu.com> Sat, 11 Oct 2008 16:45:35 +0000
+
+binutils (2.18.92.20081003-1) experimental; urgency=low
+
+ * Snapshot, taken from the 2.19 branch 20081003.
+ * debian/*.shlibs: Update to the version from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Fri, 03 Oct 2008 11:29:16 +0000
+
+binutils (2.18.90.20080910-1) experimental; urgency=low
+
+ * Snapshot, taken from the 2.19 branch 20080910.
+ * debian/*.shlibs: Update to the version from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Fri, 12 Sep 2008 19:23:07 +0200
+
+binutils (2.18.50.20080803-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20080803.
+ * debian/*.shlibs: Update to the version from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Mon, 04 Aug 2008 00:53:47 +0200
+
+binutils (2.18.50.20080707-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20080707.
+ * debian/*.shlibs: Update to the version from the trunk.
+ * include/safe-ctype.h: Add #include of ctype.h before redefining
+ the ctype.h macros (proposed for the trunk).
+ * Add Daniel Jacobowitz as uploader.
+
+ -- Matthias Klose <doko@debian.org> Mon, 07 Jul 2008 01:08:13 +0200
+
+binutils (2.18.50.20080610-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20080610.
+ * debian/*.shlibs: Update to the version from the trunk.
+
+ -- Matthias Klose <doko@debian.org> Tue, 10 Jun 2008 16:21:02 +0200
+
+binutils (2.18.50.20080530-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20080530.
+ * Switch maintainer and uploader.
+ * debian/rules: Explicitely set SHELL to /bin/bash, build-depend on bash.
+ * debian/rules: Fix setting of TARGET for cross builds.
+
+ -- Matthias Klose <doko@debian.org> Fri, 30 May 2008 23:49:40 +0200
+
+binutils (2.18.50.20080507-1) experimental; urgency=low
+
+ * Snapshot, taken from the trunk 20080507.
+ * Remove patches applied upstream: 304_pr4476.dpatch, 305_arm-dis.dpatch,
+ 306_pr4453.dpatch, 307_ld-pic.dpatch, 308_mips-pic.dpatch.
+ * debian/patches/013_bash_in_ld_testsuite.dpatch: Use bash in the ld
+ testsuite (some tests have bashisms).
+ * debian/*.shlibs: Update to the version from the trunk.
+ * On amd64, i386 and sparc, build a binutils-gold package,
+ diverting /usr/bin/ld.
+ * Use expect instead of expect-tcl8.3 on all architectures except hppa.
+ * Remove binutils and gcc build dependencies (versions are in oldstable).
+
+ -- Matthias Klose <doko@debian.org> Thu, 08 May 2008 00:56:30 +0200
+
+binutils (2.18.1~cvs20080103-4) unstable; urgency=medium
+
+ * debian/rules: Remove libiberty in /usr/lib64; workaround for
+ `gcc -print-multi-os-directory' printing the symlink.
+ Closes: #473665, #473591.
+ * Don't include development files in binutils-spu.
+ * Fix binutils-spu build on ppc64 (Andreas Jochens). Closes: #474116.
+ * Build libiberty with -fPIC on mips/mipsel (Aurelian Jarno).
+
+ -- Matthias Klose <doko@debian.org> Sat, 05 Apr 2008 11:21:08 +0200
+
+binutils (2.18.1~cvs20080103-3) unstable; urgency=low
+
+ [ Arthur Loiret ]
+ * Build a binutils for spu-elf target on powerpc and ppc64.
+ - debian/control: Add a binutils-spu package.
+ - debian/binutils-spu.{postinst,postrm,shlibs}: Add.
+ * Add sh64-linux-gnu to multiarch targets.
+ * Fix cross-compilation support.
+ * Make lintian happier:
+ - Use ${source:Version}, ${binary:Version} variables.
+ - Remove -1 from Build-Depends revisions.
+ - Bump Standards-Version to 3.7.3.
+
+ [ Matthias Klose ]
+ * Keep the spu elfscripts in bintutils, remove them from binutils-spu.
+ * debian/patches/307_ld-pic.dpatch: Fix failing ld-shared tests when built
+ with gcc-4.3.
+
+ -- Matthias Klose <doko@debian.org> Sat, 29 Mar 2008 20:32:35 +0100
+
+binutils (2.18.1~cvs20080103-2) unstable; urgency=low
+
+ * debian/patches/306_pr4453.dpatch: Fix PR binutils/4453, taken from
+ the trunk (Aurelian Jarno). Closes: #363423.
+
+ -- Matthias Klose <doko@debian.org> Fri, 21 Mar 2008 20:49:17 +0100
+
+binutils (2.18.1~cvs20080103-1) unstable; urgency=low
+
+ * Update to 20080103 from the binutils-2_18-branch.
+ - Set version number to 2.18.0 (smaller than the one from the trunk).
+ - Fix PR ld/5398. Closes: #452725.
+ * debian/*.shlibs: Update to version from the branch.
+ * debian/patches/305_arm-dis.dpatch: Fix segfault when disassembling ARM
+ code. Closes: #438956.
+ * Support kfreebsd-amd64-gnu and i486-kfreebsd-gnu (Aurilian Jarno):
+ - debian/patches/127_x86_64_i386_biarch.dpatch: Extend for kfreebsd.
+ - debian/rules: biarch enabled binutils for kfreebsd-{amd64,i486}-gnu,
+ kfreebsd-{amd64,i486}-gnu support for cross-builds,
+ kfreebsd-{amd64,i486}-gnu enabled for binutils-multiarch.
+ - Closes: #380373.
+
+ -- Matthias Klose <doko@debian.org> Thu, 03 Jan 2008 21:57:51 +0100
+
+binutils (2.18.1~cvs20071027-2) unstable; urgency=low
+
+ * Do not include static libraries in the multiarch package.
+ * Don't include /usr/lib64 in cross packages. Closes: #450429.
+
+ -- Matthias Klose <doko@debian.org> Sat, 24 Nov 2007 12:13:22 +0100
+
+binutils (2.18.1~cvs20071027-1) unstable; urgency=low
+
+ * Update to 20071027 from the binutils-2_18-branch.
+ - Fix PR ld/4988, assertion failures in ld. Closes: #440015.
+ * debian/*.shlibs: Update to version from the branch.
+
+ -- Matthias Klose <doko@debian.org> Sat, 27 Oct 2007 17:55:41 +0200
+
+binutils (2.18-1) unstable; urgency=low
+
+ [ Matthias Klose ]
+ * New upstream release.
+ - Remove patches applied upstream: 100_warning_arm, 400_gcc42_fix,
+ 401_builddoc.
+ * debian/*.shlibs: Update to release version.
+
+ -- Matthias Klose <doko@debian.org> Wed, 29 Aug 2007 01:07:31 +0200
+
+binutils (2.18~cvs20070812-1) unstable; urgency=low
+
+ [ Matthias Klose ]
+ * New upstream CVS snapshot, taken from the binutils-2_18-branch.
+ * debian/rules: Support parallel=<n> with comma separated keywords
+ in DEB_BUILD_OPTIONS.
+ * debian/rules (clean): Remove stamp files.
+ * debian/*.shlibs: Update to snapshot version.
+ * debian/patches/401_builddoc.dpatch: Fix doc build failure on the branch.
+
+ -- Matthias Klose <doko@debian.org> Sun, 12 Aug 2007 10:56:18 +0200
+
+binutils (2.17cvs20070804-1) unstable; urgency=low
+
+ [ Matthias Klose ]
+ * New upstream CVS snapshot.
+ - PR binutils/4888, fixes objcopy --only-keep-debug. Closes: #435444.
+ * debian/rules: Support parallel=<n> in DEB_BUILD_OPTIONS (see #209008).
+ * debian/*.shlibs: Update to snapshot version.
+
+ -- Matthias Klose <doko@debian.org> Sat, 04 Aug 2007 12:45:07 +0200
+
+binutils (2.17cvs20070801-1) unstable; urgency=medium
+
+ [ Matthias Klose ]
+ * New upstream CVS snapshot.
+ - Fixes objcopy --only-keep-debug on amd64. Closes: #435444.
+ * binutils-multiarch: Enable the armel-linux-gnu target. Closes: #408805.
+
+ -- Matthias Klose <doko@debian.org> Wed, 01 Aug 2007 18:24:51 +0200
+
+binutils (2.17cvs20070718-1) unstable; urgency=low
+
+ [ Matthias Klose ]
+ * New upstream CVS snapshot.
+ - Fix build failure on m68k.
+ * debian/patches/400_gcc42_fix.dpatch: Fix build failure with gcc-4.2.
+ Closes: #433062.
+ * Fix cross build failure while stripping binaries. Closes: #432907.
+
+ -- Matthias Klose <doko@debian.org> Wed, 18 Jul 2007 20:25:03 +0200
+
+binutils (2.17cvs20070713-1) unstable; urgency=low
+
+ [ Matthias Klose ]
+ * New upstream CVS snapshot.
+ - Remove patches applied upstream: 301_pr4436.dpatch, 302_pr4448.dpatch,
+ 303_pr4454.dpatch, 305_pr4497.dpatch, 306_ld_demangler_segfault.dpatch,
+ 307_pr4558.dpatch.
+ - Fix build failure with gcc-4.2. Closes: #429738.
+ - Fix kernel build with grsecurity patch. Closes: #430041.
+ * debian/copyright: Include GPL-3.
+ * debian/rules: Fix version extraction.
+ * debian/rules: Honor `noopt' in DEB_BUILD_OPTIONS.
+
+ -- Matthias Klose <doko@debian.org> Fri, 13 Jul 2007 14:45:21 +0200
+
+binutils (2.17cvs20070426-8) unstable; urgency=low
+
+ * Fix PR gas/4558.
+ * debian/rules: Add empty NJOBS macro.
+
+ -- Matthias Klose <doko@debian.org> Mon, 28 May 2007 09:06:35 +0000
+
+binutils (2.17cvs20070426-7) unstable; urgency=low
+
+ * 306_ld_demangler_segfault.dpatch: new CVS patch from Alan Modra to fix
+ segfaults in ld seen when building, e.g. openipmi.
+
+ * debian/copyright: update source location and copyright years.
+ * debian/rules: idem.
+
+ -- James Troup <james@nocrew.org> Wed, 23 May 2007 02:19:09 +0100
+
+binutils (2.17cvs20070426-6) unstable; urgency=low
+
+ * Fix PR ld/4497, regression introduced with the fix for PR ld/4454.
+ Closes: #423496.
+ * Fix binutils/4476, readelf support for --hash-style=gnu. Closes: #421790.
+
+ -- Matthias Klose <doko@debian.org> Mon, 14 May 2007 10:51:40 +0200
+
+binutils (2.17cvs20070426-5) unstable; urgency=low
+
+ * Fix PR ld/4454.
+
+ -- Matthias Klose <doko@debian.org> Sun, 06 May 2007 09:50:29 +0200
+
+binutils (2.17cvs20070426-4) unstable; urgency=low
+
+ * Fix PR gas/4448, overstrict check for powerpc lswi. Closes: #421799.
+
+ -- Matthias Klose <doko@debian.org> Wed, 2 May 2007 18:26:03 +0200
+
+binutils (2.17cvs20070426-3) unstable; urgency=low
+
+ * Update debian/*.shlibs files. Closes: #421454.
+ * Fix PR gas/4436, wrong reject in powerpc opcode table checks.
+ Closes: #421455.
+ * Fix build failure on arm (Aurelian Jarno). Closes: #421365.
+ * Compare testsuite results of the installed binutils with the built one.
+
+ -- Matthias Klose <doko@debian.org> Mon, 30 Apr 2007 07:47:09 +0200
+
+binutils (2.17cvs20070426-2) unstable; urgency=low
+
+ * Fix typo preparing the binutils-hppa64 package.
+
+ -- Matthias Klose <doko@debian.org> Fri, 27 Apr 2007 08:06:49 +0200
+
+binutils (2.17cvs20070426-1) unstable; urgency=low
+
+ [ James Troup ]
+ * New upstream CVS snapshot.
+ * debian/test-suite-compare.py: simplistic comparator for binutils test
+ suite runs.
+
+ [ Matthias Klose ]
+ * Merge changes from the experimental uploads:
+ * debian/patches/121_i386_x86_64_biarch.dpatch: Remove, applied upstream.
+ * Build a binutils-source package (containing the patched sources).
+ * Check for a working expect before building the package.
+ * Configure the multiarch build for x86_64-linux-gnu instead of
+ x86_64-linux.
+ * debian/rules: Don't strip binaries if nostrip is in DEB_BUILD_OPTIONS.
+ * debian/rules: Don't try to strip shell scripts.
+ * Configure --with-pkgversion to include the distribution name.
+ * debian/patches/000_print_debian_version.dpatch: Remove.
+ * debian/control: Build-depend on lsb-release.
+ * Enable spu target in powerpc and binutils-multiarch build.
+ * Don't include embedspu in binutils-multiarch on powerpc.
+ * debian/control: Set priority for source package to optional.
+
+ -- James Troup <james@nocrew.org> Fri, 27 Apr 2007 01:29:57 +0100
+
+binutils (2.17-3) unstable; urgency=low
+
+ * debian/rules (configure-multi-stamp): drop i486-kfreebsd-gnu again as
+ it breaks objdump for i386 on amd64. Closes: #380539
+
+ -- James Troup <james@nocrew.org> Tue, 3 Oct 2006 00:53:17 +0100
+
+binutils (2.17-2) unstable; urgency=low
+
+ * The "Laisse le Wookie gagner" release.
+
+ * 127_x86_64_i386_biarch.dpatch: new patch from Aurelien Jarno
+ <aurelien@aurel32.net> to add (/usr)/lib32 to the search paths on
+ amd64. Closes: #369052
+
+ * debian/rules (configure-multi-stamp): add i486-kfreebsd-gnu at request
+ of Aurelien Jarno. Closes: #315306
+
+ -- James Troup <james@nocrew.org> Wed, 26 Jul 2006 20:33:13 +0100
+
+binutils (2.17-1) unstable; urgency=low
+
+ * New upstream release.
+ * 120_mips_xgot_multigot_workaround.dpatch: removed - superseded by a
+ proper fix upstream. Closes: #274738
+ * debian/binutils.shlibs, debian/binutils-multiarch.shlibs,
+ debian/binutils-hppa64.shlibs: updated SONAME to 2.17.
+
+ -- James Troup <james@nocrew.org> Mon, 26 Jun 2006 13:17:36 +0100
+
+binutils (2.16.1cvs20060507-1) unstable; urgency=low
+
+ * New upstream CVS snapshot of 'binutils-2_17-branch'.
+
+ * debian/control (Standards-Version): bump to 3.7.2.0.
+
+ -- James Troup <james@nocrew.org> Sun, 7 May 2006 19:57:08 +0100
+
+binutils (2.16.1cvs20060413-1) unstable; urgency=low
+
+ * New upstream CVS snapshot.
+ * 120_mips_xgot_multigot_workaround.dpatch: updated to work with CVS
+ r1.163 of bfd/elfxx-mips.c, pass 'info' instead of 'output_bfd' to
+ MIPS_ELF_GOT_MAX_SIZE().
+
+ * Patch from NIIBE Yutaka <gniibe@fsij.org> in #280884:
+ * debian/rules (configure-multi-stamp): Support m32r-linux. Closes:
+ #340264
+ * debian/rules: Run 'make check' only if build == host.
+
+ * debian/rules: Also don't run 'make check' if nocheck is in
+ DEB_BUILD_OPTIONS. Based on a patch from Michael Banck
+ <mbanck@debian.org>. Closes: #315290
+
+ * Integrate most of a patch to build arbitrary binutils-$TARGET
+ cross-packages from #231707. Thanks to Nikita V. Youshchenko
+ <yoush@cs.msu.su> and Josh Triplett <josh@freedesktop.org>.
+
+ * debian/copyright: update to include GFDL. Closes: #81950
+ * debian/copyright: update FSF address.
+
+ * debian/rules: move non-architecture specific conflicts (gas,
+ elf-binutils, modutils (<< 2.4.19-1)) out of a substitued variable and
+ into the control file. Rename variable to extraConflicts.
+ * debian/control: likewise.
+
+ -- James Troup <james@nocrew.org> Sat, 15 Apr 2006 03:05:41 +0100
+
+binutils (2.16.1cvs20060117-1) unstable; urgency=low
+
+ * New upstream CVS snapshot.
+
+ * 118_arm_pass_all.dpatch, 125_fix_tc_arm_cast.dpatch: merged upstream -
+ removed.
+
+ -- James Troup <james@nocrew.org> Wed, 18 Jan 2006 02:25:25 +0000
+
+binutils (2.16.1cvs20051214-1) unstable; urgency=low
+
+ * New upstream CVS snapshot.
+ * Fix ld segfaults on ia64. Closes: #342777
+
+ * 126_fix_PROVIDE_HIDDEN.dpatch: merged upstream - removed.
+
+ -- James Troup <james@nocrew.org> Wed, 14 Dec 2005 08:06:37 +0000
+
+binutils (2.16.1cvs20051206-1) unstable; urgency=low
+
+ * New upstream CVS snapshot.
+ * Fixes linking of qemu. Closes: #340328
+
+ * 126_fix_PROVIDE_HIDDEN.dpatch: new patch from Thiemo Seufer to fix
+ handling of hidden symbols which were provided by a linker
+ script. Closes: #342307
+
+ * debian/control (Standards-Version): updated to 3.6.2.1.
+
+ -- James Troup <james@nocrew.org> Sat, 10 Dec 2005 05:23:34 +0000
+
+binutils (2.16.1cvs20051117-1) unstable; urgency=low
+
+ * New upstream CVS snapshot.
+ * Fixes c++filt's flushing of stdout which broke gcj. Closes: #339287
+
+ * debian/control (Build-Depends): switch from expect to expect-tcl8.3
+ since tcl8.4's broken threading causes the testsuite to fail entirely
+ on hppa. Closes: #339509
+
+ -- James Troup <james@nocrew.org> Thu, 17 Nov 2005 13:15:15 +0000
+
+binutils (2.16.1cvs20051109-1) unstable; urgency=low
+
+ * New upstream CVS snapshot.
+ * Fixes broken PLT handling on m68k. Closes: #327780
+ * Don't compile flex files with -Werror, fixing mips builds.
+ Closes: #333980
+ * Don't check undefined symbols introduced by "ld -u" for TLS. Closes:
+ #326103
+
+ * 117_mips_symbolic_link.dpatch: merged upstream - removed.
+
+ * debian/rules: pass --disable-werror on ia64 as current gcc generates
+ too many false positives. Closes: #336939
+
+ * 125_fix_tc_arm_cast.dpatch: new patch from Lennert Buytenhek to fix
+ cast warning and arm builds. Closes: #336175
+
+ * 121_i386_x86_64_biarch.dpatch: imported from Ubuntu at request of
+ Daniel Jacobwitz to fix biarch linking on i386/amd64. Closes:
+ #334626, #334673
+
+ * debian/rules: remove any reference to pkgstriptranslations - an
+ Ubuntu-ism that shouldn't have been in the Debian package in the first
+ place but that isn't needed in Ubuntu any more in any event.
+
+ * debian/rules: MAKEOVERRIDES is now clobbered by the top level
+ Makefile, so switch to overriding MAKE itself (sic) to pass the
+ customized VERSION variable/string down to sub-directories for
+ -multiarch and -hppa64 builds. Thanks to Daniel Silverstone for the
+ suggestion.
+
+ -- James Troup <james@nocrew.org> Fri, 11 Nov 2005 20:38:22 +0000
+
+binutils (2.16.1cvs20050902-1) unstable; urgency=low
+
+ * New upstream CVS snapshot.
+ * Fixes --as-needed on sparc and hppa. Closes: #320697
+ * Fixes buffer overflows and other crashes. Closes: #311975
+
+ * 124_readelf_robustify.dpatch: merged upstream - removed.
+ * 001_ld_makefile_patch: regenerated with help of wiggle.
+
+ * debian/*.shlibs: update to version 2.16.91.
+
+ * debian/copyright: use canonical GNU URL. Update copyright years.
+ * debian/rules: update version and copyright.
+
+ * debian/rules (pre-build): not relevant with a CVS snapshot which
+ doesn't have pre-generated info files - removed.
+ * debian/rules (clean): don't save info files for the same reason, in
+ fact explicitly remove them.
+ * debian/rules (build_stamps): drop pre-build.
+
+ -- James Troup <james@nocrew.org> Sat, 3 Sep 2005 00:30:56 +0100
+
+binutils (2.16.1-3) unstable; urgency=low
+
+ * debian/rules: remove powerpc libc header hack.
+ * debian/include/sys/procfs.h: remove.
+
+ * 124_readelf_robustify.dpatch: new patch from Jakub Jelinek to
+ robustify readelf. Thanks to Thiemo Seufer <ths@networkno.de>.
+ Closes: #318344
+
+ -- James Troup <james@nocrew.org> Wed, 31 Aug 2005 05:03:11 +0100
+
+binutils (2.16.1-2) unstable; urgency=low
+
+ * debian/include/sys/procfs.h: Include fixed powerpc libc header, to fix
+ FTBFS on powerpc. Temporary fix, to be removed with glibc-2.3.5.
+
+ -- Matthias Klose <doko@debian.org> Sun, 10 Jul 2005 16:35:17 +0200
+
+binutils (2.16.1-1) unstable; urgency=medium
+
+ * New upstream version.
+ * debian/patches/117_mips_symbolic_link.dpatch: Updated, apply it again.
+ (Thiemo Seufer).
+ * debian/patches/130_bfd_doc_makefile.dpatch: Remove, applied upstream.
+ * debian/control: Build depend on dpkg-dev (>= 1.13.9), needed to determine
+ the GNU architecture type.
+ * The symlinks for the tools change to the the new output of
+ dpkg-architecture -qDEB_HOST_GNU_TYPE (i.e. i386-linux-ld becomes
+ i486-linux-gnu-ld).
+ * Change the values for --enable-targets according to the dpkg-architecture
+ update.
+ * Configure the hppa64 cross compiler for hppa64-linux-gnu. Adjust
+ the hppa64 install target.
+ * debian/*shlibs: Update to version 2.16.1.
+ * Make restoring of saved pregenerated info files more robust.
+
+ -- Matthias Klose <doko@debian.org> Sat, 9 Jul 2005 14:58:49 +0200
+
+binutils (2.16-1) unstable; urgency=low
+
+ * Update to CVS 2.16 branch 20050612.
+ * debian/patches/130_bfd_doc_makefile.dpatch: New patch to fix
+ build failure in bfd/doc.
+ * debian/watch: New file.
+
+ -- Matthias Klose <doko@debian.org> Sun, 12 Jun 2005 12:29:12 +0200
+
+binutils (2.16-0) experimental; urgency=low
+
+ * New upstream release.
+ - Fixes build failure using gcc-4.0 (closes: #299671).
+ * debian/patches:
+ - 000_print_debian_version.dpatch: Updated.
+ - 001_ld_makefile_patch.dpatch, 002_gprof_profile_arcs.dpatch,
+ 002_gprof_profile_arcs.dpatch: Regenerated.
+ - 012_check_ldrunpath_length.dpatch: Updated.
+ - 112_fix_reloc_sizing.dpatch, 113_elf_backend_hide_symbol.dpatch,
+ 114_mips_delay_slots_in_branch.dpatch, 115_fix_sparc_fmov.dpatch,
+ 116_ar_nonexistent_files.dpatch: Removed, applied upstream.
+ - 117_mips_symbolic_link.dpatch: Disabled. Needs an update.
+ - 118_arm_pass_all.dpatch: Regenerated.
+ - 119_fix_gas_double_negative.dpatch: Removed, applied upstream.
+ - 120_mips_xgot_multigot_workaround.dpatch: Updated.
+ - 121_ia64_unwind_fixes.dpatch, 122_m68k_undefweak_symbols.dpatch:
+ Removed, applied upstream.
+ * Merge Ubuntu changes:
+ - debian/patches:
+ - 123_dont_add_to_undefs_twice.dpatch: Removed, applied upstream.
+ - debian/rules: Call pkgstriptranslations if present.
+ * debian/rules:
+ - Fix VERSION extraction.
+ - Save info files before build and restore them in clean target.
+ * debian/control:
+ - Add me as an uploader.
+
+ -- Matthias Klose <doko@ubuntu.com> Fri, 6 May 2005 18:43:09 +0200
+
+binutils (2.15-6) unstable; urgency=low
+
+ * 123_bfd_overflow_fix.dpatch: new patch from Alan Modra to fix BFD
+ overflows. Closes: #308625
+
+ -- James Troup <james@nocrew.org> Sat, 21 May 2005 20:20:01 +0100
+
+binutils (2.15-5ubuntu2) hoary; urgency=low
+
+ * debian/rules: Call pkgstriptranslations if present (the package does not
+ use debhelper, thus it does not happen automatically).
+
+ -- Martin Pitt <martin.pitt@ubuntu.com> Fri, 18 Mar 2005 13:07:52 +0000
+
+binutils (2.15-5ubuntu1) hoary; urgency=low
+
+ * 123_dont_add_to_undefs_twice.dpatch: new patch from Alan Modra (PR338) to
+ not add symbols to the undefined list twice, causing an assertion failure
+ in ld when building the kernel on amd64.
+
+ -- Daniel Stone <daniel.stone@canonical.com> Tue, 7 Dec 2004 09:29:31 +0100
+
+binutils (2.15-5) unstable; urgency=low
+
+ * 121_ia64_unwind_fixes.dpatch: new patch from David Mosberger to fix
+ unwind related bugs. Closes: #278836
+ * 122_m68k_undefweak_symbols: new patch from Andreas Schwab to fix undef
+ weak symbols with non-default visibilty on m68k. Closes: #278388
+
+ -- James Troup <james@nocrew.org> Thu, 25 Nov 2004 00:13:28 +0000
+
+binutils (2.15-4) unstable; urgency=low
+
+ * 120_mips_xgot_multigot_workaround.dpatch: new patch from Thiemo Seufer
+ to make multigot/xgot handling exclusive and fix mozilla builds on
+ mipsen. Closes: #272149
+
+ -- James Troup <james@nocrew.org> Thu, 23 Sep 2004 22:44:03 +0100
+
+binutils (2.15-3) unstable; urgency=low
+
+ * 112_fix_reloc_sizing.dpatch: update patch based on revised change from
+ Alan Modra.
+
+ * 116_ar_nonexistent_files.dpatch: new patch from Nick Clifton to fix
+ ar's handling of non-existent files. Closes: #267139
+
+ * 117_mips_symbolic_link.dpatch: new patch from Thiemo Seufer to fix the
+ "final link failed: Bad value" error on mips. Closes: #270619
+
+ * 118_arm_pass_all.dpatch: new kludge patch to fix broken libtool pass_all
+ handling on arm and other arches.
+
+ * 119_fix_gas_double_negative.dpatch: new patch from Alan Modra via
+ Daniel Jacobowitz to fix gas' handling of -- and ++. Closes: #266772
+
+ -- James Troup <james@nocrew.org> Thu, 9 Sep 2004 22:24:08 +0100
+
+binutils (2.15-2) unstable; urgency=low
+
+ * 112_fix_reloc_sizing.dpatch: new patch from Daniel Jacobowitz to fix
+ objcopy relocation sections. Closes: #252719
+
+ * 113_elf_backend_hide_symbol.dpatch: new patch from Alan Modra to fix
+ ld internal error on hppa. Closes: #254549
+
+ * 114_mips_delay_slots_in_branch.dpatch: new patch from Thiemo Seufer to
+ handle delay slots in branch correctly on mips. Closes: #266660
+
+ * 115_fix_sparc_fmov.dpatch: new patch from Jakub Jelinek via Dave
+ Miller to fix bogus fmov* SPARC opcodes. Closes: #267824
+
+ -- James Troup <james@nocrew.org> Tue, 31 Aug 2004 22:45:13 +0100
+
+binutils (2.15-1) unstable; urgency=low
+
+ * New upstream release. Closes: #248990, #259458
+ * Fixes -Wl,-z,defs to correctly abort builds with unresolved
+ symbols. Closes: #256481
+ * Better error message for truncation of bignums in as.
+ Closes: #219933
+ * strip(1) no longer corrupts binaries for architectures it doesn't
+ recognise. Closes: #211052
+ * nm -C /usr/lib/libcrypto++.a no longer segfaults. Closes: #247917
+
+ * 105_alpha_rpcc_opcode_fix.dpatch, 106_arm_pic.dpatch,
+ 107_powerpc_ld_segfault.dpatch, 108_m68k_fmoveml_fix.dpatch,
+ 109_objcopy_keep_debug.dpatch, 110_hppa64_local_symbols.dpatch,
+ 111_objcopy_vs_unstripped.dpatch, 906_hjl_libtool_dso.dpatch: merged
+ upstream - removed.
+ * 012_check_ldrunpath_length.dpatch: resynced with wiggle(1).
+
+ * debian/binutils.shlibs, debian/binutils-hppa64.shlibs,
+ debian/binutils-multiarch.shlibs: update for 2.15.
+
+ * debian/rules (install): remove gas.info hack as no longer needed
+ (fixed properly upstream).
+ * debian/rules (clean): remove gas/doc/as.info which doesn't seem to be
+ in the upstream tar ball.
+
+ * debian/rules (binary-arch): install $pkg/ChangeLog.linux only if they
+ exist (because they don't in GNU releases).
+
+ -- James Troup <james@nocrew.org> Thu, 29 Jul 2004 22:44:04 +0100
+
+binutils (2.14.90.0.7-8) unstable; urgency=low
+
+ * debian/rules: don't use gcc-2.95 on m68k. Thanks to Adam Conrad for
+ pointing this out.
+
+ -- James Troup <james@nocrew.org> Wed, 19 May 2004 10:35:44 +0100
+
+binutils (2.14.90.0.7-7) unstable; urgency=low
+
+ * 111_objcopy_vs_unstripped.dpatch: new patch from Alan Modra via Daniel
+ Jacobowitz to fix objcopy on unstripped libraries on alpha and arm.
+ Closes: #234021
+
+ * debian/control (Build-Depends): remove m68k specific build-depends on
+ gcc-2.95 and libc6-dev (<< 2.3). Many thanks to Michael Schmitz for
+ testing this.
+
+ -- James Troup <james@nocrew.org> Tue, 30 Mar 2004 18:00:54 +0100
+
+binutils (2.14.90.0.7-6) unstable; urgency=low
+
+ * 110_hppa64_local_symbols.dpatch: new patch from Randolph Chung to fix
+ dynamic name generation of local symbols on hppa64 - needed to build
+ 64-bit hppa kernels. Closes: #238176
+
+ -- James Troup <james@nocrew.org> Fri, 26 Mar 2004 15:52:27 +0000
+
+binutils (2.14.90.0.7-5) unstable; urgency=low
+
+ * 109_objcopy_keep_debug.dpatch: new patch from Daniel Jacobowitz
+ <dan@debian.org>, objcopy --only-keep-debug and readelf SHT_NOBITS
+ fixes.
+
+ -- James Troup <james@nocrew.org> Mon, 26 Jan 2004 16:25:25 +0000
+
+binutils (2.14.90.0.7-4) unstable; urgency=low
+
+ * debian/control: add binutils-hppa64 package.
+ * debian/rules: add support for binutils-hppa64 package and don't enable
+ hppa64-linux for binutils or binutils-multiarch.
+ * debian/binutils-hppa64.postinst: new file.
+ * debian/binutils-hppa64.postrm: likewise.
+ * debian/binutils-hppa64.shlibs: likewise.
+ * Above changes largely based on a patch from Matthias Klose
+ <doko@cs.tu-berlin.de>. Closes: #225892
+
+ * debian/control (Build-Depends): drop bzip2.
+
+ * debian/rules (install-stamp): remove empty /usr/include directory in
+ binutils.
+ * debian/rules (install-stamp): remove /usr/share/info/dir* to
+ workaround install-info brain damage (cf #213524).
+
+ -- James Troup <james@nocrew.org> Thu, 22 Jan 2004 21:32:44 +0000
+
+binutils (2.14.90.0.7-3) unstable; urgency=low
+
+ * 108_m68k_fmoveml_fix.dpatch: new patch from H.J. Lu
+ <hongjiu.lu@intel.com> to fix fmoveml disassembly and associated
+ testsuite regression on m68k.
+
+ -- James Troup <james@nocrew.org> Tue, 18 Nov 2003 14:35:23 +0000
+
+binutils (2.14.90.0.7-2) unstable; urgency=low
+
+ * 107_powerpc_ld_segfault.dpatch: new patch from Alan Modra
+ <amodra@bigpond.net.au> to fix ld segfault on powerpc. Thanks to
+ Josselin Mouette <joss@debian.org> for the report. Closes: #219187
+
+ -- James Troup <james@nocrew.org> Wed, 5 Nov 2003 13:32:17 +0000
+
+binutils (2.14.90.0.7-1) unstable; urgency=low
+
+ * New upstream release.
+ * 100_null_owner_ld_fix.dpatch, 101_ppc_as_shf_and_rel_fix.dpatch,
+ 102_alpha_null_got_ld_fix.dpatch,
+ 103_static_linking_elf_eh_frame.dpatch,
+ 104_elf_eh_frame_alpha_fix.dpatch: removed; merged upstream.
+ * debian/rules: update version number.
+ * debian/binutils.shlibs: likewise.
+ * debian/binutils-multiarch.shlibs: likewise.
+
+ * 009_signed_char_fix.dpatch: removed; this was fixed upstream correctly
+ (http://sources.redhat.com/ml/binutils/2003-05/msg00304.html) and this
+ patch is breaking that fix. Thanks to Daniel Jacobowitz
+ <dan@debian.org>.
+
+ * 003_gmon_manpage_fix.dpatch -> 002_gprof_profile_arcs.dpatch.
+ * 014_gprof_manpage_fix.dpatch -> 003_gprof_see_also_monitor.dpatch.
+
+ * 300_alpha_rpcc_opcode_fix.dpatch -> 105_alpha_rpcc_opcode_fix.dpatch
+ (committed to trunk).
+
+ * debian/rules (configure-multi-stamp): also enable mips64{el,}-linux
+ for binutils-multiarch. Alphabetize target list.
+
+ * 106_arm_pic: new patch from Phil Blundell <pb@debian.org> and Daniel
+ Jacobowitz <dan@debian.org> which implements GC for GOT and PLT relocs
+ in the elf32-arm backend.
+
+ * debian/rules (install-stamp): work around upstream bug which causes
+ as.info and as.1 to disappear by explicitly calling "make
+ install-info-am install-am" in builddir-single/gas/doc.
+
+ -- James Troup <james@nocrew.org> Sat, 1 Nov 2003 18:14:04 +0000
+
+binutils (2.14.90.0.6-5) unstable; urgency=low
+
+ * 104_elf_eh_frame_alpha_fix.dpatch: new patch from H.J. Lu
+ <hongjiu.lu@intel.com> to fix regressions on alpha caused by
+ 103_static_linking_elf_eh_frame. Thanks to Thimo Neubauer
+ <thimo@debian.org> for the original report. Closes: #215636
+
+ -- James Troup <james@nocrew.org> Fri, 17 Oct 2003 00:02:09 +0100
+
+binutils (2.14.90.0.6-4) unstable; urgency=low
+
+ * 103_static_linking_elf_eh_frame.dpatch: new patch from H.J. Lu
+ <hongjiu.lu@intel.com> to fix static linking of C++ binaries.
+
+ * 200_alpha_null_got_ld_fix.dpatch: renamed...
+ * 102_alpha_null_got_ld_fix.dpatch: to this.
+
+ * debian/rules: patch from Guido Guenther <agx@debian.org> to enable
+ mips64 support. Closes: #213448
+
+ -- James Troup <james@nocrew.org> Sun, 12 Oct 2003 14:26:26 +0100
+
+binutils (2.14.90.0.6-3) unstable; urgency=low
+
+ * 100_null_owner_ld_fix.dpatch: new patch from Alan Modra
+ <amodra@bigpond.net.au> to fix an ld crash with null owner sections.
+ Closes: #212029
+
+ * debian/rules: don't compile with gcc-2.95 on arm; the only failures
+ are a) testsuite-only (i.e. don't appear to affect real world
+ applications) and b) fixed by upcoming gcc patches by Phil Blundell
+ <pb@debian.org> in any event.
+ * debian/control (Build-Depends): likewise don't build-depend on
+ gcc-2.95 for arm.
+
+ * 101_ppc_as_shf_and_rel_fix.dpatch: new patch from Alan Modra
+ <amodra@bigpond.net.au> to fix an as regression where it refused to
+ compile utils.S from Linux/PPC 2.6. Closes: #211668
+
+ -- James Troup <james@nocrew.org> Tue, 23 Sep 2003 01:32:08 +0100
+
+binutils (2.14.90.0.6-2) unstable; urgency=low
+
+ * debian/rules (CONFLICTS): remove spurious "--", left over from
+ debhelper based-rules. Fixes build failure on sparc.
+
+ * 200_alpha_null_got_ld_fix.dpatch: new patch from Daniel Jacobowitz
+ <dan@debian.org> to fix an ld crash on alpha with null .got sections.
+ Closes: #204615
+
+ * scripts/dpkg-arch.mk: remove.
+ * debian/rules: define DEB_BUILD_GNU_TYPE, DEB_HOST_ARCH and
+ DEB_HOST_GNU_TYPE here instead.
+
+ * debian/rules (binary-indep): use ':' as a separator to chown, rather
+ than '.' which is a legal character for a username.
+ * debian/rules (binary-arch): likewise.
+
+ * debian/rules: further trivial cleanups.
+
+ -- James Troup <james@nocrew.org> Thu, 18 Sep 2003 22:13:36 +0100
+
+binutils (2.14.90.0.6-1) unstable; urgency=low
+
+ * New "upstream" release.
+ * Fixes core dump of nm -C on certain object files. Closes: #205616
+
+ * New maintainer.
+ * debian/control (Maintainer): adjust accordingly.
+ * debian/copyright: likewise. Update copyright years, URL.
+ * debian/control (Standards-Version): bump to 3.6.1.0.
+
+ * 011_disable_combreloc_ARM_ONLY.diff: dropped on request of Phil
+ Blundell <pb@debian.org> - this is obsolete, it was working around a
+ bug in ld since fixed by Daniel Jacobowitz <dan@debian.org> upstream.
+
+ * 890-elf64_alpha_segfault.diff: dropped as bogus
+ (http://sources.redhat.com/ml/binutils/2003-04/msg00399.html); rth's
+ correct fix is already in the upstream source.
+
+ * debian/README.Debian: migrate nearly-obsolete debconf notes to here.
+ * debian/control (Depends): drop debconf.
+ * binutils.config, binutils.templates, binutils.templates.ca,
+ binutils.templates.fr, binutils.templates.ja,
+ binutils.templates.pt_BR, postrm.debhelper: obsolete, removed.
+ Closes: #189641, #198222
+
+ * Migrated from dbs...
+ * debian/README.build: obsolete; removed.
+ * debian/rules: remove $(BUILD_TREE)/, $(STAMP_DIR)/, $(unpacked), $(patched) and other references
+ to DBS.
+ * debian/rules (clean): remove build tree directories.
+ * debian/scripts/dbs-build.mk: unused, remove.
+ * debian/scripts/file2cat: likewise.
+
+ * ... to dpatch.
+ * debian/rules: include /usr/share/dpatch/dpatch.make.
+ * debian/rules (configure-single-stamp): depend on patch-stamp.
+ * debian/rules (configure-multi-stamp): likewise.
+ * debian/rules (clean): depend on unpatch. Remove debian/patched.
+ * debian/control (Build-Depends): add dpatch.
+
+ * binutils-doc.postinst, binutils-doc.prerm,
+ binutils-multiarch.postinst, binutils-multiarch.postrm,
+ binutils-multiarch.preinst, binutils-multiarch.shlibs,
+ binutils.postinst, binutils.postrm, binutils.shlibs: new files based
+ on .deb and packages.d/.
+ * scripts/dh_split: obsolete, removed.
+ * debian/packages.d/binutils-dev.in, debian/packages.d/binutils-doc.in,
+ debian/packages.d/binutils-multiarch.in,
+ debian/packages.d/binutils.in: likewise.
+
+ * debian/rules: rewritten, de-debhelper-ized.
+ * debian/control (Build-Depends): drop debhelper and add file.
+
+ -- James Troup <james@nocrew.org> Thu, 11 Sep 2003 22:08:18 +0100
+
+binutils (2.14.90.0.5-0.2) unstable; urgency=low
+
+ * NMU.
+ * Rebuild using fixed gcc on sparc (closes: #202924).
+
+ -- Matthias Klose <doko@debian.org> Mon, 28 Jul 2003 20:12:00 +0200
+
+binutils (2.14.90.0.5-0.1) unstable; urgency=low
+
+ * NMU.
+ * New upstream version.
+ * Remove patches applied upstream:
+ - debian/patches/500_s390_gas.diff
+ - debian/patches/905-hppa_visibility.diff
+ - debian/patches/906-mips_ld_fix.diff
+ * Updated patch:
+ - debian/patches/906-hjl_libtool_dso.diff
+
+ -- Matthias Klose <doko@debian.org> Wed, 23 Jul 2003 20:09:51 +0200
+
+binutils (2.14.90.0.4-0.1) unstable; urgency=low
+
+ * NMU
+ * New upstream version.
+ 1. Work around the brain dead libtool.
+ * New patches:
+ - debian/patches/500_s390_gas.diff (closes: #194929).
+ - debian/patches/905-hppa_visibility.diff (closes: #195203).
+ - debian/patches/906-mips_ld_fix.diff (closes: #195207).
+ - debian/patches/906-hjl_libtool_dso.diff
+
+ -- Matthias Klose <doko@debian.org> Sat, 31 May 2003 12:12:10 +0200
+
+binutils (2.14.90.0.3-0.1) unstable; urgency=low
+
+ * NMU
+ * New upstream version.
+ 1. Update from binutils 2003 0523.
+ 2. Fix 2 ELF visibility bugs.
+ 3. Fix ELF/ppc linker bugs.
+ * Remove patches applied upstream:
+ - debian/patches/903-hjl_ld-dso-test.diff
+ - debian/patches/904_hjl_hppa_whitespace.diff
+
+ -- Matthias Klose <doko@debian.org> Sat, 24 May 2003 09:02:54 +0200
+
+binutils (2.14.90.0.2-0.1) unstable; urgency=low
+
+ * NMU
+ * New upstream version.
+ 1. Update from binutils 2003 0515.
+ 2. Fix various ELF visibility bugs.
+ 3. Fix some ia64 linker bugs.
+ 4. Add more IAS compatibilities to ia64 assembler.
+ * New patches:
+ - debian/patches/903-hjl_ld-dso-test.diff (closes: #193505).
+ - debian/patches/904_hjl_hppa_whitespace.diff.
+ * Remove patches applied upstream:
+ - debian/patches/900_binutils-2.14.90.0.1-empty-test.diff
+ - debian/patches/901-hjl_weaksymfix.diff
+
+ -- Matthias Klose <doko@debian.org> Sun, 18 May 2003 10:50:00 +0200
+
+binutils (2.14.90.0.1-0.1) unstable; urgency=low
+
+ * NMU
+ * New upstream version.
+ - Fix: MIPS branch-to-global bug (closes: #189031).
+ - Fix: Crash on alpha with --gdwarf2 and bad file number (closes: #187211).
+ - Fix: objdump -R BFD ICE on prelinked binaries (closes: #180088).
+ * New patches:
+ - debian/patches/900_binutils-2.14.90.0.1-empty-test.diff
+ - debian/patches/901-hjl_weaksymfix.diff
+ * Remove patches applied upstream:
+ - debian/patches/002_ldlex_inflexible_transition.diff
+ - debian/patches/013_objdump_doc_fix.diff
+ - debian/patches/850_hppa_stub_fix.diff
+ - debian/patches/860_m68k_elf.diff
+ - debian/patches/861_m68k_elf.diff
+ - debian/patches/870-sparc64-update.diff
+ - debian/patches/880-alpha-update.diff
+ * Remove obsolete patch:
+ - debian/patches/patches/800_hjl_mips_fixes.diff
+ * Add x86_64 for the i386 binutils package and the binutils-multiarch
+ package (closes: #189350).
+ * Set CFLAGS to -g -O2 for build (closes: #181268).
+
+ -- Matthias Klose <doko@debian.org> Tue, 6 May 2003 09:58:14 +0200
+
+binutils (2.13.90.0.18-1.7) unstable; urgency=high
+
+ * NMU
+ * Fixed ld segv (replaced yy_current_buffer by YY_CURRENT_BUFFER)
+ (Closes: #188876, 188900, 188912)
+
+ -- Julien LEMOINE <speedblue@debian.org> Mon, 14 Apr 2003 04:45:03 +0200
+
+binutils (2.13.90.0.18-1.6) unstable; urgency=high
+
+ * NMU
+ * [002_ldlex_inflexible_transition.diff] New. Make ld buildable again with
+ sid's current flex.
+
+ -- J.H.M. Dassen (Ray) <jdassen@debian.org> Sun, 13 Apr 2003 16:54:46 +0200
+
+binutils (2.13.90.0.18-1.5) unstable; urgency=medium
+
+ * NMU
+ * [890-elf64_alpha_segfault.diff] Patch from Julien LEMOINE
+ <speedblue@debian.org> to fix the segfault encountered while building
+ gal on alpha. (Closes: #185556)
+ * sid's current flex breaks the building of several packages, including this
+ one; see #188665. The i386 upload is built using a pbuilder sid chroot
+ with flex downgraded to the sarge version.
+
+ -- J.H.M. Dassen (Ray) <jdassen@debian.org> Sun, 13 Apr 2003 13:44:17 +0200
+
+binutils (2.13.90.0.18-1.4) unstable; urgency=low
+
+ * NMU
+ * ld/emulparams/elf64_sparc.sh: Set LIBPATH_SUFFIX instead of suffix
+ for emulation. Patch from current CVS suggested by Clint Adams,
+ needed for sparc64 glibc build.
+ * bfd/elf64-alpha.c: Patch from current CVS suggested by Falk Hueffner,
+ needed to build xstow, kdegames (#181623), sfs.
+ * Explicitely fail, when trying to build with glibc-2.3 on arm and
+ m68k. See #184048 for m68k ld failures.
+
+ -- Matthias Klose <doko@debian.org> Tue, 8 Apr 2003 23:27:46 +0200
+
+binutils (2.13.90.0.18-1.3) unstable; urgency=low
+
+ * NMU
+ * Another fix for ELF/m68k (__bb_exit_func initialization).
+
+ -- Matthias Klose <doko@debian.org> Tue, 18 Mar 2003 00:05:47 +0100
+
+binutils (2.13.90.0.18-1.2) unstable; urgency=high
+
+ * NMU
+ * Apply upstream fix for ELF/m68k. Closes: #182313.
+ * Use gcc-2.95 on m68k-linux. Built on testing (glibc-2.2).
+
+ -- Matthias Klose <doko@debian.org> Sun, 9 Mar 2003 01:02:39 +0100
+
+binutils (2.13.90.0.18-1.1) unstable; urgency=low
+
+ * NMU
+ * Apply upstream fix for hppa stubs. Closes: #181397
+
+ -- LaMont Jones <lamont@debian.org> Wed, 19 Feb 2003 12:34:58 -0700
+
+binutils (2.13.90.0.18-1) unstable; urgency=low
+
+ * New upstream version (synced with CVS 2002-01-21)
+ * Upstream: Fix an ia64 gas bug
+ * Upstream: Fix some TLS bugs
+ * Upstream: Fix ELF/ppc bugs
+ * Upstream: Fix an ELF/m68k bug
+ * Corrected ARM combreloc disabling patch
+ (closes: Bug#175204)
+ * Upstream fixes take care of TEXTREL bug
+ on powerpc (closes: Bug#176084)
+ * Fixed shellutils dependency problem
+ (closes: Bug#175673)
+ * Removed mention of the monitor manpage
+ from the gprof manpage (closes: Bug#160654)
+
+ -- Christopher C. Chimelis <chris@debian.org> Sun, 2 Feb 2003 23:17:29 -0500
+
+binutils (2.13.90.0.16-1) unstable; urgency=low
+
+ * New upstream version (synced with CVS 2002-11-26)
+ * Upstream: Include /usr/bin/c++filt
+ * Upstream: Fix "ld -r" with exception handling
+
+ -- Christopher C. Chimelis <chris@debian.org> Mon, 9 Dec 2002 19:14:02 -0500
+
+binutils (2.13.90.0.14-1) unstable; urgency=low
+
+ * New upstream version (synced with CVS 2002-11-14)
+ * Upstream: Fix ELF/alpha bugs
+ * Upstream: Fix an ELF/i386 assembler bug
+ * Updated package MIPS patch from HJ Lu
+ * Added s390 patches from Gerhard Tonn.
+ Actually, the patches to support s390x were
+ already included upstream, so I just enabled
+ it in the rules script (closes: Bug#168074, Bug#168974)
+ * Since powerpc64-linux support was already
+ added in a prior upload, I'm closing the
+ wishlist bug for it (closes: Bug#156955)
+
+ -- Christopher C. Chimelis <chris@debian.org> Tue, 20 Nov 2002 05:36:21 -0500
+
+binutils (2.13.90.0.10-2) unstable; urgency=low
+
+ * Added two patches from upstream to fix alpha BFD.
+ (closes: Bug#165633)
+
+ -- Christopher C. Chimelis <chris@debian.org> Sun, 27 Oct 2002 14:21:51 -0400
+
+binutils (2.13.90.0.10-1) unstable; urgency=low
+
+ * New upstream version (synced with CVS 2002-10-10)
+ * Upstream: More ELF/PPC linker bug fixes.
+ * Upstream: Fix an ELF/alpha linker bug.
+ * Upstream: Fix an ELF/sparc linker bug to support
+ Solaris.
+ * Upstream: More TLS updates.
+ * Updated m68k gcc 3.1 patch since it wasn't applying
+ cleanly. Is this still needed?
+ * Added patches to allow building with new bison
+ (closes: Bug#164436, Bug#164042)
+ * Should be better for prelink support, which is coming
+ soon (closes: Bug#161427)
+ * Removed windres manpage from all packages
+ (closes: Bug#157415)
+ * Fixed download location in copyright file
+ (closes: Bug#158028)
+ * Added i386-gnu to multiarch build targets
+ (closes: Bug#157057)
+ * Add alpha opcode patch from Falk Hueffner
+ (closes: Bug#164201)
+ * Remove .la files from packages
+ (closes: Bug#160455)
+
+ -- Christopher C. Chimelis <chris@debian.org> Mon, 15 Oct 2002 20:22:29 -0400
+
+binutils (2.13.90.0.4-1) unstable; urgency=low
+
+ * New upstream version (synced with CVS 2002-08-)
+ * Upstream: Update from binutils 2002 0814
+ * Upstream: Fix symbol versioning bugs for gcc 3.2
+ * Upstream: Fix mips gas
+ * Upstream: Fix an x86 TLS bfd bug
+ * Upstream: Fix an x86 PIC gas bug
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 15 Aug 2002 20:13:44 -0400
+
+binutils (2.12.90.0.15-2) unstable; urgency=low
+
+ * Fix combreloc disabling patch for ARM
+ (closes: Bug#156315)
+ * Remove S390 patch since it is no longer
+ needed (thanks to Gerhard Tonn for checking
+ this out)
+ * Fix BFD version string escaping
+ (closes: Bug#154989)
+ * Add SH patch from Yaegashi Takeshi
+ (closes: Bug#156230)
+ * Added conflicts for older modutils
+ (closes: Bug#155324)
+ * Forgot to apply MIPS patch from HJ Lu
+ (apologies to MIPS folks)
+
+ -- Christopher C. Chimelis <chris@debian.org> Wed, 14 Aug 2002 13:09:12 -0400
+
+binutils (2.12.90.0.15-1) unstable; urgency=low
+
+ * New upstream version (synced with CVS 2002-07-17)
+ * Upstream: Fix an ia64 assembler bug
+ * Upstream: Fix a symbol versioning bug
+ * Upstream: You have to apply the modutils patch
+ enclosed here in order to support System.map
+ generated by the new nm (bug filed)
+ * The symbol visibility patch is included
+ upstream, as is the alpha PLT/GOT patch, so
+ both removed from my packaging.
+ * Included patch from upstream to fix RELA targets
+ (closes: Bug#153729)
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 2 Aug 2002 02:24:29 -0400
+
+binutils (2.12.90.0.14-2) unstable; urgency=low
+
+ * The "Let's Get This Party Started Right" upload
+ (since I'm closing as many old bugs as possible)
+ * Removed sparc patch altogether
+ * Added a small alpha patch from upstream to fix
+ some obscure PLT/GOT issues.
+ * Manpages are now fixed finally -- no more
+ I<symbol> (closes: Bug#108369)
+ * Have not gotten another report of the
+ debconf message being cut off, so I'm closing
+ the debconf-related bug. I suspect this may
+ have been a problem in the debconf front-end
+ being used, but I have not been able to reproduce
+ it (closes: Bug#149045)
+ * Closing a bug report that I had tagged moreinfo
+ a LONG time ago (over one year), but never got
+ more info on. I have not heard of this kind
+ of problem since, nor have I been able to
+ reproduce it at any time since (closes: Bug#105986).
+ For interested parties, it revolved around
+ allowing gcc to show a linker error, but the
+ reporter didn't know about the -v option for
+ gcc. There was a linker problem, but it appeared
+ to be either hardware failure or user error.
+ * Closing a demangler 'bug' that revolved around
+ stripping @PLT from symbol names. Since the
+ PLT suffix is documented, I'm going to close
+ this bug. Also, it doesn't help that the symbol
+ in the bug report uses an obsolete mangling style,
+ so I can't test this even if I wanted to
+ (closes: Bug#45889)
+
+ -- Christopher C. Chimelis <chris@debian.org> Mon, 22 Jul 2002 12:54:01 -0400
+
+binutils (2.12.90.0.14-1) unstable; urgency=low
+
+ * New upstream version (synced with CVS 2002-06-27)
+ * Upstream: Fix a mips assembler bug
+ * Upstream: Fix an ELF/mips SHF_MERGE bug
+ * Upstream: Fix a linker bug which leads to the
+ incorrect Linux 2.2 kernel.
+ * PE patch removed since it is included
+ in upstream source now
+ * Includes some patches which allow for
+ more true testsuite results from gcc-3.1
+ * Fix sparc ld emulation script patches to get
+ rid of the lib/64 silliness (now uses lib64)
+ * Removed the L word from the package description
+ since Debian is no longer linux-only
+ (closes: Bug#150575)
+ * The strings dereferencing problem with
+ some Windows binaries seems to also be fixed now
+ (closes: Bug#121366)
+ * Added a patch to only generate an RPATH entry
+ if LD_RUN_PATH is not empty, for cases where
+ -rpath isn't specified (closes: Bug#151024)
+ * Fixed arch detection problem in the build
+ scripts.
+ * Fixed bad capitalisation of -g in the objdump
+ manpage (closes: Bug#152697)
+ * Added patch from HJ Lu to fix a symbol
+ visibility issue.
+
+ -- Christopher C. Chimelis <chris@debian.org> Wed, 17 Jul 2002 14:23:42 -0400
+
+binutils (2.12.90.0.9-1) unstable; urgency=low
+
+ * New upstream version (synced with CVS 2002-05-26).
+ * Upstream: Supports "-z muldefs"
+ * Updated PE bfd from CVS to fix auto-import
+ segfaults (closes: Bug#131407)
+ * Remove the PE-removing patch for i386 targets
+ due to the above
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 6 Jun 2002 15:52:29 -0400
+
+binutils (2.12.90.0.7-1) unstable; urgency=low
+
+ * New upstream version (synced with CVS 2002-04-23).
+ * Upstream: ELF EH frame bug fix
+ * Upstream: MIPS ELF visibility bug fix
+ * Upstream: Bug fixes for ELF/sparc
+ * Upstream: Bug fixes for ELF/cris
+ * Upstream: Fix linking a.out relocatable files
+ with ELF
+ * Upstream: Fix a PPC altivec assembler bug
+ * Numerous upstream changes since I have
+ deliberately not updated in awhile so that
+ I could stabilise the package for woody
+ release
+ * Fixed a glaring typo in the Debian additions
+ to the version string.
+ * Upstream incorporated --oformat
+ documentation patch; removed.
+ * Added a patch from upstream involving
+ relative relocs on Alpha
+ * Removed configure.info-[1-3] from -doc
+ (closes: Bug#146205)
+
+ -- Christopher C. Chimelis <chris@debian.org> Sun, 5 Apr 2002 04:52:33 -0400
+
+binutils (2.12.90.0.1-5) unstable; urgency=high
+
+ * Added a patch to m68k bits for gas to allow
+ gcc 3.1 to build
+ * Added Brazilian Portuguese translation for
+ debconf (closes: Bug#144677)
+ * Removed unneeded gasp manpage since gasp
+ was eliminated as a distinct binary
+ (closes: Bug#144583)
+
+ -- Christopher C. Chimelis <chris@debian.org> Mon, 29 Apr 2002 14:40:21 -0400
+
+binutils (2.12.90.0.1-4) unstable; urgency=low
+
+ * Added patch from Gerhardt Tonn
+ to fix s390 merge problem (closes: Bug#143187)
+ * Corrected DOW of my last changelog entry :-P
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 18 Apr 2002 13:03:49 -0400
+
+binutils (2.12.90.0.1-3) unstable; urgency=low
+
+ * Oops...I used dpkg-architecture from dpkg-dev
+ in the postinst and didn't add a dependency
+ for it. It was a bad choice anyway and I'm
+ going to use uname -s instead
+ (closes: Bug#142744, Bug#142915)
+
+ -- Christopher C. Chimelis <chris@debian.org> Mon, 15 Apr 2002 12:41:10 -0400
+
+binutils (2.12.90.0.1-2) unstable; urgency=low
+
+ * Added Catalan debconf translation
+ (closes: Bug#139740)
+ * Ensure that info entries are removed from the
+ texinfo dirfile when binutils-doc is removed
+ (closes: Bug#126557)
+ * Ensure that the kernel link debconf warning
+ only shows up on linux systems
+ (closes: Bug#142360)
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 13 Mar 2002 01:30:22 -0400
+
+binutils (2.12.90.0.1-1) unstable; urgency=high
+
+ * New upstream version (synced with CVS 2002-03-07).
+ * Upstream: Add the .preinit_array/.init_array/.fini_array
+ support.
+ * Upstream: Fix eh_frame.
+ * Upstream: Turn on combreloc by default.
+ * Upstream: Enable gprof for Linux/mips.
+ * Turn combreloc off for ARM explicitely until
+ I can confirm that PIC is not still broken
+ by using it.
+ * Remove IA-64 unwind patch and objcopy fix
+ since they are included in the upstream sources
+ now.
+ * Re-enable testsuite run since Randolph did the NMU
+ on dejagnu (thank you!).
+ * Appears to fix sparc64 linking problems. I'm
+ still looking into exactly what was going on with
+ that (closes: Bug#137850)
+ * Enabled hppa64-linux support in main binutils
+ package (closes: Bug#137955)
+ * Added Japanese debconf template. Thanks to
+ Tomohiro KUBOTA for supplying that
+ (closes: Bug#138112)
+ * Added patch for ld to fix dosemu problems
+ (closes: Bug#126863)
+
+ -- Christopher C. Chimelis <chris@debian.org> Mon, 11 Mar 2002 14:02:45 -0500
+
+binutils (2.11.93.0.2-3) unstable; urgency=high
+
+ * Split translated debconf templates out.
+ I apparently misunderstood the instructions
+ on integrating the French translation since
+ this is my first real attempt at using
+ debconf (closes: Bug#136295)
+ * Disable combreloc default on ARM since it
+ breaks PIC, apparently (closes: Bug#134241)
+ Please test other ARM bugs against this
+ version and inform me of the results!
+
+ -- Christopher C. Chimelis <chris@debian.org> Fri, 8 Mar 2002 19:10:10 -0500
+
+binutils (2.11.93.0.2-2) unstable; urgency=high
+
+ * Include a patch from upstream to fix stripping
+ archives containing multiple files with the
+ same name (like libgcj, unfortunately).
+ (closes: Bug#107812)
+ * Include IA64 unwind fix from CVS to fix kernel
+ linking on IA64. (closes: Bug#135143)
+ * Added French translation of the debconf
+ bits. Thanks to Denis Barbier for the
+ work on that. (closes: Bug#134626)
+ * Disabled testsuite run until dejagnu is
+ fixed. I'm leaving the build-dep for dejagnu
+ in, though, since I know I'll forget to
+ reinsert it when I do re-enable the testsuite
+ run.
+
+ -- Christopher C. Chimelis <chris@debian.org> Fri, 22 Feb 2002 14:05:22 -0500
+
+binutils (2.11.93.0.2-1) unstable; urgency=high
+
+ * New upstream version (synced with CVS 2002-02-07).
+ * Upstream: Fix a weak symbol alpha linker bug for glibc.
+ * Upstream: More support for gcc 3.1.
+ * Keep on disabling efi-app-ia32 type targets
+ since the segfault is still unfixed in CVS and
+ I haven't had the time to go back and really
+ debug and fix this.
+ * Updated standards version.
+ * Corrected some of the lintian problems (all except
+ the ones involving Changelog.linux, the .comment
+ section, and the missing manpages for
+ binutils-multiarch's binaries since that package
+ depends on binutils, which provides those).
+
+ -- Christopher C. Chimelis <chris@debian.org> Wed, 13 Feb 2002 13:41:47 -0500
+
+binutils (2.11.92.0.12.3-7) unstable; urgency=high
+
+ * The "Remind Me To Think Next Time" upload.
+ * Fix the postinst to only compare versions on
+ upgrade rather than during configure.
+ (closes: Bug#133349, Bug#133514)
+ * Still working on the other bugs...if only
+ I could get a day off of work...
+
+ -- Christopher C. Chimelis <chris@debian.org> Tue, 12 Feb 2002 06:15:02 -0500
+
+binutils (2.11.92.0.12.3-6) unstable; urgency=high
+
+ * The "Make The Bad Man Stop" upload.
+ * Revert patch to bfd/elf32-sparc.c (already
+ reverted upstream) that broke UA32 relocs on sparc
+ and caused bus errors with C++/Java binaries
+ (closes: Bug#126162)
+ * Remove i486-mingw32 target from the enabled
+ in multiarch and removed efi-app-ia32 from the
+ BFD config for Intel linux targets until I can find
+ and fixthe segfaults that seem to keep coming up when
+ reading Windows files and viruses with objdump or
+ strings. This is only temporary, so I'm not closing
+ the bugs until the problem gets fixed, but
+ I am going to bump them down to wishlist, merge
+ them, and note the above in them.
+ (debian/patches/010_disable_efi_app_ia32_TEMPORARY.diff
+ disables the efi-app-ia32 BFD in case someone
+ wants to revert this change easily)
+ * Added debconf warning about the kernel linking
+ situation since it keeps coming up and people
+ keep initially disagreeing with me about this
+ being a kernel bug. Also, merged prior warning
+ about -oformat change into the same debconf warning
+ (it's two, two, two warnings in one). This makes
+ the DEBIAN_FRONTEND case bug moot (closes: Bug#131801)
+ * Added powerpc64-linux target to multiarch since
+ work is progressing on that target and the machines
+ are due to hit the shelves Very Soon(TM).
+
+ -- Christopher C. Chimelis <chris@debian.org> Fri, 1 Feb 2002 17:06:29 -0500
+
+binutils (2.11.92.0.12.3-5) unstable; urgency=high
+
+ * Fix signed char assumption in i386 disassembly bits
+ (closes: Bug#126993)
+
+ -- Christopher C. Chimelis <chris@debian.org> Mon, 8 Jan 2002 17:27:17 -0500
+
+binutils (2.11.92.0.12.3-4) unstable; urgency=high
+
+ * Go back to enabling archs by enumeration for
+ multiarch. Apparently, a few aren't enabled
+ with --enable-targets=all (sparc64-linux, namely).
+ Besides, multiarch was incredibly large, which
+ was probably unneeded.
+
+ -- Christopher C. Chimelis <chris@debian.org> Wed, 26 Dec 2001 13:53:49 -0500
+
+binutils (2.11.92.0.12.3-3) unstable; urgency=high
+
+ * Include patch from Alan Modra to fix more
+ refcount problems on hppa.
+
+ -- Christopher C. Chimelis <chris@debian.org> Fri, 7 Dec 2001 05:42:04 -0500
+
+binutils (2.11.92.0.12.3-2) unstable; urgency=high
+
+ * Include patch from Alan Modra to fix hppa linking
+ woes wrt undefined symbols (closes: Bug#121993)
+
+ -- Christopher C. Chimelis <chris@debian.org> Wed, 5 Dec 2001 04:14:51 -0500
+
+binutils (2.11.92.0.12.3-1) unstable; urgency=high
+
+ * New upstream version (synced with CVS 2001-11-21)
+ * Upstream: Fix a linker symbol version bug
+ for common symbols.
+ * Upstream: Update handling relocations against
+ the discarded sections. You may need to apply
+ the kernel patch enclosed here to your kernel
+ source.
+ * Upstream: Support "-march=xxx -mipsN" for mips
+ gas if they are compatible.
+ * Upstream: Fix a regression when linking with
+ non-ELF object files.
+ * Includes Alan Modra's patch to reduce stub sizes
+ on HPPA. Should help C++ on HPPA.
+ * Once again includes a mips patch from HJ Lu.
+ * My documentation changes were cleaned up and
+ accepted upstream, so the gas manpage fixes go
+ away (hurray!).
+ * Stopped iterating targets for binutils-multiarch
+ and started enabling all of them. This saves
+ maintenance time since new targets will be
+ automatically supported in future uploads
+ and existing targets that I didn't include
+ before will be supported from now on. This may
+ grow build time and the libbfd in the multiarch
+ package, but it's worth it.
+ * Also, started using the --enable-64-bit-bfd
+ flag for configuring multiarch. I don't know
+ why I didn't realise this wasn't there before
+ since I test with it all of the time.
+
+ -- Christopher C. Chimelis <chris@debian.org> Fri, 30 Nov 2001 20:11:42 -0500
+
+binutils (2.11.92.0.10-4) unstable; urgency=high
+
+ * The "Fingers crossed" upload.
+ * Enable combreloc by default for s390 again.
+ Rumour has it that it worked before, but there
+ was a misunderstanding in the s390 developer
+ community, hence the disabling in the past.
+ * Fix the ld texinfo file to not mention the old
+ oformat invocation (closes: Bug#116182)
+ * Next upload should include the mips updates and
+ some powerpc updates. I just need time to test
+ those out first.
+
+ -- Christopher C. Chimelis <chris@debian.org> Fri, 23 Nov 2001 23:23:22 -0500
+
+binutils (2.11.92.0.10-3) unstable; urgency=high
+
+ * Replace HPPA reloc patch with patches from Alan
+ Modra upstream.
+ * Add upstream patch to fix quoted -rpath bug
+ (closes: Bug#107214)
+
+ -- Christopher C. Chimelis <chris@debian.org> Sat, 10 Nov 2001 18:19:05 -0400
+
+binutils (2.11.92.0.10-2) unstable; urgency=high
+
+ * Disable -z combreloc enable patch on S/390
+ since it's not supported there yet
+ (closes: Bug#117087)
+
+ -- Christopher C. Chimelis <chris@debian.org> Fri, 26 Oct 2001 00:07:01 -0400
+
+binutils (2.11.92.0.10-1) unstable; urgency=high
+
+ * New upstream version (synced with CVS 2001-10-21)
+ * Upstream: Fix the ELF/PPC linker.
+ * Upstream: Fix the ELF/cris linker.
+ * Upstream: Fix ELF strip.
+ * Includes beginnings of Altivec support
+ (closes: Bug#98617)
+ * Fixes use of BookE instruction format on 4xx
+ PowerPC (closes: Bug#116627)
+ * Includes patches from Alan Modra to fix hppa
+ relocations.
+ * Forgot to close the previous PPC bug with last
+ upload (closes: Bug#116454)
+ * Moved to enclosing a bzipped tarball rather than
+ a gzipped one to save download time for everyone
+ involved. Build-deps adjusted accordingly.
+
+ -- Christopher C. Chimelis <chris@debian.org> Tue, 23 Oct 2001 03:29:49 -0400
+
+binutils (2.11.92.0.7-2) unstable; urgency=high
+
+ * Include a patch from H.J Lu to fix a powerpc
+ issue not shown in the testsuite results.
+
+ -- Christopher C. Chimelis <chris@debian.org> Fri, 19 Oct 2001 00:49:04 -0400
+
+binutils (2.11.92.0.7-1) unstable; urgency=high
+
+ * New upstream release (synced with CVS 2001-10-16)
+ * Upstream: Fix all breakages introduced in 2.11.92.0.5
+ * No mips/ dir patches need to be applied with this one.
+ Woohoo!
+ * Removed patches from debian/patches that are already
+ applied upstream.
+ * Patched version strings to reflect that this is a
+ Debian release at the request of upstream (to prevent
+ confusion, apparently).
+ * Applied patch from H.J. Lu to fix mips section
+ misalignment.
+ * Applied patch from Jakub Jelinek to fix kernel linking
+ on i386 and possibly other archs (closes: Bug#116041)
+ * Fixed postinst and prerm for binutils-doc to test that
+ the files exist before calling install-info. This should
+ fix the odd circumstance when binutils-doc is packaged on
+ an arch that doesn't support gprof (or any other dir for
+ that matter) and, therefore, the docs that are usually
+ made in that dir aren't made. This is particularly true
+ with gprof on mips.
+
+ -- Christopher C. Chimelis <chris@debian.org> Wed, 17 Oct 2001 18:56:51 -0400
+
+binutils (2.11.92.0.5-3) unstable; urgency=high
+
+ * Enable -z combreloc on all targets. This will make
+ prelinking possible with the prelink package. Please
+ test this on all archs prior to upload. If it fails, file
+ a bug immediately and I'll disable the patch for that
+ platform.
+ * Added patches from Alan Modra (from CVS) to fix other
+ archs after the refcount patch broke them. This supercedes
+ the powerpc patch, so I replaced that with this.
+ (closes: Bug#115218)
+ * Added patch from H.J. Lu (from CVS) to fix IA64 linker
+ problems as well.
+ * Added patch from David Kimdon to specify which filename is
+ causing an error if that filename is a dir (closes: Bug#45832).
+ * Removed workaround patch for stabs problem on Alpha since
+ it appears to be causing problems on mips and is no longer
+ needed on Alpha anyway.
+ * Now runs the testsuite and includes the results in the
+ binutils package for reference.
+
+ -- Christopher C. Chimelis <chris@debian.org> Sat, 13 Oct 2001 15:10:20 -0400
+
+binutils (2.11.92.0.5-2) unstable; urgency=high
+
+ * Applied fix from H.J. Lu to fix PowerPC target
+ (closes: Bug#115285). Thanks to Jack Howarth
+ for forcing the issue upstream.
+
+ -- Christopher C. Chimelis <chris@debian.org> Fri, 12 Oct 2001 23:14:51 -0400
+
+binutils (2.11.92.0.5-1) unstable; urgency=high
+
+ * New upstream release (synced with CVS 2001-10-05)
+ * Upstream: Support gcc 3.1 for IA64.
+ * Upstream: Support prelink for ELF/PPC.
+ * Upstream: Fix an ELF/x86 linker bug for Oracle
+ (closes: Bug#113614)
+ * Upstream: Fix a weak symbol bug.
+ * Upstream: Support locale.
+
+ -- Christopher C. Chimelis <chris@debian.org> Tue, 9 Oct 2001 19:53:49 -0400
+
+binutils (2.11.90.0.31-2) unstable; urgency=high
+
+ * Applied IA64 patch from CVS to fix gcc issues
+ on IA64.
+
+ -- Christopher C. Chimelis <chris@debian.org> Mon, 24 Sep 2001 12:45:29 -0400
+
+binutils (2.11.90.0.31-1) unstable; urgency=high
+
+ * New upstream source (synced with CVS 2001-08-30)
+ * Upstream: Fix a MIPS linker bug.
+ * Now applying mips diffs from H.J. Lu (upstream)
+ for better MIPS and MIPS64 support.
+ * Applied patch from Christopher Cramer to fix
+ gasp .REG issue (closes: Bug#110560)
+
+ -- Christopher C. Chimelis <chris@debian.org> Sat, 1 Sep 2001 23:42:22 -0400
+
+binutils (2.11.90.0.29-1) unstable; urgency=high
+
+ * New upstream source (synced with CVS 2001-08-27)
+ * Upstream: Fix an Alpha assembler bug.
+ * Upstream: Fix an IA64 linker bug.
+ * Upstream: Fix a MIPS linker bug.
+ * Upstream: Support '-z combreloc|nocombreloc' in linker.
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 30 Aug 2001 04:48:04 -0400
+
+binutils (2.11.90.0.27-4) unstable; urgency=high
+
+ * Argh. Really remove the manpages from multiarch
+ this time (closes: Bug#110410)
+
+ -- Christopher C. Chimelis <chris@debian.org> Tue, 28 Aug 2001 14:32:34 -0400
+
+binutils (2.11.90.0.27-3) unstable; urgency=high
+
+ * Include hppa patch to force error
+ (closes: Bug#109173)
+ * Fix manpages - seems that I accidentally included
+ the multiarch manpages rather than the target
+ manpages (sorry).
+ * Partial update to as manpage to denote arch options
+ and added options for the rest of the targets
+ Still need to elaborate on them, though. More
+ changes are forthcoming (closes: Bug#110127)
+
+ -- Christopher C. Chimelis <chris@debian.org> Mon, 27 Aug 2001 10:13:27 -0400
+
+binutils (2.11.90.0.27-2) unstable; urgency=high
+
+ * Remove bash dependency...ash's behaviour has
+ already been modified, so it should be able
+ to build binutils now (closes: Bug#106992)
+ * Includes new S/390 patch (closes: Bug#109300)
+ * Could never reproduce objdump segfault and
+ never got a reply on the bug report
+ (closes: Bug#93884)
+ * Can't reproduce m68k segfault either
+ (closes: Bug#87714)
+
+ -- Christopher C. Chimelis <chris@debian.org> Mon, 20 Aug 2001 23:07:30 -0400
+
+binutils (2.11.90.0.27-1) unstable; urgency=high
+
+ * New upstream source (synced with 20010810 CVS)
+ * Upstream: Fixed x86 linker bug.
+ * Reverted a patch to gas to dodge a bug in STABS output
+ on Alpha using gcc 2.95.4, so alpha can be in sync
+ with the rest of the archs now.
+ * Fixes strip problems with busybox (closes: Bug#106593)
+ * Kernels should compile ok again on i386
+ (closes: Bug#107190)
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 16 Aug 2001 08:24:49 -0400
+
+binutils (2.11.90.0.25-1) unstable; urgency=high
+
+ * New upstream source (synced with 20010726 CVS)
+ * Upstream: fix i386 assembler bug.
+ * Upstream: "make check" has 2 failures in the
+ ld-selective test in ld on Linux/alpha. They
+ should be marked xfail. Fixed in the next release.
+ * Removed m68k patch (closes: Bug#106431)
+ * Man pages appear to be correctly generated now
+ (closes: Bug#98569, Bug# 98938)
+ * Added bash build dependency (closes: Bug#106992)
+ * Should compile ok on powerpc (the last one did
+ also...don't know why voltaire's build daemon failed).
+ I won't close this bug until I build it myself
+ on voltaire or hear back from the autobuilder folks
+ on PPC.
+ * Looking into the whole LD_LIBRARY_PATH issue that
+ keeps being brought up. I think the docs are wrong
+ because the templates say that it shouldn't obey that
+ at all. Can we please stop filing duplicate bugs for
+ this? I would greatly appreciate it...
+
+ -- Christopher C. Chimelis <chris@debian.org> Wed, 1 Aug 2001 07:06:52 -0400
+
+binutils (2.11.90.0.24-1) unstable; urgency=high
+
+ * New upstream source (synced with 20010714 CVS)
+ * DO NOT COMPILE FOR ALPHA. I need to fix gcc 2.95.4
+ prior to this release working on Alpha correctly
+ (long story).
+ * Upstream: Avoid COPY relocs on i386
+ * Upstream: Fix IA64 assembler (please try this and let me know)
+ * Upstream: Fix a static linking the PIC object files on ia32
+ * Upstream: Add the version script support for --export-dynamic
+ * Upstream: Fix sparc/elf for linux/sparc
+ * Upstream: Fix alpha/elf for gcc 3.0
+ * Supposedly required for gcc-3.0 usage on many platforms
+ * Add s390 to multiarch list (closes: Bug#98095)
+ * Supposedly good on mips, but please check. I emailed Ryan
+ to see if bug 98095 still happens, but never got a reply.
+ If I get around it, I'll check it myself since my mips
+ lives once again.
+ * Retake my package from Matt (next time we agree to an NMU,
+ please don't change the maintainer name...no wonder I didn't
+ get any bug reports!)
+ * Cross-compilation support will be added in the next upload
+ (I'll be uploading alpha debs with the next release as well,
+ the alpha problem outweighs cross-compilation support in
+ priority right now).
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 19 Jul 2001 05:12:05 -0400
+
+binutils (2.11.90.0.7-2) unstable; urgency=high
+
+ * Applied patch from Alan Modra to fix m68k
+ assertion problems (closes: Bug#96352)
+ * Applied srec patch from Richard Henderson for
+ alpha.
+
+ -- Christopher C. Chimelis <chris@debian.org> Wed, 9 May 2001 03:11:19 -0400
+
+binutils (2.11.90.0.7-1) unstable; urgency=high
+
+ * New upstream source (synced with 20010425 CVS)
+ * Upstream: Fix the -Bsymbolic bug introduced in
+ binutils 2.11.90.0.5 (closes: Bug#95168)
+
+ -- Christopher C. Chimelis <chris@debian.org> Sun, 29 Apr 2001 20:03:22 -0400
+
+binutils (2.11.90.0.5-1) unstable; urgency=high
+
+ * New upstream source (synced with 20010414 CVS)
+ * Upstream: Fix in IA64 assembler
+ * Upstream: Change Linux/MIPS to use SVR4 MIPS ABI
+ rather than IRIX ABI.
+ * The above change may cause problems for MIPS.
+ If so, please file a bug and I'll revert those
+ changes if need be. I suspect that glibc, gcc,
+ and the kernel may eventually follow suit, though
+ to fit in with this change (it makes sense...
+ see the symbol ordering problems threads on the
+ binutils list for more info).
+ * Upstream: IA32 gas bug fixed...no further details
+ provided, unfortunately.
+ * Reportedly fixes core dumping when trying to link
+ object files from other platforms (now warns)
+ (closes: Bug#60502)
+ * Includes Philip Blundell's ARM PLT patch finally...
+ sorry for the delay (closes: Bug#94181)
+ * m68k problems should be fixed by now. Wish I had
+ gotten more feedback, but I didn't so I'm assuming it
+ works at this point (closes: Bug#74396)
+ * Stopped compiling cross-compiler packages until we
+ work out a better system for the entire toolchain.
+ Sorry, but it was taking far too long on even fast
+ machines and I've gotten more complaints about the
+ current arrangement than I have positive feedback.
+ (closes: Bug#91120, Bug#91119, Bug#91118, Bug#91117,
+ Bug#91116, Bug#88311, Bug#78028, Bug#90177)
+ * Fixed readelf manpage so that it no longer says that
+ it is a preprocessor for assembly programs
+ (closes: Bug#90798)
+
+ -- Christopher C. Chimelis <chris@debian.org> Tue, 17 Apr 2001 20:07:14 -0400
+
+binutils (2.11.90.0.1-1) unstable; urgency=high
+
+ * New upstream source (synced with 20010309
+ CVS).
+ * Fixed misapplied m68k ld patch.
+ I am hoping that this almost totally fixes
+ m68k ELF for now.
+ * Fixed typo in mips patch and applied another
+ mips patch from Daniel Jacobowitz.
+ * Should no longer build same-arch cross
+ packages. Please let me know if this fix
+ worked so that I can close the bugs (I have
+ no access to such an arch at the moment)
+ * Made urgency high since m68k really needs
+ this if the bugs are truly fixed. Even if
+ not, this version is infinitely better on
+ at least two platforms than prior ones were.
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 15 Mar 2001 16:29:32 -0500
+
+binutils (2.10.91.0.2-4) unstable; urgency=low
+
+ * Applied m68k ld and bfd patches from
+ Michael Fedrowitz to hopefully make things
+ better on m68k.
+
+ -- Christopher C. Chimelis <chris@debian.org> Sun, 11 Mar 2001 20:16:44 -0500
+
+binutils (2.10.91.0.2-3) unstable; urgency=low
+
+ * Adjusted the priority of binutils-doc to
+ optional.
+ * Added debhelper build-depends (closes: Bug#87690)
+ * Fixed postinst problem for new binutils
+ installations (closes: Bug#87911)
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 1 Mar 2001 15:06:50 -0500
+
+binutils (2.10.91.0.2-2) unstable; urgency=low
+
+ * Add support for SH and IA64 to binutils-multiarch.
+ * Applied m68k gas patch from Michael Fedrowitz
+ in hopes that this will fix the grave bug that
+ has been such a pain to m68k folks. I'll leave
+ the bug open until it's verified that it works
+ ok.
+ * Applied IA-64 printf patch (closes: Bug#82702)
+ * Kernels appear to be building fine with this
+ release on all archs available to me
+ (closes: Bug#77610)
+ * Added text during postinst that informs users
+ to modify their i386 kernel Makefiles for the
+ --oformat change (closes: Bug#86995)
+ * Incorporated remaining mips diffs that weren't
+ already applied upstream (closes: Bug#81280)
+ * Sparc/sparc64 patch seems to be doing fine, so
+ closing the bug (closes: Bug#86781)
+ * Added non-linux cross- package support to rules
+ (closes: Bug#79948)
+ * Close misc bugs:
+ Missing info file in binutils-doc (closes: Bug#78754)
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 22 Feb 2001 19:36:12 -0500
+
+binutils (2.10.91.0.2-1) unstable; urgency=low
+
+ * New upstream version.
+ * Added weak symbol relocation patch for sparc/sparc64.
+ * Included m68k ELF fix from Michael Fedrowitz.
+ * BIG NOTE: any i386 kernels compiled with this will need
+ to be patched to change the ld option '-oformat' to
+ '--oformat' (extra hyphen).
+
+ -- Christopher C. Chimelis <chris@debian.org> Tue, 20 Feb 2001 21:32:44 -0500
+
+binutils (2.10.1.0.2-1) unstable; urgency=low
+
+ * New upstream release (really prerel, but better than
+ using a CVS version).
+ * Should re-add Compaq demangling style to all
+ tools (alpha-only).
+ * Again, hopefully fixes m68k ELF support...still have
+ no idea why or how this was broken before.
+
+ -- Christopher C. Chimelis <chris@debian.org> Mon, 20 Nov 2000 16:25:44 -0500
+
+binutils (2.10.0.27-0.cvs20001011.2) unstable; urgency=low
+
+ * Applied another PowerPC patch to correct the
+ implementation of .protected and .hidden in the
+ linker. This should also aid in the glibc
+ transition on PowerPC.
+
+ -- Christopher C. Chimelis <chris@debian.org> Tue, 17 Oct 2000 13:23:40 -0400
+
+binutils (2.10.0.27-0.cvs20001011.1) unstable; urgency=low
+
+ * Applied PowerPC weak symbol patch from CVS to aid
+ in glibc transition on that platform.
+
+ -- Christopher C. Chimelis <chris@debian.org> Sun, 15 Oct 2000 19:12:22 -0400
+
+binutils (2.10.0.27-0.cvs20001011) unstable; urgency=low
+
+ * Grabbed a new CVS version since it backs out a
+ change that prevented current gcc snapshots from
+ linking properly to libstdc++v3. This may also
+ solve some other problems related to global
+ section symbols (feedback appreciated).
+ * Finally changed my email address in the control
+ file (how I overlooked this after all of this
+ time I'll never know).
+
+ -- Christopher C. Chimelis <chris@debian.org> Wed, 11 Oct 2000 08:59:36 -0400
+
+binutils (2.10.0.27-0.cvs20001008) unstable; urgency=low
+
+ * Removed configure.info.gz from binutils-doc since
+ it didn't really belong there. (closes: Bug#72746)
+ * Update for hppa/hppa64 targets (included testsuite
+ changes committed on 07-Oct-2000). (closes: Bug#71524)
+ * Upstream change to elflink.h to hopefully stop
+ segfaults on some archs when linking binaries to
+ shared libs.
+
+ -- Christopher C. Chimelis <chris@debian.org> Sun, 8 Oct 2000 16:14:08 -0400
+
+binutils (2.10.0.27-0.cvs20000923.1) unstable; urgency=low
+
+ * Fixed rules file so that builds don't fail when compiling the
+ binary-arch target (added binary-cross to binary-arch).
+ * Fixed harmless attempt at removing builddir-avr twice.
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 28 Sep 2000 10:39:12 -0400
+
+binutils (2.10.0.27-0.cvs20000923) unstable; urgency=low
+
+ * CVS snapshot from 2000-09-23.
+ * Should fix some (most) HPPA issues.
+ * Adds binutils-m68k cross-assembler.
+
+ -- Christopher C. Chimelis <chris@debian.org> Sun, 24 Sep 2000 10:19:20 -0400
+
+binutils (2.10.0.26-2) unstable; urgency=low
+
+ * Added the avr target for Amtel's AVR MCU's
+ * Applied Frank I. Smith <smith@amirix.com> to generate packages for
+ multiple cross targets:
+ + Bump rev number, NOP.
+ + Testing out bumping up the rev number.
+ + Added powerpc, arm, mipsel cross binutils packages.
+
+ -- Christopher C. Chimelis <chris@debian.org> Fri, 22 Sep 2000 17:31:44 -0400
+
+binutils (2.10.0.26-1) unstable; urgency=low
+
+ * New upstream source.
+ * Added mips-linux, hppa-linux, and hppa64-linux to multiarch targets
+
+ -- Christopher C. Chimelis <chris@debian.org> Sun, 17 Sep 2000 01:05:49 -0400
+
+binutils (2.10.0.24-1) unstable; urgency=low
+
+ * New upstream source.
+ * Fixes ia32 assembler buglet.
+ * (Hopefully) fixes PPC visibility problems with
+ glibc 2.2
+
+ -- Christopher C. Chimelis <chris@debian.org> Thu, 24 Aug 2000 16:52:44 -0400
+
+binutils (2.10.0.18-3) unstable; urgency=low
+
+ * Added build depends stuff.
+
+ -- Christopher C. Chimelis <chris@debian.org> Sat, 5 Aug 2000 21:09:04 -0400
+
+binutils (2.10.0.18-2) unstable; urgency=low
+
+ * Added proviso to control file saying that -multiarch
+ should not be installed by the average user.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Sat, 29 Jul 2000 20:07:15 -0400
+
+binutils (2.10.0.18-1) unstable; urgency=low
+
+ * New upstream source.
+ * Should address some needed things for glibc 2.2
+ (added new DT_XXXX dynamic tags and fixes DT_NEEDED
+ link bug)
+ * Reapplied the now-infamous "ObjC patch" until
+ we can figure out why we still have this problem
+ (hint hint hint...we really need to do this).
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Sat, 22 Jul 2000 13:18:27 -0400
+
+binutils (2.10.0.9-4) unstable; urgency=low
+
+ * Applied a patch from Ben Collins to fix sparc64
+ linker scripts
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Sat, 8 Jul 2000 07:24:10 -0400
+
+binutils (2.10.0.9-3) unstable; urgency=low
+
+ * Applied a patch from the libstdc++ mailing list to
+ make sure that the linker doesn't eat the eh_frame
+ section.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Fri, 7 Jul 2000 10:26:59 -0400
+
+binutils (2.10.0.9-2) unstable; urgency=low
+
+ * Wow, already a bug fix.
+ * binutils-dev now provides libiberty.h
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Fri, 23 Jun 2000 19:54:39 -0400
+
+binutils (2.10.0.9-1) unstable; urgency=low
+
+ * New upstream version (more linux-specific).
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Fri, 23 Jun 2000 14:31:04 -0400
+
+binutils (2.10-1) unstable; urgency=low
+
+ * New upstream version (finally, a real release!)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Wed, 21 Jun 2000 19:08:14 -0400
+
+binutils (2.9.5.0.46-1) unstable; urgency=low
+
+ * New upstream source.
+ * ELF visibility attribute should work correctly now.
+ * ia32 "jmp" instructions are now assembled differently
+ to use relocation for global jumps (affects PIC asm
+ code).
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Thu, 8 Jun 2000 21:34:42 -0400
+
+binutils (2.9.5.0.42-1) unstable; urgency=low
+
+ * New upstream source.
+ * Includes a testcase for hidden symbol support.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Fri, 19 May 2000 20:48:52 -0400
+
+binutils (2.9.5.0.41-1) unstable; urgency=high
+
+ * New upstream source.
+ * Now includes patch to enable hidden symbol support
+ needed for gcc 3.0 testing.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Fri, 5 May 2000 20:38:41 -0400
+
+binutils (2.9.5.0.37-1) frozen unstable; urgency=high
+
+ * Was forced to bring the current frozen version up to
+ upstream 2.9.5.0.37 in order to fix a rather nasty
+ i386 gas bug and also since the existing ARM patch
+ applied in 2.9.5.0.31-3 has been superceded upstream
+ (closes:Bug#62119)
+ * Includes proper demangler support for Compaq compiler
+ usage on Alpha (may be superceded upstream shortly,
+ but is good enough for potato and for Compaq's usage)
+ (closes:Bug#62079)
+ * Added cross-compilation support for individual use.
+ Please note that the binary packages do not support
+ this. If you require this feature, you need to compile
+ the source package changing debian/rules. Also, if
+ you do this, YMMV since things on this front are changing
+ rapidly upstream and also because cross-compiling from
+ certain platforms to others may not work (i386->alpha,
+ for example). (closes:Bug#59246)
+ * Fixed replaces statement in binutils-multiarch
+ (closes:Bug#62496)
+ * Release Manager: I once again beg that this be included
+ in potato. I've freed up some time to deal with bug
+ reports quickly if needed.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Sat, 29 Apr 2000 04:03:39 -0400
+
+binutils (2.9.5.0.31-3) frozen unstable; urgency=high
+
+ * Applied patch to fix broken ARM code generation (closes:Bug#61977)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Fri, 7 Apr 2000 15:50:42 -0400
+
+binutils (2.9.5.0.31-2) frozen unstable; urgency=high
+
+ * Remove ld from binutils-multiarch since it doesn't want to
+ link kernels on several archs properly (fixes severity:important bug)
+ (closes: Bug#61719, Bug#61615, Bug#51625)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Mon, 3 Apr 2000 22:48:55 -0400
+
+binutils (2.9.5.0.31-1) frozen unstable; urgency=high
+
+ * Yet another patch (this time from H.J. Lu upstream) to fix
+ the unlink race condition bug. This is VERY important and
+ needs to be in potato. It also fixes the temp file creation
+ problem with objcopy on PPC (closes: Bug#60934)
+ * New upstream release. Fixes a serious Alpha bug along
+ with a demangler bug and several others (closes: Bug#61121)
+ * Should fix apt-get upgrade problem...please test
+ (closes: Bug#56175)
+ * Release manager: can we squeeze this in? I know it's a
+ new version, but the ELF bug on Alpha really needs to
+ be fixed along with the rest of the above and some others
+ not mentioned here.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Wed, 22 Mar 2000 05:05:12 -0500
+
+binutils (2.9.5.0.22-5) frozen unstable; urgency=high
+
+ * Applied fixed patch from Colin Phipps to seal the unlink
+ race condition in bfd/cache.c (closes: Bug#58865, Bug#57831)
+ * Installed a proper changelog in binutils-doc
+ (closes: Bug#58522)
+ * Closes other older bug (closes: Bug#55801)
+ * Included bbconv.pl in binutils main package in the doc dir
+ under the gprof subdir (closes: Bug#57521)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Tue, 14 Mar 2000 10:32:52 -0500
+
+binutils (2.9.5.0.22-4) frozen unstable; urgency=high
+
+ * Patched gprof/hertz.h to allow binutils to actually
+ build and work on Hurd (closes: Bug#57564)
+ * Patched bfd/cache.c to avoid a rare, but possible
+ security problem when as is creating/opening temp
+ files (closes: Bug#57831)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Thu, 17 Feb 2000 10:31:05 -0500
+
+binutils (2.9.5.0.22-3) frozen unstable; urgency=high
+
+ * Removed standards.info...do we really need seven
+ bugs filed for the same problem
+ (closes: Bug#54521, Bug#54546, Bug#54614, Bug#54682, Bug#55402, Bug#55582, Bug#55602)
+ * Changed binutils-multiarch extended description
+ to mention that a cross-assembling gas is not
+ included (closes: Bug#49308)
+ * Closing a bug because it related to lack of disk space
+ (closes: Bug#52714)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Wed, 19 Jan 2000 19:28:09 -0500
+
+binutils (2.9.5.0.22-2) unstable; urgency=high
+
+ * Added getopt.h include that was omitted in the -taso patch
+ (closes: Bug#52380)
+ * Fixed table misalignment when calling objdump --info
+ (closes: Bug#51517)
+ * Added Debian changelog to binutils-doc (closes: Bug#52574)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Wed, 15 Dec 1999 19:14:05 -0500
+
+binutils (2.9.5.0.22-1) unstable; urgency=high
+
+ * New upstream version.
+ * More MIPS fixes.
+ * Added support for -taso linker flag for Alpha.
+ * Reapplied all previous patches.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Wed, 7 Dec 1999 01:08:51 -0600
+
+binutils (2.9.5.0.19-1) unstable; urgency=high
+
+ * New upstream version
+ * Fixes some MIPS problems
+ * Reapplied the ObjC patch (is this ever going to be fixed upstream)
+ since it's badly needed right now
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Thu, 4 Nov 1999 15:00:35 -0400
+
+binutils (2.9.5.0.16-3) unstable; urgency=low
+
+ * Added support for mipsel-linux in binutils-multiarch
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Thu, 4 Nov 1999 15:00:35 -0400
+
+binutils (2.9.5.0.16-2) unstable; urgency=low
+
+ * Added a replaces field in the control file to fix
+ previous file overwrite problems (closes: Bug#47518, Bug#47938)
+ * Verified manpages are up to date (closes: Bug#18483)
+ * Added m68k-rtems to targets in -multiarch in hopes
+ that it will actually work as advertised (closes: Bug#47468)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Mon, 25 Oct 1999 15:58:55 -0400
+
+binutils (2.9.5.0.16-1) unstable; urgency=low
+
+ * New upstream version.
+ * Massive bugfix upload on the Debian side:
+ * Fixes changelog problems between all of the binutils
+ debs (closes: Bug#47133, Bug#47208, Bug#47211)
+ * Fixes other overwrite problems (closes: Bug#46991, Bug#47024, Bug#46074)
+ * Multiarch should now make good diversions when
+ upgrading (closes: Bug#47359)
+ * Applied patch from Kevin Buhr to fix ld segfaults with
+ empty archives (closes: Bug#47019)
+ * Should have fixed info install problems by now
+ (closes: Bug#35935)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Fri, 15 Oct 1999 03:18:55 -0400
+
+binutils (2.9.5.0.14-1) unstable; urgency=low
+
+ * New upstream version.
+ * Thanks to Matthias Klose for the following:
+ * Separate documentation to binutils-doc package.
+ * debian/rules:
+ - Remove extra /usr/share/doc/binutils/changelog.gz file.
+ - Move bfd docs to binutils-dev package.
+ - Move upstream changelogs to binutils-doc package.
+ - Remove standard GNU info files left in /usr/share/info.
+ - Call dh_installdocs for all packages.
+ * debian/*{dirs,files}: Remove. Mention explicitely in debian/rules.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Wed, 6 Oct 1999 03:18:55 -0400
+
+binutils (2.9.5.0.12-2) unstable; urgency=low
+
+ * Applied patch from Matthias Klose to fix many issues including architecture detection.
+ * Rules file is now much prettier and easier to manage.
+ * Binutils is now built for i386 rather than i486 in the rules file (oops).
+ * Added diversion for readelf in binutils-multiarch.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Tue, 21 Sep 1999 03:39:08 -0400
+
+binutils (2.9.5.0.12-1) unstable; urgency=low
+
+ * Massive bugfix release.
+ * New upstream source (finally) (closes: Bug#44934)
+ * Fixes upstream bugs on many platforms.
+ * Gives powerpc a working binutils again. (closes: Bug#45052)
+ * Now provides .code16 support on i386 (please test)
+ * Manpage for objdump should now be complete (closes: Bug#27039)
+ * Put together manpages for gasp and the new binary readelf (closes: Bug#21918)
+ * Fixes nm core dump problem (closes: Bug#41999)
+ * Applied patches from Ben Collins to add sparc64 support (closes: Bug#44426)
+ * Update Standards version
+ * FHS compliance
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Sat, 18 Sep 1999 01:21:05 -0400
+
+binutils (2.9.5.0.12-0.2) experimental; urgency=low
+
+ * Added Sparc/Sparc64 changes from Ben Collins (I really need a Sparc one of these days).
+ * Again, this should be the last experimental before a new release.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Fri, 17 Aug 1999 16:32:05 -0400
+
+binutils (2.9.5.0.12-0.1) experimental; urgency=low
+
+ * New upstream version.
+ * Should be the last experimental before a new release.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Thu, 9 Aug 1999 23:12:52 -0400
+
+binutils (2.9.5.0.10-0.1) experimental; urgency=low
+
+ * New upstream version.
+ * Didn't apply PPC patches...let me know if still needed
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Thu, 9 Aug 1999 23:12:52 -0400
+
+binutils (2.9.5.0.6-0.1) experimental; urgency=low
+
+ * New upstream version.
+ * Didn't apply PPC patches...let me know if still needed
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Thu, 9 Aug 1999 23:12:52 -0400
+
+binutils (2.9.4.0.8-0.1) unstable; urgency=low
+
+ * New upstream version.
+ * Applied as much of the PPC patches as I could.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Thu, 15 Jul 1999 12:46:45 -0400
+
+binutils (2.9.4.0.3-0.1) unstable; urgency=low
+
+ * New upstream version.
+ * Apply patch from Richard Henderson to fix PPC's libpath.
+ * Apply patch from Franz Sirl to fix Richard Henderson.
+
+ -- Daniel Jacobowitz <dan@debian.org> Sun, 6 Jun 1999 01:27:10 -0400
+
+binutils (2.9.4.0.2-0.1) unstable; urgency=low
+
+ * New upstream version. 2.9.4.0.1 was hurriedly recalled.
+
+ -- Daniel Jacobowitz <dan@debian.org> Sun, 6 Jun 1999 01:27:10 -0400
+
+binutils (2.9.4.0.1-0.1) unstable; urgency=low
+
+ * New upstream version.
+
+ -- Daniel Jacobowitz <dan@debian.org> Sun, 6 Jun 1999 01:27:10 -0400
+
+binutils (2.9.1.0.25-2) unstable; urgency=low
+
+ * Added ObjC patch AGAIN...sorry about that
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Sun, 23 May 1999 15:14:35 -0400
+
+binutils (2.9.1.0.25-1) unstable; urgency=low
+
+ * New upstream version - Fixes a PIII asm optimisation bug
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Sun, 23 May 1999 00:36:55 -0400
+
+binutils (2.9.1.0.24-2) unstable; urgency=low
+
+ * Reapplied ObjC patch...apparently it's still needed.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Mon, 10 May 1999 19:53:15 -0400
+
+binutils (2.9.1.0.24-1) unstable; urgency=low
+
+ * New upstream release - fixes too many little things to mention.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Tue, 3 May 1999 16:35:08 -0400
+
+binutils (2.9.1.0.23-1) unstable; urgency=low
+
+ * New upstream release - incorporates sparc64 and arm patches.
+ * Added RPATH patch from Joel Klecker since my last upload failed.
+ * Removed ObjC patch. Let me know if it is still needed (doubtful, but
+ still might be).
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Mon, 5 Apr 1999 13:26:55 -0500
+
+binutils (2.9.1.0.22b-2) unstable; urgency=low
+
+ * Added patch from Joel Klecker to finally (properly) fix the rpath issue
+ (Thanks, Joel!).
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Fri, 2 Apr 1999 18:14:05 -0600
+
+binutils (2.9.1.0.22b-1) unstable; urgency=low
+
+ * Converted package to CVS (so bear with any delays in handling
+ bug fixes; I'm new to CVS ironically)
+ * New upstream version (sparc64 and ARM patches again added).
+ * Added support for mingw32 target in binutils-multiarch
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Fri, 12 Mar 1999 03:51:44 -0600
+
+binutils (2.9.1.0.19a-4) frozen unstable; urgency=high
+ * Added sparc64 patches from Steve Dunham to fix sparc64 targets
+ * Modified rules to add support for gcc/egcs by arch.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Mon, 1 Feb 1999 15:51:19 -0600
+
+binutils (2.9.1.0.19a-3) frozen unstable; urgency=high
+
+ * Reverted a patch to elflink.h that caused problems for
+ Obj-C code (symbols weren't exported with a size or
+ type).
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Thu, 21 Jan 1999 19:25:17 -0600
+
+binutils (2.9.1.0.19a-2) frozen unstable; urgency=low
+
+ * Added arm-linux as multiarch target (sorry Jim).
+ * Uploaded to frozen to fix strange intermittant kernel
+ compilation problems (Fixes #31434).
+ * Fixed multiarch's postinst script to check for
+ c++filt.single before trying to remove it to prevent
+ warning messages if using g++ from egcs.
+ * Fixed typo in multiarch's postrm (addr2line) (Fixes: #31533)
+ * Added links to .so's for clean removal in the future (Fixes: #31536)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Fri, 8 Jan 1999 15:28:32 -0600
+
+binutils (2.9.1.0.19a-1) unstable; urgency=low
+
+ * New upstream version; fixes some Alpha problems and other archs
+ should benefit also.
+ * Added ARM target patch from Corel again (still not in upstream).
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Mon, 4 Jan 1999 20:24:36 -0600
+
+binutils (2.9.1.0.16-1) unstable; urgency=low
+
+ * New upstream version; merges some ARM patches for Netwinders
+ * Added patch for ARM target from Corel (thanks Jim Pick)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Mon, 30 Nov 1998 16:59:25 -0600
+
+binutils (2.9.1.0.15-5) frozen unstable; urgency=low
+
+ * Reuploaded to frozen (why it wasn't there earlier....)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Mon, 30 Nov 1998 16:37:08 -0600
+
+binutils (2.9.1.0.15-4) unstable frozen; urgency=low
+
+ * Removed c++filt diversion in -multiarch to prevent conflicting
+ diversions when using egcs' g++ (which also wants to divert c++filt)
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Wed, 25 Nov 1998 18:06:17 -0600
+
+binutils (2.9.1.0.15-3) unstable frozen; urgency=low
+
+ * Made Roman's changes "official" (thanks Roman).
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Mon, 2 Nov 1998 05:46:56 -0600
+
+binutils (2.9.1.0.15-2.1) unstable; urgency=low
+
+ * Non-maintainer upload with agreement from Chris.
+ * Use a different soname for multi-arch libbfd and libopcodes; this
+ fixes the problem that the single-arch binaries (as and the diverted
+ ones) will all dump core because they're runtime-linked against the
+ multi-arch libs. (Fixes: #28656)
+ * Due to the above, binutils-multiarch also needs ldconfig in postinst
+ now.
+ * Fixup diversions once again: Do not even package the ldscripts for the
+ native architecture, so diversions for files in /usr/lib/ldscripts
+ aren't necessary.
+ * Also remove diversions on abort-install.
+ * Remove now obsolete diversions in preinst.
+ * Also symlink /usr/doc/binutils-multiarch to binutils, and do not
+ put /usr/doc/binutils in the package again.
+ * Put the symlinks libbfd.so and libopcode.so into binutils-dev, so one
+ can link to them.
+
+ -- Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de> Sat, 31 Oct 1998 11:31:14 +0100
+
+binutils (2.9.1.0.15-2) unstable; urgency=low
+
+ * Fixed binutils-multiarch diversions
+ * Reverted elf.c to .13 version to fix bug in strip
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Tue, 27 Oct 1998 05:26:28 -0600
+
+binutils (2.9.1.0.15-1) unstable; urgency=low
+
+ * New upstream version.
+ * Moved over to debhelper and updated standards version to 2.4.1.4.
+ * Adds 3DNow instruction support for AMD processors.
+ * Fixes MANY Alpha bugs and a few for Sparc, PPC, and m68k reportedly.
+ * Added binutils-multiarch package to allow for multiple-arch support
+ (fixes bug #19471).
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Thu, 14 Oct 1998 19:30:10 -0500
+
+binutils (2.9.1.0.13-1) unstable; urgency=low
+
+ * New upstream version, fixes bug #25354.
+ * Hopefully, all requested docs are included, fixes bug #21325.
+ * Fixes MANY Alpha problems.
+ * Reportedly may fix MIPS and Sparc problems also...see changelogs.
+ * Has been tested on x86's with great success.
+
+ -- Christopher C. Chimelis <chris@classnet.med.miami.edu> Mon, 5 Oct 1998 23:02:08 -0500
+
+binutils (2.9.1-0.2) frozen unstable; urgency=low
+
+ * Fixed binutils-dev dependencies.
+
+ -- Joel Klecker <jk@espy.org> Tue, 05 May 1998 09:24:04 -0700
+
+binutils (2.9.1-0.1) frozen unstable; urgency=medium
+
+ * Non-maintainer release.
+ * New upstream release.
+ * Moved docs into subdirs where appropriate.
+ * Integrated the following changes from J.H.M. Dassen:
+ * Updated FSF address in copyright file. (lintian).
+ * Reported lack of "gasp" manpage (# ....), and link it to
+ undocumented(7). (lintian).
+ * Added a TODO list.
+
+ -- Joel Klecker <jk@espy.org> Thu, 30 Apr 1998 10:43:42 -0700
+
+binutils (2.9-0.3) frozen unstable; urgency=medium
+
+ * Added upstream patch which fixes a problem with strip
+ and netscape (#17971).
+
+ -- Joel Klecker <jk@espy.org> Tue, 28 Apr 1998 08:58:27 -0700
+
+binutils (2.9-0.2) frozen unstable; urgency=low
+
+ * Added more of the upstream docs (#21325).
+ * Put a changelog.gz symlink in /usr/doc/binutils
+ to satisfy policy.
+
+ -- Joel Klecker <jk@espy.org> Tue, 21 Apr 1998 09:02:22 -0700
+
+binutils (2.9-0.1) frozen unstable; urgency=low
+
+ * Non-maintainer release.
+ * New upstream release (bugfixes only).
+
+ -- Joel Klecker <jk@espy.org> Sun, 12 Apr 1998 04:11:07 -0700
+
+binutils (2.8.1.0.23-1) unstable; urgency=low
+
+ * New upstream version
+ * -dev replaces libc5-dev (#17840)
+ * No longer possible to link against shared libbbfd/opcodes (#18121)
+
+ -- Galen Hazelwood <galenh@micron.net> Sat, 14 Mar 1998 18:19:10 -0700
+
+binutils (2.8.1.0.19-1) unstable; urgency=low
+
+ * New upstream version (#17296)
+ * Fixed typo in description (#16481)
+ * Fully replaces libbfd-dev (#16619)
+
+ -- Galen Hazelwood <galenh@micron.net> Sun, 25 Jan 1998 15:37:03 -0700
+
+binutils (2.8.1.0.17-1) unstable; urgency=low
+
+ * New upstream version
+ * Rejoined libbfd and binutils packages (#15486)
+ * Added "SHELL=bash" to rules file (#14528)
+ * bfd info docs seem to be broken, don't install for now
+
+ -- Galen Hazelwood <galenh@micron.net> Sat, 6 Dec 1997 14:55:26 -0700
+
+binutils (2.8.1.0.15-1) unstable; urgency=low
+
+ * New upstream version (#14250)
+ * Updated to Standard 2.3.0.0
+ * Restored ansidecl.h to libbfd-dev (#14116)
+
+ -- Galen Hazelwood <galenh@micron.net> Thu, 30 Oct 1997 20:04:24 -0700
+
+binutils (2.8.1-2) unstable; urgency=low
+
+ * Added 2.8.1.0.4 patch
+
+ -- Galen Hazelwood <galenh@micron.net> Thu, 12 Jun 1997 20:49:57 -0600
+
+binutils (2.8.1-1) unstable; urgency=low
+
+ * New upstream version
+ * Added 2.8.1.0.1 patch
+
+ -- Galen Hazelwood <galenh@micron.net> Fri, 30 May 1997 14:48:42 -0600
+
+binutils (2.8-1) unstable; urgency=low
+
+ * New upstream version
+ * Smarter debian build environment (automatic version handling)
+ * Added 2.8.0.3 patch
+ * Built with libc6
+
+ -- Galen Hazelwood <galenh@micron.net> Sun, 4 May 1997 11:16:12 -0600
+
+binutils (2.7.0.9-3) frozen unstable; urgency=low
+
+ * Patched for alpha support
+ * Distribute libiberty.a with -dev package (#8376)
+ * libbfd[x]-dev now has standard Provides/Conflicts behavior (#8377)
+
+ -- Galen Hazelwood <galenh@micron.net> Fri, 28 Mar 1997 11:45:58 -0700
+
+binutils (2.7.0.9-2) unstable; urgency=low
+
+ * Moved 2.7.0.9 out of experimental (no longer unreleased beta)
+
+ -- Galen Hazelwood <galenh@micron.net> Sun, 9 Mar 1997 23:43:19 -0700
+
+binutils (2.7.0.9-1) experimental; urgency=low
+
+ * New upstream beta version (fixes bug #7336)
+ * Split shared libraries (bfd) out of binutils (fixes bug #7244)
+ * No longer builds aout-binutils
+
+ -- Galen Hazelwood <galenh@micron.net> Thu, 13 Feb 1997 00:27:18 -0700
+
+binutils (2.7-6) unstable; urgency=low
+
+ * Uses dpkg --print-gnu-build-architecture for build
+ * Demoted aout-binutils to priority "extra"
+
+ -- Galen Hazelwood <galenh@micron.net> Mon, 27 Jan 1997 13:34:08 -0700
+
+binutils (2.7-5) unstable; urgency=low (HIGH for m68k)
+
+ * Added patch for m68k, will now compile X68 and kernel 2.1.15
+
+ -- Galen Hazelwood <galenh@micron.net> Tue, 31 Dec 1996 22:15:03 -0700
+
+binutils (2.7-4) unstable; urgency=low
+
+ * New maintainer
+ * Updated to new source format
+ * Fixed typo in script.1 (Fixes bug #4558)
+ * Fixed typo in as.1 (Fixes bug #5567)
+ * Postinst now calls ldconfig without explicit pathname (Fixes bug #6151)
+
+ -- Galen Hazelwood <galenh@micron.net> Mon, 30 Dec 1996 12:10:25 -0700
+
+binutils (2.7-3):
+
+Remove lib*.so links so the libs are not used for develpment.
+gzip manpages
+
+Changes made by Michael Meskes <meskes@debian.org> in consent with David Engel.
+
+binutils (2.7-2):
+
+Include shared libraries
+Strip shared libraries
+Also update AOUT version
+Minor changes to debian.rules
+
+binutils (2.7-1):
+
+Updated to new upstream version.
+
+Added a simple extended description (Bug#3574).
+
+Don't call ldconfig from postrm script (Bug#4246).
+
+ LocalWords: Aurelien Jarno
+
--- /dev/null
+Source: binutils
+Section: devel
+Priority: optional
+Maintainer: Matthias Klose <doko@debian.org>
+Uploaders: James Troup <binutils@elmo.tasta.io>
+Standards-Version: 4.6.0
+Build-Depends: autoconf (>= 2.64), dpkg-dev (>= 1.19.0.5),
+ bison, flex, gettext, texinfo, dejagnu, quilt, chrpath, dwz, debugedit (>= 4.16),
+ python3:any, file, xz-utils, lsb-release, zlib1g-dev, procps,
+ g++-aarch64-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-arm-linux-gnueabi [amd64 arm64 i386 x32] <!nocheck>,
+ g++-arm-linux-gnueabihf [amd64 arm64 i386 x32] <!nocheck>,
+ g++-powerpc64le-linux-gnu [amd64 arm64 i386 ppc64 x32] <!nocheck>,
+ g++-s390x-linux-gnu [amd64 arm64 i386 ppc64el x32] <!nocheck>,
+ g++-alpha-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-hppa-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-m68k-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-powerpc-linux-gnu [amd64 i386 ppc64el x32] <!nocheck>,
+ g++-powerpc64-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-riscv64-linux-gnu [amd64 arm64 i386 ppc64el x32] <!nocheck>,
+ g++-sh4-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-sparc64-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-i686-linux-gnu [amd64 arm64 ppc64el x32] <!nocheck>,
+ g++-x86-64-linux-gnu [arm64 i386 ppc64el] <!nocheck>,
+ g++-x86-64-linux-gnux32 [amd64 arm64 i386 ppc64el] <!nocheck>,
+Build-Conflicts: libelf-dev
+Rules-Requires-Root: no
+Homepage: https://www.gnu.org/software/binutils/
+Vcs-Browser: https://salsa.debian.org/toolchain-team/binutils
+Vcs-Git: https://salsa.debian.org/toolchain-team/binutils.git
+XS-Testsuite: autopkgtest
+
+Package: binutils-for-host
+Architecture: any
+Depends: ${binutils:native}:any (>= ${binutils:minver}),
+ binutils-common (= ${binary:Version}),
+Multi-Arch: same
+Description: GNU assembler, linker and binary utilities for the host architecture
+ The programs in this package are used to assemble, link and manipulate
+ binary and object files for the architecture of this package. They may be
+ used in conjunction with a matching compiler and various libraries to build
+ programs. When using binutils through this metapackage, all tools must be
+ used with an architecture prefix.
+
+Package: binutils-for-build
+Architecture: all
+Depends: binutils (>= ${binutils:minver}),
+ binutils-common (>= ${binutils:minver})
+Multi-Arch: foreign
+Description: GNU assembler, linker and binary utilities for the build architecture
+ The programs in this package are used to assemble, link and manipulate
+ binary and object files for the native architecture. They may be used in
+ conjunction with a build architecture compiler and various libraries to build
+ programs. When using binutils through this metapackage, tools without an
+ architecture prefix must be used.
+
+Package: binutils
+Architecture: any
+Depends: ${shlibs:Depends}, binutils-common (= ${binary:Version}),
+ libbinutils (= ${binary:Version}), ${binutils:native} (= ${binary:Version})
+Conflicts: modutils (<< 2.4.19-1), ${extraConflicts},
+ binutils-multiarch (<< 2.27-8)
+Provides: elf-binutils, ${gold:Provides}
+Suggests: binutils-doc (>= ${source:Version})
+Description: GNU assembler, linker and binary utilities
+ The programs in this package are used to assemble, link and manipulate
+ binary and object files. They may be used in conjunction with a compiler
+ and various libraries to build programs.
+
+Package: libctf-nobfd0
+Architecture: any
+Multi-Arch: same
+Depends: ${shlibs:Depends}
+Breaks: libbinutils (<< 2.33.50.20191128-1~)
+Replaces: libbinutils (<< 2.33.50.20191128-1~)
+Description: Compact C Type Format library (runtime, no BFD dependency)
+ This package includes the libctf-nobfd shared library. The Compact C Type
+ Format (CTF) is a way of representing information about a binary program
+
+Package: libctf-nobfd0-dbg
+Section: debug
+Architecture: any
+Multi-Arch: same
+Depends: libctf-nobfd0 (= ${binary:Version})
+Description: Compact C Type Format library (debug symbols, no BFD dependency)
+ This package includes the libctf-nobfd shared library. The Compact C Type
+ Format (CTF) is a way of representing information about a binary program
+
+Package: libctf0
+Architecture: any
+Multi-Arch: same
+Depends: ${shlibs:Depends}, libbinutils (= ${binary:Version})
+Description: Compact C Type Format library (runtime, BFD dependency)
+ This package includes the libctf-nobfd shared library. The Compact C Type
+ Format (CTF) is a way of representing information about a binary program
+
+Package: libctf0-dbg
+Section: debug
+Architecture: any
+Multi-Arch: same
+Depends: libctf0 (= ${binary:Version})
+Description: Compact C Type Format library (debug symbols, BFD dependency)
+ This package includes the libctf-nobfd shared library. The Compact C Type
+ Format (CTF) is a way of representing information about a binary program
+
+Package: libbinutils
+Architecture: any
+Multi-Arch: same
+Depends: ${shlibs:Depends}, binutils-common (= ${binary:Version})
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities (private shared library)
+ This package includes the private shared libraries libbfd and libopcodes.
+
+Package: libbinutils-dbg
+Section: debug
+Architecture: any
+Multi-Arch: same
+Depends: libbinutils (= ${binary:Version})
+Description: GNU binary utilities (private shared library, debug symbols)
+ This package provides debug symbols for libbinutils.
+
+Package: binutils-dev
+Architecture: any
+Priority: optional
+Depends: binutils (= ${binary:Version}), libbinutils (= ${binary:Version}),
+ libctf0 (= ${binary:Version}), libctf-nobfd0 (= ${binary:Version})
+Conflicts: libbfd-dev
+Provides: libbfd-dev
+Replaces: libbfd-dev, libc5-dev
+Description: GNU binary utilities (BFD development files)
+ This package includes header files and static libraries necessary to build
+ programs which use the GNU BFD library, which is part of binutils. Note
+ that building Debian packages which depend on the shared libbfd is Not
+ Allowed.
+
+Package: binutils-multiarch
+Architecture: any
+Priority: optional
+Depends: ${shlibs:Depends}, binutils (= ${binary:Version}),
+ binutils-common (= ${binary:Version})
+Description: Binary utilities that support multi-arch targets
+ The programs in this package are used to manipulate binary and object
+ files that may have been created on other architectures. This package
+ is primarily for multi-architecture developers and cross-compilers and
+ is not needed by normal users or developers. Note that a cross-assembling
+ version of gas is not included in this package, just the binary utilities.
+ .
+ NORMAL USERS SHOULD NOT INSTALL THIS PACKAGE. It's meant only for those
+ requiring support for reading info from binaries from other architectures.
+
+Package: binutils-multiarch-dbg
+Section: debug
+Architecture: any
+Priority: optional
+Depends: binutils-multiarch (= ${binary:Version})
+Description: Binary utilities that support multi-arch targets (debug symbols)
+ This package provides debug symbols for binutils-multiarch.
+
+Package: binutils-multiarch-dev
+Architecture: any
+Priority: optional
+Depends: ${shlibs:Depends},
+ binutils-dev (= ${binary:Version}), binutils-multiarch (= ${binary:Version})
+Replaces: binutils-multiarch (<< 2.24-5)
+Description: GNU binary utilities that support multi-arch targets (BFD development files)
+ This package includes header files, static and shared libraries necessary
+ to build programs which use the GNU BFD library for multi-arch targets,
+ which is part of binutils. Note that building Debian packages which depend
+ on the shared libbfd is Not Allowed.
+ .
+ NORMAL USERS SHOULD NOT INSTALL THIS PACKAGE. It's meant only for those
+ requiring support for reading info from binaries from other architectures.
+
+Package: binutils-hppa64-linux-gnu
+Architecture: amd64 i386 x32 hppa
+Depends: ${shlibs:Depends}, binutils (= ${binary:Version}),
+ binutils-common (= ${binary:Version})
+Recommends: libc6-dev
+Provides: binutils-hppa64
+Suggests: binutils-doc (>= ${source:Version})
+Breaks: binutils-hppa64 (<< 2.25.1-2)
+Replaces: binutils-hppa64 (<< 2.25.1-2)
+Description: GNU assembler, linker and binary utilities targeted for hppa64-linux
+ The programs in this package are used to assemble, link and manipulate
+ binary and object files. They may be used in conjunction with a compiler
+ and various libraries to build programs.
+ .
+ This package is needed to build an 64-bit kernel for 64-bit hppa machines.
+
+Package: binutils-hppa64-linux-gnu-dbg
+Section: debug
+Architecture: amd64 i386 x32 hppa
+Depends: binutils-hppa64-linux-gnu (= ${binary:Version})
+Description: GNU binutils targeted for hppa64-linux (debug symbols)
+ This package provides debug symbols for binutils-hppa64-linux-gnu.
+
+Package: binutils-doc
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Priority: optional
+Suggests: binutils (= ${binary:Version})
+Description: Documentation for the GNU assembler, linker and binary utilities
+ This package consists of the documentation for the GNU assembler,
+ linker and binary utilities in info format.
+
+Package: binutils-source
+Architecture: all
+Multi-Arch: foreign
+Priority: optional
+Depends: texinfo, zlib1g-dev, make, python3
+Description: GNU assembler, linker and binary utilities (source)
+ This package contains the sources and patches which are needed to
+ build binutils.
+
+Package: binutils-common
+Architecture: any
+Multi-Arch: same
+Breaks: binutils (<< 2.29.1-3.1~)
+Replaces: binutils (<< 2.29.1-3.1~)
+Description: Common files for the GNU assembler, linker and binary utilities
+ This package contains the localization files used by binutils packages for
+ various target architectures and parts of the binutils documentation. It is
+ not useful on its own.
+
+Package: binutils-x86-64-linux-gnu
+Priority: optional
+Architecture: amd64 arm64 i386 ppc64el x32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for x86-64-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the x86-64-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for x86-64-linux-gnu and x86-64-linux-gnu is not your native platform.
+
+Package: binutils-x86-64-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: amd64 arm64 i386 ppc64el x32
+Multi-Arch: foreign
+Depends: binutils-x86-64-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for x86-64-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-x86-64-linux-gnu.
+
+Package: binutils-i686-linux-gnu
+Priority: optional
+Architecture: i386 amd64 arm64 ppc64el x32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides: binutils-i586-linux-gnu
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for i686-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the i686-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for i686-linux-gnu and i686-linux-gnu is not your native platform.
+
+Package: binutils-i686-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: i386 amd64 arm64 ppc64el x32
+Multi-Arch: foreign
+Depends: binutils-i686-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for i686-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-i686-linux-gnu.
+
+Package: binutils-aarch64-linux-gnu
+Priority: optional
+Architecture: arm64 amd64 i386 x32 ppc64el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for aarch64-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the aarch64-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for aarch64-linux-gnu and aarch64-linux-gnu is not your native platform.
+
+Package: binutils-aarch64-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: arm64 amd64 i386 x32 ppc64el
+Multi-Arch: foreign
+Depends: binutils-aarch64-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for aarch64-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-aarch64-linux-gnu.
+
+Package: binutils-arm-linux-gnueabihf
+Priority: optional
+Architecture: armhf amd64 i386 x32 arm64 ppc64el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for arm-linux-gnueabihf target
+ This package provides GNU assembler, linker and binary utilities
+ for the arm-linux-gnueabihf target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for arm-linux-gnueabihf and arm-linux-gnueabihf is not your native platform.
+
+Package: binutils-arm-linux-gnueabihf-dbg
+Section: debug
+Priority: optional
+Architecture: armhf amd64 i386 x32 arm64 ppc64el
+Multi-Arch: foreign
+Depends: binutils-arm-linux-gnueabihf (= ${binary:Version})
+Description: GNU binary utilities, for arm-linux-gnueabihf target (debug symbols)
+ This package provides debug symbols for binutils-arm-linux-gnueabihf.
+
+Package: binutils-arm-linux-gnueabi
+Priority: optional
+Architecture: armel amd64 i386 x32 arm64 ppc64el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for arm-linux-gnueabi target
+ This package provides GNU assembler, linker and binary utilities
+ for the arm-linux-gnueabi target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for arm-linux-gnueabi and arm-linux-gnueabi is not your native platform.
+
+Package: binutils-arm-linux-gnueabi-dbg
+Section: debug
+Priority: optional
+Architecture: armel amd64 i386 x32 arm64 ppc64el
+Multi-Arch: foreign
+Depends: binutils-arm-linux-gnueabi (= ${binary:Version})
+Description: GNU binary utilities, for arm-linux-gnueabi target (debug symbols)
+ This package provides debug symbols for binutils-arm-linux-gnueabi.
+
+Package: binutils-powerpc64le-linux-gnu
+Priority: optional
+Architecture: ppc64el amd64 i386 x32 ppc64 arm64
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for powerpc64le-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the powerpc64le-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for powerpc64le-linux-gnu and powerpc64le-linux-gnu is not your native platform.
+
+Package: binutils-powerpc64le-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: ppc64el amd64 i386 x32 ppc64 arm64
+Multi-Arch: foreign
+Depends: binutils-powerpc64le-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for powerpc64le-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-powerpc64le-linux-gnu.
+
+Package: binutils-s390x-linux-gnu
+Priority: optional
+Architecture: s390x amd64 i386 x32 arm64 ppc64el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for s390x-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the s390x-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for s390x-linux-gnu and s390x-linux-gnu is not your native platform.
+
+Package: binutils-s390x-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: s390x amd64 i386 x32 arm64 ppc64el
+Multi-Arch: foreign
+Depends: binutils-s390x-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for s390x-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-s390x-linux-gnu.
+
+Package: binutils-alpha-linux-gnu
+Priority: optional
+Architecture: alpha amd64 i386 x32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for alpha-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the alpha-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for alpha-linux-gnu and alpha-linux-gnu is not your native platform.
+
+Package: binutils-alpha-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: alpha amd64 i386 x32
+Multi-Arch: foreign
+Depends: binutils-alpha-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for alpha-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-alpha-linux-gnu.
+
+Package: binutils-hppa-linux-gnu
+Priority: optional
+Architecture: hppa amd64 i386 x32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for hppa-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the hppa-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for hppa-linux-gnu and hppa-linux-gnu is not your native platform.
+
+Package: binutils-hppa-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: hppa amd64 i386 x32
+Multi-Arch: foreign
+Depends: binutils-hppa-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for hppa-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-hppa-linux-gnu.
+
+Package: binutils-ia64-linux-gnu
+Priority: optional
+Architecture: ia64 amd64 i386 x32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for ia64-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the ia64-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for ia64-linux-gnu and ia64-linux-gnu is not your native platform.
+
+Package: binutils-ia64-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: ia64 amd64 i386 x32
+Multi-Arch: foreign
+Depends: binutils-ia64-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for ia64-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-ia64-linux-gnu.
+
+Package: binutils-m68k-linux-gnu
+Priority: optional
+Architecture: m68k amd64 i386 x32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for m68k-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the m68k-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for m68k-linux-gnu and m68k-linux-gnu is not your native platform.
+
+Package: binutils-m68k-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: m68k amd64 i386 x32
+Multi-Arch: foreign
+Depends: binutils-m68k-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for m68k-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-m68k-linux-gnu.
+
+Package: binutils-powerpc-linux-gnu
+Priority: optional
+Architecture: powerpc amd64 i386 x32 ppc64el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for powerpc-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the powerpc-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for powerpc-linux-gnu and powerpc-linux-gnu is not your native platform.
+
+Package: binutils-powerpc-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: powerpc amd64 i386 x32 ppc64el
+Multi-Arch: foreign
+Depends: binutils-powerpc-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for powerpc-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-powerpc-linux-gnu.
+
+Package: binutils-powerpc64-linux-gnu
+Priority: optional
+Architecture: ppc64 amd64 i386 x32 ppc64el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for powerpc64-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the powerpc64-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for powerpc64-linux-gnu and powerpc64-linux-gnu is not your native platform.
+
+Package: binutils-powerpc64-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: ppc64 amd64 i386 x32 ppc64el
+Multi-Arch: foreign
+Depends: binutils-powerpc64-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for powerpc64-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-powerpc64-linux-gnu.
+
+Package: binutils-riscv64-linux-gnu
+Priority: optional
+Architecture: riscv64 amd64 i386 x32 arm64 ppc64el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for riscv64-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the riscv64-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for riscv64-linux-gnu and riscv64-linux-gnu is not your native platform.
+
+Package: binutils-riscv64-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: riscv64 amd64 i386 x32 arm64 ppc64el
+Multi-Arch: foreign
+Depends: binutils-riscv64-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for riscv64-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-riscv64-linux-gnu.
+
+Package: binutils-sh4-linux-gnu
+Priority: optional
+Architecture: sh4 amd64 i386 x32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for sh4-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the sh4-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for sh4-linux-gnu and sh4-linux-gnu is not your native platform.
+
+Package: binutils-sh4-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: sh4 amd64 i386 x32
+Multi-Arch: foreign
+Depends: binutils-sh4-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for sh4-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-sh4-linux-gnu.
+
+Package: binutils-sparc64-linux-gnu
+Priority: optional
+Architecture: sparc64 amd64 i386 x32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for sparc64-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the sparc64-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for sparc64-linux-gnu and sparc64-linux-gnu is not your native platform.
+
+Package: binutils-sparc64-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: sparc64 amd64 i386 x32
+Multi-Arch: foreign
+Depends: binutils-sparc64-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for sparc64-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-sparc64-linux-gnu.
+
+Package: binutils-x86-64-linux-gnux32
+Priority: optional
+Architecture: x32 amd64 arm64 i386 ppc64el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for x86-64-linux-gnux32 target
+ This package provides GNU assembler, linker and binary utilities
+ for the x86-64-linux-gnux32 target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for x86-64-linux-gnux32 and x86-64-linux-gnux32 is not your native platform.
+
+Package: binutils-x86-64-linux-gnux32-dbg
+Section: debug
+Priority: optional
+Architecture: x32 amd64 arm64 i386 ppc64el
+Multi-Arch: foreign
+Depends: binutils-x86-64-linux-gnux32 (= ${binary:Version})
+Description: GNU binary utilities, for x86-64-linux-gnux32 target (debug symbols)
+ This package provides debug symbols for binutils-x86-64-linux-gnux32.
+
+Package: binutils-i686-gnu
+Priority: optional
+Architecture: hurd-i386 amd64 i386 x32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides: binutils-i586-gnu
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for i686-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the i686-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for i686-gnu and i686-gnu is not your native platform.
+
+Package: binutils-i686-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: hurd-i386 amd64 i386 x32
+Multi-Arch: foreign
+Depends: binutils-i686-gnu (= ${binary:Version})
+Description: GNU binary utilities, for i686-gnu target (debug symbols)
+ This package provides debug symbols for binutils-i686-gnu.
+
+Package: binutils-x86-64-kfreebsd-gnu
+Priority: optional
+Architecture: kfreebsd-amd64 amd64 i386 x32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for x86-64-kfreebsd-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the x86-64-kfreebsd-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for x86-64-kfreebsd-gnu and x86-64-kfreebsd-gnu is not your native platform.
+
+Package: binutils-x86-64-kfreebsd-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: kfreebsd-amd64 amd64 i386 x32
+Multi-Arch: foreign
+Depends: binutils-x86-64-kfreebsd-gnu (= ${binary:Version})
+Description: GNU binary utilities, for x86-64-kfreebsd-gnu target (debug symbols)
+ This package provides debug symbols for binutils-x86-64-kfreebsd-gnu.
+
+Package: binutils-i686-kfreebsd-gnu
+Priority: optional
+Architecture: kfreebsd-i386 amd64 i386 x32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides: binutils-i586-kfreebsd-gnu
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for i686-kfreebsd-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the i686-kfreebsd-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for i686-kfreebsd-gnu and i686-kfreebsd-gnu is not your native platform.
+
+Package: binutils-i686-kfreebsd-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: kfreebsd-i386 amd64 i386 x32
+Multi-Arch: foreign
+Depends: binutils-i686-kfreebsd-gnu (= ${binary:Version})
+Description: GNU binary utilities, for i686-kfreebsd-gnu target (debug symbols)
+ This package provides debug symbols for binutils-i686-kfreebsd-gnu.
+
+Package: binutils-mips-linux-gnu
+Priority: optional
+Architecture: mips
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mips-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the mips-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mips-linux-gnu and mips-linux-gnu is not your native platform.
+
+Package: binutils-mips-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: mips
+Multi-Arch: foreign
+Depends: binutils-mips-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for mips-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-mips-linux-gnu.
+
+Package: binutils-mipsel-linux-gnu
+Priority: optional
+Architecture: mipsel
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mipsel-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the mipsel-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mipsel-linux-gnu and mipsel-linux-gnu is not your native platform.
+
+Package: binutils-mipsel-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: mipsel
+Multi-Arch: foreign
+Depends: binutils-mipsel-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for mipsel-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-mipsel-linux-gnu.
+
+Package: binutils-mips64-linux-gnuabi64
+Priority: optional
+Architecture: mips64
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mips64-linux-gnuabi64 target
+ This package provides GNU assembler, linker and binary utilities
+ for the mips64-linux-gnuabi64 target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mips64-linux-gnuabi64 and mips64-linux-gnuabi64 is not your native platform.
+
+Package: binutils-mips64-linux-gnuabi64-dbg
+Section: debug
+Priority: optional
+Architecture: mips64
+Multi-Arch: foreign
+Depends: binutils-mips64-linux-gnuabi64 (= ${binary:Version})
+Description: GNU binary utilities, for mips64-linux-gnuabi64 target (debug symbols)
+ This package provides debug symbols for binutils-mips64-linux-gnuabi64.
+
+Package: binutils-mips64el-linux-gnuabi64
+Priority: optional
+Architecture: mips64el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mips64el-linux-gnuabi64 target
+ This package provides GNU assembler, linker and binary utilities
+ for the mips64el-linux-gnuabi64 target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mips64el-linux-gnuabi64 and mips64el-linux-gnuabi64 is not your native platform.
+
+Package: binutils-mips64el-linux-gnuabi64-dbg
+Section: debug
+Priority: optional
+Architecture: mips64el
+Multi-Arch: foreign
+Depends: binutils-mips64el-linux-gnuabi64 (= ${binary:Version})
+Description: GNU binary utilities, for mips64el-linux-gnuabi64 target (debug symbols)
+ This package provides debug symbols for binutils-mips64el-linux-gnuabi64.
+
+Package: binutils-mips64-linux-gnuabin32
+Priority: optional
+Architecture: mipsn32
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mips64-linux-gnuabin32 target
+ This package provides GNU assembler, linker and binary utilities
+ for the mips64-linux-gnuabin32 target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mips64-linux-gnuabin32 and mips64-linux-gnuabin32 is not your native platform.
+
+Package: binutils-mips64-linux-gnuabin32-dbg
+Section: debug
+Priority: optional
+Architecture: mipsn32
+Multi-Arch: foreign
+Depends: binutils-mips64-linux-gnuabin32 (= ${binary:Version})
+Description: GNU binary utilities, for mips64-linux-gnuabin32 target (debug symbols)
+ This package provides debug symbols for binutils-mips64-linux-gnuabin32.
+
+Package: binutils-mips64el-linux-gnuabin32
+Priority: optional
+Architecture: mipsn32el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mips64el-linux-gnuabin32 target
+ This package provides GNU assembler, linker and binary utilities
+ for the mips64el-linux-gnuabin32 target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mips64el-linux-gnuabin32 and mips64el-linux-gnuabin32 is not your native platform.
+
+Package: binutils-mips64el-linux-gnuabin32-dbg
+Section: debug
+Priority: optional
+Architecture: mipsn32el
+Multi-Arch: foreign
+Depends: binutils-mips64el-linux-gnuabin32 (= ${binary:Version})
+Description: GNU binary utilities, for mips64el-linux-gnuabin32 target (debug symbols)
+ This package provides debug symbols for binutils-mips64el-linux-gnuabin32.
+
+Package: binutils-mipsisa64r6-linux-gnuabin32
+Priority: optional
+Architecture: mipsn32r6
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mipsisa64r6-linux-gnuabin32 target
+ This package provides GNU assembler, linker and binary utilities
+ for the mipsisa64r6-linux-gnuabin32 target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mipsisa64r6-linux-gnuabin32 and mipsisa64r6-linux-gnuabin32 is not your native platform.
+
+Package: binutils-mipsisa64r6-linux-gnuabin32-dbg
+Section: debug
+Priority: optional
+Architecture: mipsn32r6
+Multi-Arch: foreign
+Depends: binutils-mipsisa64r6-linux-gnuabin32 (= ${binary:Version})
+Description: GNU binary utilities, for mipsisa64r6-linux-gnuabin32 target (debug symbols)
+ This package provides debug symbols for binutils-mipsisa64r6-linux-gnuabin32.
+
+Package: binutils-mipsisa64r6el-linux-gnuabin32
+Priority: optional
+Architecture: mipsn32r6el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mipsisa64r6el-linux-gnuabin32 target
+ This package provides GNU assembler, linker and binary utilities
+ for the mipsisa64r6el-linux-gnuabin32 target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mipsisa64r6el-linux-gnuabin32 and mipsisa64r6el-linux-gnuabin32 is not your native platform.
+
+Package: binutils-mipsisa64r6el-linux-gnuabin32-dbg
+Section: debug
+Priority: optional
+Architecture: mipsn32r6el
+Multi-Arch: foreign
+Depends: binutils-mipsisa64r6el-linux-gnuabin32 (= ${binary:Version})
+Description: GNU binary utilities, for mipsisa64r6el-linux-gnuabin32 target (debug symbols)
+ This package provides debug symbols for binutils-mipsisa64r6el-linux-gnuabin32.
+
+Package: binutils-mipsisa32r6-linux-gnu
+Priority: optional
+Architecture: mipsr6
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mipsisa32r6-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the mipsisa32r6-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mipsisa32r6-linux-gnu and mipsisa32r6-linux-gnu is not your native platform.
+
+Package: binutils-mipsisa32r6-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: mipsr6
+Multi-Arch: foreign
+Depends: binutils-mipsisa32r6-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for mipsisa32r6-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-mipsisa32r6-linux-gnu.
+
+Package: binutils-mipsisa32r6el-linux-gnu
+Priority: optional
+Architecture: mipsr6el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mipsisa32r6el-linux-gnu target
+ This package provides GNU assembler, linker and binary utilities
+ for the mipsisa32r6el-linux-gnu target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mipsisa32r6el-linux-gnu and mipsisa32r6el-linux-gnu is not your native platform.
+
+Package: binutils-mipsisa32r6el-linux-gnu-dbg
+Section: debug
+Priority: optional
+Architecture: mipsr6el
+Multi-Arch: foreign
+Depends: binutils-mipsisa32r6el-linux-gnu (= ${binary:Version})
+Description: GNU binary utilities, for mipsisa32r6el-linux-gnu target (debug symbols)
+ This package provides debug symbols for binutils-mipsisa32r6el-linux-gnu.
+
+Package: binutils-mipsisa64r6-linux-gnuabi64
+Priority: optional
+Architecture: mips64r6
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mipsisa64r6-linux-gnuabi64 target
+ This package provides GNU assembler, linker and binary utilities
+ for the mipsisa64r6-linux-gnuabi64 target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mipsisa64r6-linux-gnuabi64 and mipsisa64r6-linux-gnuabi64 is not your native platform.
+
+Package: binutils-mipsisa64r6-linux-gnuabi64-dbg
+Section: debug
+Priority: optional
+Architecture: mips64r6
+Multi-Arch: foreign
+Depends: binutils-mipsisa64r6-linux-gnuabi64 (= ${binary:Version})
+Description: GNU binary utilities, for mipsisa64r6-linux-gnuabi64 target (debug symbols)
+ This package provides debug symbols for binutils-mipsisa64r6-linux-gnuabi64.
+
+Package: binutils-mipsisa64r6el-linux-gnuabi64
+Priority: optional
+Architecture: mips64r6el
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides:
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities, for mipsisa64r6el-linux-gnuabi64 target
+ This package provides GNU assembler, linker and binary utilities
+ for the mipsisa64r6el-linux-gnuabi64 target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for mipsisa64r6el-linux-gnuabi64 and mipsisa64r6el-linux-gnuabi64 is not your native platform.
+
+Package: binutils-mipsisa64r6el-linux-gnuabi64-dbg
+Section: debug
+Priority: optional
+Architecture: mips64r6el
+Multi-Arch: foreign
+Depends: binutils-mipsisa64r6el-linux-gnuabi64 (= ${binary:Version})
+Description: GNU binary utilities, for mipsisa64r6el-linux-gnuabi64 target (debug symbols)
+ This package provides debug symbols for binutils-mipsisa64r6el-linux-gnuabi64.
--- /dev/null
+
+Package: binutils-@target@
+Priority: optional
+Architecture: @host_archs@
+Multi-Arch: allowed
+Depends: binutils-common (= ${binary:Version}),
+ ${shlibs:Depends}, ${extraDepends}
+Suggests: binutils-doc (= ${source:Version})
+Provides: @binutils_alt_triplet@
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Built-Using: ${Built-Using}
+Description: GNU binary utilities, for @target@ target
+ This package provides GNU assembler, linker and binary utilities
+ for the @target@ target.
+ .
+ You don't need this package unless you plan to cross-compile programs
+ for @target@ and @target@ is not your native platform.
+
+Package: binutils-@target@-dbg
+Section: debug
+Priority: optional
+Architecture: @host_archs@
+Multi-Arch: foreign
+Depends: binutils-@target@ (= ${binary:Version})
+Description: GNU binary utilities, for @target@ target (debug symbols)
+ This package provides debug symbols for binutils-@target@.
--- /dev/null
+Source: binutils
+Section: devel
+Priority: optional
+Maintainer: Matthias Klose <doko@debian.org>
+Uploaders: James Troup <binutils@elmo.tasta.io>
+Standards-Version: 4.6.0
+Build-Depends: autoconf (>= 2.64), @dpkg_dev@
+ bison, flex, gettext, texinfo, dejagnu, quilt, chrpath, dwz, debugedit (>= 4.16),
+ python3:any, file, xz-utils, lsb-release, zlib1g-dev, procps,
+ g++-aarch64-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-arm-linux-gnueabi [amd64 arm64 i386 x32] <!nocheck>,
+ g++-arm-linux-gnueabihf [amd64 arm64 i386 x32] <!nocheck>,
+ g++-powerpc64le-linux-gnu [amd64 arm64 i386 ppc64 x32] <!nocheck>,
+ g++-s390x-linux-gnu [amd64 arm64 i386 ppc64el x32] <!nocheck>,
+ g++-alpha-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-hppa-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-m68k-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-powerpc-linux-gnu [amd64 i386 ppc64el x32] <!nocheck>,
+ g++-powerpc64-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-riscv64-linux-gnu [amd64 arm64 i386 ppc64el x32] <!nocheck>,
+ g++-sh4-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-sparc64-linux-gnu [amd64 i386 x32] <!nocheck>,
+ g++-i686-linux-gnu [amd64 arm64 ppc64el x32] <!nocheck>,
+ g++-x86-64-linux-gnu [arm64 i386 ppc64el] <!nocheck>,
+ g++-x86-64-linux-gnux32 [amd64 arm64 i386 ppc64el] <!nocheck>,
+Build-Conflicts: libelf-dev
+Rules-Requires-Root: no
+Homepage: https://www.gnu.org/software/binutils/
+Vcs-Browser: https://salsa.debian.org/toolchain-team/binutils
+Vcs-Git: https://salsa.debian.org/toolchain-team/binutils.git
+XS-Testsuite: autopkgtest
+
+Package: binutils-for-host
+Architecture: any
+Depends: ${binutils:native}:any (>= ${binutils:minver}),
+ binutils-common (= ${binary:Version}),
+Multi-Arch: same
+Description: GNU assembler, linker and binary utilities for the host architecture
+ The programs in this package are used to assemble, link and manipulate
+ binary and object files for the architecture of this package. They may be
+ used in conjunction with a matching compiler and various libraries to build
+ programs. When using binutils through this metapackage, all tools must be
+ used with an architecture prefix.
+
+Package: binutils-for-build
+Architecture: all
+Depends: binutils (>= ${binutils:minver}),
+ binutils-common (>= ${binutils:minver})
+Multi-Arch: foreign
+Description: GNU assembler, linker and binary utilities for the build architecture
+ The programs in this package are used to assemble, link and manipulate
+ binary and object files for the native architecture. They may be used in
+ conjunction with a build architecture compiler and various libraries to build
+ programs. When using binutils through this metapackage, tools without an
+ architecture prefix must be used.
+
+Package: binutils
+Architecture: any
+Depends: ${shlibs:Depends}, binutils-common (= ${binary:Version}),
+ libbinutils (= ${binary:Version}), ${binutils:native} (= ${binary:Version})
+Conflicts: modutils (<< 2.4.19-1), ${extraConflicts},
+ binutils-multiarch (<< 2.27-8)
+Provides: elf-binutils, ${gold:Provides}
+Suggests: binutils-doc (>= ${source:Version})
+Description: GNU assembler, linker and binary utilities
+ The programs in this package are used to assemble, link and manipulate
+ binary and object files. They may be used in conjunction with a compiler
+ and various libraries to build programs.
+
+Package: libctf-nobfd0
+Architecture: any
+Multi-Arch: same
+Depends: ${shlibs:Depends}
+Breaks: libbinutils (<< 2.33.50.20191128-1~)
+Replaces: libbinutils (<< 2.33.50.20191128-1~)
+Description: Compact C Type Format library (runtime, no BFD dependency)
+ This package includes the libctf-nobfd shared library. The Compact C Type
+ Format (CTF) is a way of representing information about a binary program
+
+Package: libctf-nobfd0-dbg
+Section: debug
+Architecture: any
+Multi-Arch: same
+Depends: libctf-nobfd0 (= ${binary:Version})
+Description: Compact C Type Format library (debug symbols, no BFD dependency)
+ This package includes the libctf-nobfd shared library. The Compact C Type
+ Format (CTF) is a way of representing information about a binary program
+
+Package: libctf0
+Architecture: any
+Multi-Arch: same
+Depends: ${shlibs:Depends}, libbinutils (= ${binary:Version})
+Description: Compact C Type Format library (runtime, BFD dependency)
+ This package includes the libctf-nobfd shared library. The Compact C Type
+ Format (CTF) is a way of representing information about a binary program
+
+Package: libctf0-dbg
+Section: debug
+Architecture: any
+Multi-Arch: same
+Depends: libctf0 (= ${binary:Version})
+Description: Compact C Type Format library (debug symbols, BFD dependency)
+ This package includes the libctf-nobfd shared library. The Compact C Type
+ Format (CTF) is a way of representing information about a binary program
+
+Package: libbinutils
+Architecture: any
+Multi-Arch: same
+Depends: ${shlibs:Depends}, binutils-common (= ${binary:Version})
+Breaks: binutils (<< 2.29-6)
+Replaces: binutils (<< 2.29-6)
+Description: GNU binary utilities (private shared library)
+ This package includes the private shared libraries libbfd and libopcodes.
+
+Package: libbinutils-dbg
+Section: debug
+Architecture: any
+Multi-Arch: same
+Depends: libbinutils (= ${binary:Version})
+Description: GNU binary utilities (private shared library, debug symbols)
+ This package provides debug symbols for libbinutils.
+
+Package: binutils-dev
+Architecture: any
+Priority: optional
+Depends: binutils (= ${binary:Version}), libbinutils (= ${binary:Version}),
+ libctf0 (= ${binary:Version}), libctf-nobfd0 (= ${binary:Version})
+Conflicts: libbfd-dev
+Provides: libbfd-dev
+Replaces: libbfd-dev, libc5-dev
+Description: GNU binary utilities (BFD development files)
+ This package includes header files and static libraries necessary to build
+ programs which use the GNU BFD library, which is part of binutils. Note
+ that building Debian packages which depend on the shared libbfd is Not
+ Allowed.
+
+Package: binutils-multiarch
+Architecture: any
+Priority: optional
+Depends: ${shlibs:Depends}, binutils (= ${binary:Version}),
+ binutils-common (= ${binary:Version})
+Description: Binary utilities that support multi-arch targets
+ The programs in this package are used to manipulate binary and object
+ files that may have been created on other architectures. This package
+ is primarily for multi-architecture developers and cross-compilers and
+ is not needed by normal users or developers. Note that a cross-assembling
+ version of gas is not included in this package, just the binary utilities.
+ .
+ NORMAL USERS SHOULD NOT INSTALL THIS PACKAGE. It's meant only for those
+ requiring support for reading info from binaries from other architectures.
+
+Package: binutils-multiarch-dbg
+Section: debug
+Architecture: any
+Priority: optional
+Depends: binutils-multiarch (= ${binary:Version})
+Description: Binary utilities that support multi-arch targets (debug symbols)
+ This package provides debug symbols for binutils-multiarch.
+
+Package: binutils-multiarch-dev
+Architecture: any
+Priority: optional
+Depends: ${shlibs:Depends},
+ binutils-dev (= ${binary:Version}), binutils-multiarch (= ${binary:Version})
+Replaces: binutils-multiarch (<< 2.24-5)
+Description: GNU binary utilities that support multi-arch targets (BFD development files)
+ This package includes header files, static and shared libraries necessary
+ to build programs which use the GNU BFD library for multi-arch targets,
+ which is part of binutils. Note that building Debian packages which depend
+ on the shared libbfd is Not Allowed.
+ .
+ NORMAL USERS SHOULD NOT INSTALL THIS PACKAGE. It's meant only for those
+ requiring support for reading info from binaries from other architectures.
+
+Package: binutils-hppa64-linux-gnu
+Architecture: amd64 i386 x32 hppa
+Depends: ${shlibs:Depends}, binutils (= ${binary:Version}),
+ binutils-common (= ${binary:Version})
+Recommends: libc6-dev
+Provides: binutils-hppa64
+Suggests: binutils-doc (>= ${source:Version})
+Breaks: binutils-hppa64 (<< 2.25.1-2)
+Replaces: binutils-hppa64 (<< 2.25.1-2)
+Description: GNU assembler, linker and binary utilities targeted for hppa64-linux
+ The programs in this package are used to assemble, link and manipulate
+ binary and object files. They may be used in conjunction with a compiler
+ and various libraries to build programs.
+ .
+ This package is needed to build an 64-bit kernel for 64-bit hppa machines.
+
+Package: binutils-hppa64-linux-gnu-dbg
+Section: debug
+Architecture: amd64 i386 x32 hppa
+Depends: binutils-hppa64-linux-gnu (= ${binary:Version})
+Description: GNU binutils targeted for hppa64-linux (debug symbols)
+ This package provides debug symbols for binutils-hppa64-linux-gnu.
+
+Package: binutils-doc
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Priority: optional
+Suggests: binutils (= ${binary:Version})
+Description: Documentation for the GNU assembler, linker and binary utilities
+ This package consists of the documentation for the GNU assembler,
+ linker and binary utilities in info format.
+
+Package: binutils-source
+Architecture: all
+Multi-Arch: foreign
+Priority: optional
+Depends: texinfo, zlib1g-dev, make, python3
+Description: GNU assembler, linker and binary utilities (source)
+ This package contains the sources and patches which are needed to
+ build binutils.
+
+Package: binutils-common
+Architecture: any
+Multi-Arch: same
+Breaks: binutils (<< 2.29.1-3.1~)
+Replaces: binutils (<< 2.29.1-3.1~)
+Description: Common files for the GNU assembler, linker and binary utilities
+ This package contains the localization files used by binutils packages for
+ various target architectures and parts of the binutils documentation. It is
+ not useful on its own.
--- /dev/null
+This is the Debian GNU/Linux prepackaged version of the GNU assembler,
+linker, and binary utilities.
+
+This package was put together by me, James Troup <james@nocrew.org>,
+from sources, which I obtained from:
+
+ ftp://ftp.gnu.org/pub/gnu/binutils/
+
+and:
+
+ cvs://:pserver:anoncvs@sources.redhat.com:/cvs/src
+
+It was previously maintained by Christopher C. Chimelis <chris@debian.org>
+
+GNU Binutils is Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
+1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+2011, 2012, 2013, 2014, 2015, 2015, 2016, 2017, 2018, 2019 Free Software
+Foundation, Inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
+ MA 02110-1301, USA. */
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'
+and `/usr/share/common-licenses/LGPL'.
+
+The binutils manuals and associated documentation are also Copyright
+(C) Free Software Foundation, Inc. They are distributed under the GNU
+Free Documentation License Version 1.3 or any later version published
+by the Free Software Foundation, with no Invariant Sections, with no
+with no Front-Cover Texts, and with no Back-Cover Texts.
+On Debian GNU/Linux systems, the complete text of the GFDL can be found
+in `/usr/share/common-licenses/GFDL'.
--- /dev/null
+.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.5.
+.TH DWP "1" "January 2022" "GNU dwp (GNU Binutils for Debian) 2.37.90.20220123" "User Commands"
+.SH NAME
+dwp \- The DWARF packaging utility
+.SH SYNOPSIS
+.B dwp
+[\fI\,options\/\fR] [\fI\,file\/\fR...]
+.SH DESCRIPTION
+.TP
+\fB\-h\fR, \fB\-\-help\fR
+Print this help message
+.TP
+\fB\-e\fR EXE, \fB\-\-exec\fR EXE
+Get list of dwo files from EXE (defaults output to EXE.dwp)
+.TP
+\fB\-o\fR FILE, \fB\-\-output\fR FILE
+Set output dwp file name
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+Verbose output
+.TP
+\fB\-\-verify\-only\fR
+Verify output file against exec file
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+Print version number
+.SH "REPORTING BUGS"
+Report bugs to <https://sourceware.org/bugzilla/>
+.SH COPYRIGHT
+Copyright \(co 2022 Free Software Foundation, Inc.
+This program is free software; you may redistribute it under the terms of
+the GNU General Public License version 3 or (at your option) any later version.
+This program has absolutely no warranty.
--- /dev/null
+\input texinfo @c -*-texinfo-*-
+@c %**start of header
+
+@settitle BFD/ld internal documentation
+
+@c Create a separate index for command line options.
+@defcodeindex op
+@c Merge the standard indexes into a single one.
+@syncodeindex fn cp
+@syncodeindex vr cp
+@syncodeindex ky cp
+@syncodeindex pg cp
+@syncodeindex tp cp
+
+@paragraphindent 1
+
+@c %**end of header
+
+@copying
+The current documentation is licensed under the same terms as the Debian packaging.
+@end copying
+@ifnottex
+@dircategory Programming
+@direntry
+* @name@: (@name@). BFD/ld internal documentation (@name@).
+@end direntry
+@sp 1
+@end ifnottex
+
+@summarycontents
+@contents
+@page
+
+@node Top
+@top Introduction
+@cindex introduction
+The official BFD, BFD internals and ld internals documentation is released
+under the terms of the GNU Free Documentation License with cover texts.
+This has been considered non free by the Debian Project. Thus you will find
+it in the non-free section of the Debian archive.
+@bye
--- /dev/null
+.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.5.
+.TH GOLD "1" "January 2022" "GNU gold (GNU Binutils for Debian 2.37.90.20220123) 1.16" "User Commands"
+.SH NAME
+gold \- The GNU ELF linker
+.SH SYNOPSIS
+.B ld.gold
+[\fI\,options\/\fR] \fI\,file\/\fR...
+.SH OPTIONS
+.TP
+\fB\-\-help\fR
+Report usage information
+.TP
+\fB\-v\fR, \fB\-\-version\fR
+Report version information
+.TP
+\fB\-V\fR
+Report version and target information
+.TP
+\fB\-\-add\-needed\fR
+Not supported
+.TP
+\fB\-\-no\-add\-needed\fR
+Do not copy DT_NEEDED tags from shared libraries (default)
+.HP
+\fB\-\-allow\-multiple\-definition\fR Allow multiple definitions of symbols
+.TP
+\fB\-\-no\-allow\-multiple\-definition\fR
+Do not allow multiple definitions (default)
+.TP
+\fB\-\-allow\-shlib\-undefined\fR
+Allow unresolved references in shared libraries
+.TP
+\fB\-\-no\-allow\-shlib\-undefined\fR
+Do not allow unresolved references in shared libraries (default)
+.TP
+\fB\-\-apply\-dynamic\-relocs\fR
+Apply link\-time values for dynamic relocations (default)
+.TP
+\fB\-\-no\-apply\-dynamic\-relocs\fR
+(aarch64 only) Do not apply link\-time values for dynamic relocations
+.TP
+\fB\-\-as\-needed\fR
+Use DT_NEEDED only for shared libraries that are used
+.TP
+\fB\-\-no\-as\-needed\fR
+Use DT_NEEDED for all shared libraries (default)
+.TP
+\fB\-assert\fR [ignored]
+Ignored
+.TP
+\fB\-b\fR [elf,binary], \fB\-\-format\fR [elf,binary]
+Set input format
+.TP
+\fB\-\-be8\fR
+Output BE8 format image
+.TP
+\fB\-\-build\-id\fR [=STYLE]
+Generate build ID note
+.TP
+\fB\-\-build\-id\-chunk\-size\-for\-treehash\fR SIZE
+Chunk size for '\-\-build\-id=tree'
+.TP
+\fB\-\-build\-id\-min\-file\-size\-for\-treehash\fR SIZE
+Minimum output file size for '\-\-build\-id=tree' to work differently than '\-\-build\-id=sha1'
+.HP
+\fB\-Bdynamic\fR \fB\-l\fR searches for shared libraries (default)
+.HP
+\fB\-Bstatic\fR \fB\-l\fR does not search for shared libraries
+.TP
+\fB\-dy\fR
+alias for \fB\-Bdynamic\fR (default)
+.TP
+\fB\-dn\fR
+alias for \fB\-Bstatic\fR
+.TP
+\fB\-Bgroup\fR
+Use group name lookup rules for shared library
+.TP
+\fB\-Bshareable\fR
+Generate shared library (alias for \fB\-G\fR/\-shared)
+.TP
+\fB\-Bno\-symbolic\fR
+Don't bind default visibility defined symbols locally for \fB\-shared\fR (default)
+.TP
+\fB\-Bsymbolic\-functions\fR
+Bind default visibility defined function symbols locally for \fB\-shared\fR
+.TP
+\fB\-Bsymbolic\fR
+Bind default visibility defined symbols locally for \fB\-shared\fR
+.TP
+\fB\-\-check\-sections\fR
+Check segment addresses for overlaps (default)
+.TP
+\fB\-\-no\-check\-sections\fR
+Do not check segment addresses for overlaps
+.TP
+\fB\-\-compress\-debug\-sections\fR [none,zlib,zlib\-gnu,zlib\-gabi]
+Compress .debug_* sections in the output file
+.TP
+\fB\-\-copy\-dt\-needed\-entries\fR
+Not supported
+.HP
+\fB\-\-no\-copy\-dt\-needed\-entries\fR Do not copy DT_NEEDED tags from shared libraries (default)
+.TP
+\fB\-\-cref\fR
+Output cross reference table
+.TP
+\fB\-\-no\-cref\fR
+Do not output cross reference table (default)
+.TP
+\fB\-\-ctors\-in\-init\-array\fR
+Use DT_INIT_ARRAY for all constructors (default)
+.TP
+\fB\-\-no\-ctors\-in\-init\-array\fR
+Handle constructors as directed by compiler
+.TP
+\fB\-d\fR, \fB\-\-define\-common\fR
+Define common symbols
+.TP
+\fB\-\-no\-define\-common\fR
+Do not define common symbols in relocatable output (default)
+.TP
+\fB\-dc\fR
+Alias for \fB\-d\fR
+.TP
+\fB\-dp\fR
+Alias for \fB\-d\fR
+.TP
+\fB\-\-debug\fR [all,files,script,task][,...]
+Turn on debugging
+.TP
+\fB\-\-defsym\fR SYMBOL=EXPRESSION
+Define a symbol
+.TP
+\fB\-\-demangle\fR [=STYLE]
+Demangle C++ symbols in log messages
+.TP
+\fB\-\-no\-demangle\fR
+Do not demangle C++ symbols in log messages
+.TP
+\fB\-\-dependency\-file\fR FILE
+Write a dependency file listing all files read
+.TP
+\fB\-\-detect\-odr\-violations\fR
+Look for violations of the C++ One Definition Rule
+.TP
+\fB\-\-no\-detect\-odr\-violations\fR
+Do not look for violations of the C++ One Definition Rule (default)
+.TP
+\fB\-\-dynamic\-list\-data\fR
+Add data symbols to dynamic symbols
+.TP
+\fB\-\-dynamic\-list\-cpp\-new\fR
+Add C++ operator new/delete to dynamic symbols
+.HP
+\fB\-\-dynamic\-list\-cpp\-typeinfo\fR Add C++ typeinfo to dynamic symbols
+.TP
+\fB\-\-dynamic\-list\fR FILE
+Read a list of dynamic symbols
+.TP
+\fB\-\-emit\-stub\-syms\fR
+(PowerPC only) Label linker stubs with a symbol (default)
+.TP
+\fB\-\-no\-emit\-stub\-syms\fR
+(PowerPC only) Do not label linker stubs with a symbol
+.HP
+\fB\-e\fR ADDRESS, \fB\-\-entry\fR ADDRESS Set program start address
+.TP
+\fB\-\-eh\-frame\-hdr\fR
+Create exception frame header
+.TP
+\fB\-\-no\-eh\-frame\-hdr\fR
+Do not create exception frame header (default)
+.TP
+\fB\-\-enable\-new\-dtags\fR
+Enable use of DT_RUNPATH (default)
+.TP
+\fB\-\-disable\-new\-dtags\fR
+Disable use of DT_RUNPATH
+.TP
+\fB\-\-no\-enum\-size\-warning\fR
+(ARM only) Do not warn about objects with incompatible enum sizes
+.TP
+\fB\-\-exclude\-libs\fR lib,lib ...
+Exclude libraries from automatic export
+.TP
+\fB\-E\fR, \fB\-\-export\-dynamic\fR
+Export all dynamic symbols
+.TP
+\fB\-\-no\-export\-dynamic\fR
+Do not export all dynamic symbols (default)
+.TP
+\fB\-\-export\-dynamic\-symbol\fR SYMBOL
+Export SYMBOL to dynamic symbol table
+.TP
+\fB\-EB\fR
+Link big\-endian objects.
+.TP
+\fB\-EL\fR
+Link little\-endian objects.
+.HP
+\fB\-f\fR SHLIB, \fB\-\-auxiliary\fR SHLIB Auxiliary filter for shared object symbol table
+.TP
+\fB\-F\fR SHLIB, \fB\-\-filter\fR SHLIB
+Filter for shared object symbol table
+.TP
+\fB\-\-fatal\-warnings\fR
+Treat warnings as errors
+.TP
+\fB\-\-no\-fatal\-warnings\fR
+Do not treat warnings as errors (default)
+.TP
+\fB\-fini\fR SYMBOL
+Call SYMBOL at unload\-time
+.TP
+\fB\-\-fix\-arm1176\fR
+(ARM only) Fix binaries for ARM1176 erratum (default)
+.TP
+\fB\-\-no\-fix\-arm1176\fR
+(ARM only) Do not fix binaries for ARM1176 erratum
+.TP
+\fB\-\-fix\-cortex\-a8\fR
+(ARM only) Fix binaries for Cortex\-A8 erratum
+.TP
+\fB\-\-no\-fix\-cortex\-a8\fR
+(ARM only) Do not fix binaries for Cortex\-A8 erratum (default)
+.TP
+\fB\-\-fix\-cortex\-a53\-843419\fR
+(AArch64 only) Fix Cortex\-A53 erratum 843419
+.TP
+\fB\-\-no\-fix\-cortex\-a53\-843419\fR
+(AArch64 only) Do not fix Cortex\-A53 erratum 843419 (default)
+.TP
+\fB\-\-fix\-cortex\-a53\-835769\fR
+(AArch64 only) Fix Cortex\-A53 erratum 835769
+.TP
+\fB\-\-no\-fix\-cortex\-a53\-835769\fR
+(AArch64 only) Do not fix Cortex\-A53 erratum 835769 (default)
+.TP
+\fB\-\-fix\-v4bx\fR
+(ARM only) Rewrite BX rn as MOV pc, rn for ARMv4
+.TP
+\fB\-\-fix\-v4bx\-interworking\fR
+(ARM only) Rewrite BX rn branch to ARMv4 interworking veneer
+.TP
+\fB\-fuse\-ld\fR [gold,bfd]
+Ignored for GCC linker option compatibility
+.TP
+\fB\-g\fR
+Ignored
+.TP
+\fB\-\-gc\-sections\fR
+Remove unused sections
+.TP
+\fB\-\-no\-gc\-sections\fR
+Don't remove unused sections (default)
+.TP
+\fB\-\-gdb\-index\fR
+Generate .gdb_index section
+.TP
+\fB\-\-no\-gdb\-index\fR
+Do not generate .gdb_index section (default)
+.TP
+\fB\-\-gnu\-unique\fR
+Enable STB_GNU_UNIQUE symbol binding (default)
+.TP
+\fB\-\-no\-gnu\-unique\fR
+Disable STB_GNU_UNIQUE symbol binding
+.TP
+\fB\-G\fR, \fB\-shared\fR
+Generate shared library
+.TP
+\fB\-h\fR FILENAME, \fB\-soname\fR FILENAME
+Set shared library name
+.TP
+\fB\-\-hash\-bucket\-empty\-fraction\fR FRACTION
+Min fraction of empty buckets in dynamic hash
+.TP
+\fB\-\-hash\-style\fR [sysv,gnu,both]
+Dynamic hash style
+.TP
+\fB\-i\fR
+Alias for \fB\-r\fR
+.TP
+\fB\-\-icf\fR [none,all,safe]
+Identical Code Folding. '\-\-icf=safe' Folds ctors, dtors and functions whose pointers are definitely not taken
+.TP
+\fB\-\-icf\-iterations\fR COUNT
+Number of iterations of ICF (default 3)
+.TP
+\fB\-\-incremental\fR
+Do an incremental link if possible; otherwise, do a full link and prepare output for incremental linking
+.TP
+\fB\-\-no\-incremental\fR
+Do a full link (default)
+.TP
+\fB\-\-incremental\-full\fR
+Do a full link and prepare output for incremental linking
+.TP
+\fB\-\-incremental\-update\fR
+Do an incremental link; exit if not possible
+.TP
+\fB\-\-incremental\-base\fR FILE
+Set base file for incremental linking (default is output file)
+.TP
+\fB\-\-incremental\-changed\fR
+Assume files changed
+.TP
+\fB\-\-incremental\-unchanged\fR
+Assume files didn't change
+.TP
+\fB\-\-incremental\-unknown\fR
+Use timestamps to check files (default)
+.TP
+\fB\-\-incremental\-startup\-unchanged\fR
+Assume startup files unchanged (files preceding this option)
+.HP
+\fB\-\-incremental\-patch\fR PERCENT Amount of extra space to allocate for patches (default 10)
+.TP
+\fB\-init\fR SYMBOL
+Call SYMBOL at load\-time
+.TP
+\fB\-I\fR PROGRAM, \fB\-\-dynamic\-linker\fR PROGRAM
+Set dynamic linker path
+.TP
+\fB\-\-just\-symbols\fR FILE
+Read only symbol values from FILE
+.TP
+\fB\-\-keep\-files\-mapped\fR
+Keep files mapped across passes (default)
+.TP
+\fB\-\-no\-keep\-files\-mapped\fR
+Release mapped files after each pass
+.TP
+\fB\-\-keep\-unique\fR SYMBOL
+Do not fold this symbol during ICF
+.TP
+\fB\-l\fR LIBNAME, \fB\-\-library\fR LIBNAME
+Search for library LIBNAME
+.TP
+\fB\-\-ld\-generated\-unwind\-info\fR
+Generate unwind information for PLT (default)
+.TP
+\fB\-\-no\-ld\-generated\-unwind\-info\fR
+Do not generate unwind information for PLT
+.TP
+\fB\-L\fR DIR, \fB\-\-library\-path\fR DIR
+Add directory to search path
+.TP
+\fB\-\-long\-plt\fR
+(ARM only) Generate long PLT entries
+.TP
+\fB\-\-no\-long\-plt\fR
+(ARM only) Do not generate long PLT entries (default)
+.TP
+\fB\-m\fR EMULATION
+Set GNU linker emulation; obsolete
+.TP
+\fB\-\-map\-whole\-files\fR
+Map whole files to memory (default)
+.TP
+\fB\-\-no\-map\-whole\-files\fR
+Map relevant file parts to memory
+.TP
+\fB\-\-merge\-exidx\-entries\fR
+(ARM only) Merge exidx entries in debuginfo (default)
+.TP
+\fB\-\-no\-merge\-exidx\-entries\fR
+(ARM only) Do not merge exidx entries in debuginfo
+.TP
+\fB\-\-mmap\-output\-file\fR
+Map the output file for writing (default)
+.TP
+\fB\-\-no\-mmap\-output\-file\fR
+Do not map the output file for writing
+.TP
+\fB\-M\fR, \fB\-\-print\-map\fR
+Write map file on standard output
+.TP
+\fB\-Map\fR MAPFILENAME
+Write map file
+.TP
+\fB\-n\fR, \fB\-\-nmagic\fR
+Do not page align data
+.TP
+\fB\-N\fR, \fB\-\-omagic\fR
+Do not page align data, do not make text readonly
+.TP
+\fB\-\-no\-omagic\fR
+Page align data, make text readonly (default)
+.TP
+\fB\-\-no\-keep\-memory\fR
+Use less memory and more disk I/O (included only for compatibility with GNU ld)
+.TP
+\fB\-\-no\-undefined\fR
+Report undefined symbols (even with \fB\-\-shared\fR)
+.TP
+\fB\-\-noinhibit\-exec\fR
+Create an output file even if errors occur
+.TP
+\fB\-nostdlib\fR
+Only search directories specified on the command line
+.TP
+\fB\-o\fR FILE, \fB\-\-output\fR FILE
+Set output file name
+.TP
+\fB\-\-oformat\fR [binary]
+Set output format
+.TP
+\fB\-O\fR LEVEL, \fB\-optimize\fR LEVEL
+Optimize output file size
+.TP
+\fB\-\-orphan\-handling\fR [place,discard,warn,error]
+Orphan section handling
+.TP
+\fB\-p\fR
+Ignored for ARM compatibility
+.TP
+\fB\-pie\fR
+Create a position independent executable
+.TP
+\fB\-no\-pie\fR
+Do not create a position independent executable (default)
+.TP
+\fB\-\-pic\-executable\fR
+Create a position independent executable
+.TP
+\fB\-\-no\-pic\-executable\fR
+Do not create a position independent executable (default)
+.TP
+\fB\-\-pic\-veneer\fR
+Force PIC sequences for ARM/Thumb interworking veneers
+.TP
+\fB\-no\-pipeline\-knowledge\fR
+(ARM only) Ignore for backward compatibility (default)
+.TP
+\fB\-\-plt\-align\fR [=P2ALIGN]
+(PowerPC only) Align PLT call stubs to fit cache lines
+.TP
+\fB\-\-plt\-localentry\fR
+(PowerPC64 only) Optimize calls to ELFv2 localentry:0 functions
+.TP
+\fB\-\-no\-plt\-localentry\fR
+(PowerPC64 only) Don't optimize ELFv2 calls (default)
+.TP
+\fB\-\-plt\-static\-chain\fR
+(PowerPC64 only) PLT call stubs should load r11
+.TP
+\fB\-\-no\-plt\-static\-chain\fR
+(PowerPC64 only) PLT call stubs should not load r11 (default)
+.TP
+\fB\-\-plt\-thread\-safe\fR
+(PowerPC64 only) PLT call stubs with load\-load barrier
+.TP
+\fB\-\-no\-plt\-thread\-safe\fR
+(PowerPC64 only) PLT call stubs without barrier (default)
+.TP
+\fB\-\-plugin\fR PLUGIN
+Load a plugin library
+.TP
+\fB\-\-plugin\-opt\fR OPTION
+Pass an option to the plugin
+.TP
+\fB\-\-posix\-fallocate\fR
+Use posix_fallocate to reserve space in the output file (default)
+.TP
+\fB\-\-no\-posix\-fallocate\fR
+Use fallocate or ftruncate to reserve space
+.TP
+\fB\-\-power10\-stubs\fR [=auto,no,yes]
+(PowerPC64 only) stubs use power10 insns
+.TP
+\fB\-\-no\-power10\-stubs\fR
+(PowerPC64 only) stubs do not use power10 insns
+.TP
+\fB\-\-preread\-archive\-symbols\fR
+Preread archive symbols when multi\-threaded
+.TP
+\fB\-\-print\-gc\-sections\fR
+List removed unused sections on stderr
+.TP
+\fB\-\-no\-print\-gc\-sections\fR
+Do not list removed unused sections (default)
+.TP
+\fB\-\-print\-icf\-sections\fR
+List folded identical sections on stderr
+.TP
+\fB\-\-no\-print\-icf\-sections\fR
+Do not list folded identical sections (default)
+.TP
+\fB\-\-print\-output\-format\fR
+Print default output format
+.TP
+\fB\-\-print\-symbol\-counts\fR FILENAME
+Print symbols defined and used for each input
+.TP
+\fB\-\-push\-state\fR
+Save the state of flags related to input files
+.TP
+\fB\-\-pop\-state\fR
+Restore the state of flags related to input files
+.TP
+\fB\-q\fR, \fB\-\-emit\-relocs\fR
+Generate relocations in output
+.TP
+\fB\-Qy\fR
+Ignored for SVR4 compatibility
+.TP
+\fB\-r\fR, \fB\-relocatable\fR
+Generate relocatable output
+.TP
+\fB\-\-relax\fR
+Relax branches on certain targets
+.TP
+\fB\-\-no\-relax\fR
+Do not relax branches (default)
+.TP
+\fB\-\-retain\-symbols\-file\fR FILE
+keep only symbols listed in this file
+.TP
+\fB\-\-rosegment\fR
+Put read\-only non\-executable sections in their own segment
+.TP
+\fB\-\-no\-rosegment\fR
+Do not put read\-only non\-executable sections in their own segment (default)
+.TP
+\fB\-\-rosegment\-gap\fR OFFSET
+Set offset between executable and read\-only segments
+.TP
+\fB\-R\fR DIR
+Add DIR to runtime search path
+.TP
+\fB\-rpath\fR DIR
+Add DIR to runtime search path
+.TP
+\fB\-\-rpath\-link\fR DIR
+Add DIR to link time shared library search path
+.TP
+\fB\-s\fR, \fB\-\-strip\-all\fR
+Strip all symbols
+.TP
+\fB\-S\fR, \fB\-\-strip\-debug\fR
+Strip debugging information
+.TP
+\fB\-\-strip\-debug\-non\-line\fR
+Emit only debug line number information
+.TP
+\fB\-\-strip\-debug\-gdb\fR
+Strip debug symbols that are unused by gdb (at least versions <= 7.4)
+.TP
+\fB\-\-strip\-lto\-sections\fR
+Strip LTO intermediate code sections (default)
+.TP
+\fB\-\-section\-ordering\-file\fR FILENAME
+Layout sections in the order specified
+.TP
+\fB\-\-section\-start\fR SECTION=ADDRESS
+Set address of section
+.TP
+\fB\-\-secure\-plt\fR
+(PowerPC only) Use new\-style PLT (default)
+.TP
+\fB\-\-sort\-common\fR [={ascending,descending}]
+Sort common symbols by alignment
+.TP
+\fB\-\-sort\-section\fR [none,name]
+Sort sections by name. '\-\-no\-text\-reorder' will override '\-\-sort\-section=name' for .text
+.TP
+\fB\-\-spare\-dynamic\-tags\fR COUNT
+Dynamic tag slots to reserve (default 5)
+.TP
+\fB\-\-stub\-group\-size\fR SIZE
+(ARM, PowerPC only) The maximum distance from instructions in a group of sections to their stubs. Negative values mean stubs are always after the group. 1 means use default size
+.TP
+\fB\-\-stub\-group\-multi\fR
+(PowerPC only) Allow a group of stubs to serve multiple output sections (default)
+.TP
+\fB\-\-no\-stub\-group\-multi\fR
+(PowerPC only) Each output section has its own stubs
+.TP
+\fB\-\-split\-stack\-adjust\-size\fR SIZE
+Stack size when \fB\-fsplit\-stack\fR function calls non\-split
+.TP
+\fB\-static\fR
+Do not link against shared libraries
+.TP
+\fB\-\-start\-lib\fR
+Start a library
+.TP
+\fB\-\-end\-lib\fR
+End a library
+.TP
+\fB\-\-stats\fR
+Print resource usage statistics
+.TP
+\fB\-\-sysroot\fR DIR
+Set target system root directory
+.TP
+\fB\-t\fR, \fB\-\-trace\fR
+Print the name of each input file
+.TP
+\fB\-\-target1\-abs\fR
+(ARM only) Force R_ARM_TARGET1 type to R_ARM_ABS32
+.TP
+\fB\-\-target1\-rel\fR
+(ARM only) Force R_ARM_TARGET1 type to R_ARM_REL32
+.TP
+\fB\-\-target2\fR [rel, abs, got\-rel
+(ARM only) Set R_ARM_TARGET2 relocation type
+.TP
+\fB\-\-text\-reorder\fR
+Enable text section reordering for GCC section names (default)
+.TP
+\fB\-\-no\-text\-reorder\fR
+Disable text section reordering for GCC section names
+.TP
+\fB\-\-threads\fR
+Run the linker multi\-threaded
+.TP
+\fB\-\-no\-threads\fR
+Do not run the linker multi\-threaded (default)
+.TP
+\fB\-\-thread\-count\fR COUNT
+Number of threads to use
+.TP
+\fB\-\-thread\-count\-initial\fR COUNT
+Number of threads to use in initial pass
+.HP
+\fB\-\-thread\-count\-middle\fR COUNT Number of threads to use in middle pass
+.TP
+\fB\-\-thread\-count\-final\fR COUNT
+Number of threads to use in final pass
+.TP
+\fB\-\-tls\-optimize\fR
+(PowerPC/64 only) Optimize GD/LD/IE code to IE/LE (default)
+.TP
+\fB\-\-no\-tls\-optimize\fR
+(PowerPC/64 only) Don'''t try to optimize TLS accesses
+.TP
+\fB\-\-tls\-get\-addr\-optimize\fR
+(PowerPC/64 only) Use a special __tls_get_addr call (default)
+.TP
+\fB\-\-no\-tls\-get\-addr\-optimize\fR
+(PowerPC/64 only) Don't use a special __tls_get_addr call
+.TP
+\fB\-\-toc\-optimize\fR
+(PowerPC64 only) Optimize TOC code sequences (default)
+.TP
+\fB\-\-no\-toc\-optimize\fR
+(PowerPC64 only) Don't optimize TOC code sequences
+.TP
+\fB\-\-toc\-sort\fR
+(PowerPC64 only) Sort TOC and GOT sections (default)
+.TP
+\fB\-\-no\-toc\-sort\fR
+(PowerPC64 only) Don't sort TOC and GOT sections
+.TP
+\fB\-T\fR FILE, \fB\-\-script\fR FILE
+Read linker script
+.TP
+\fB\-Tbss\fR ADDRESS
+Set the address of the bss segment
+.TP
+\fB\-Tdata\fR ADDRESS
+Set the address of the data segment
+.TP
+\fB\-Ttext\fR ADDRESS
+Set the address of the text segment
+.TP
+\fB\-Ttext\-segment\fR ADDRESS
+Set the address of the text segment
+.TP
+\fB\-Trodata\-segment\fR ADDRESS
+Set the address of the rodata segment
+.TP
+\fB\-u\fR SYMBOL, \fB\-\-undefined\fR SYMBOL
+Create undefined reference to SYMBOL
+.TP
+\fB\-\-unresolved\-symbols\fR ignore\-all,report\-all,ignore\-in\-object\-files,ignore\-in\-shared\-libs
+How to handle unresolved symbols
+.TP
+\fB\-\-verbose\fR
+Alias for \fB\-\-debug\fR=\fI\,files\/\fR
+.TP
+\fB\-\-version\-script\fR FILE
+Read version script
+.TP
+\fB\-\-warn\-common\fR
+Warn about duplicate common symbols
+.TP
+\fB\-\-no\-warn\-common\fR
+Do not warn about duplicate common symbols (default)
+.TP
+\fB\-\-warn\-constructors\fR
+Ignored
+.TP
+\fB\-\-no\-warn\-constructors\fR
+Ignored
+.TP
+\fB\-\-warn\-drop\-version\fR
+Warn when discarding version information
+.TP
+\fB\-\-no\-warn\-drop\-version\fR
+Do not warn when discarding version information (default)
+.TP
+\fB\-\-warn\-execstack\fR
+Warn if the stack is executable
+.TP
+\fB\-\-no\-warn\-execstack\fR
+Do not warn if the stack is executable (default)
+.TP
+\fB\-\-no\-warn\-mismatch\fR
+Don't warn about mismatched input files
+.TP
+\fB\-\-warn\-multiple\-gp\fR
+Ignored
+.TP
+\fB\-\-warn\-search\-mismatch\fR
+Warn when skipping an incompatible library (default)
+.TP
+\fB\-\-no\-warn\-search\-mismatch\fR
+Don't warn when skipping an incompatible library
+.TP
+\fB\-\-warn\-shared\-textrel\fR
+Warn if text segment is not shareable
+.TP
+\fB\-\-no\-warn\-shared\-textrel\fR
+Do not warn if text segment is not shareable (default)
+.TP
+\fB\-\-warn\-unresolved\-symbols\fR
+Report unresolved symbols as warnings
+.TP
+\fB\-\-error\-unresolved\-symbols\fR
+Report unresolved symbols as errors (default)
+.TP
+\fB\-z\fR buildd
+Dummy z option
+.TP
+\fB\-\-no\-wchar\-size\-warning\fR
+(ARM only) Do not warn about objects with incompatible wchar_t sizes
+.TP
+\fB\-\-weak\-unresolved\-symbols\fR
+Convert unresolved symbols to weak references
+.TP
+\fB\-\-whole\-archive\fR
+Include all archive contents
+.TP
+\fB\-\-no\-whole\-archive\fR
+Include only needed archive contents (default)
+.TP
+\fB\-\-wrap\fR SYMBOL
+Use wrapper functions for SYMBOL
+.TP
+\fB\-x\fR, \fB\-\-discard\-all\fR
+Delete all local symbols
+.TP
+\fB\-X\fR, \fB\-\-discard\-locals\fR
+Delete all temporary local symbols
+.TP
+\fB\-\-discard\-none\fR
+Keep all local symbols
+.TP
+\fB\-y\fR SYMBOL, \fB\-\-trace\-symbol\fR SYMBOL
+Trace references to symbol
+.TP
+\fB\-\-undefined\-version\fR
+Allow unused version in script (default)
+.TP
+\fB\-\-no\-undefined\-version\fR
+Do not allow unused version in script
+.TP
+\fB\-Y\fR PATH
+Default search path for Solaris compatibility
+.TP
+\-(, \fB\-\-start\-group\fR
+Start a library search group
+.TP
+\-), \fB\-\-end\-group\fR
+End a library search group
+.TP
+\fB\-z\fR bndplt
+(x86\-64 only) Generate a BND PLT for Intel MPX
+.TP
+\fB\-z\fR nobndplt
+Generate a regular PLT (default)
+.TP
+\fB\-z\fR combreloc
+Sort dynamic relocs (default)
+.TP
+\fB\-z\fR nocombreloc
+Do not sort dynamic relocs
+.TP
+\fB\-z\fR common\-page\-size=SIZE
+Set common page size to SIZE
+.TP
+\fB\-z\fR defs
+Report undefined symbols (even with \fB\-\-shared\fR)
+.TP
+\fB\-z\fR execstack
+Mark output as requiring executable stack
+.TP
+\fB\-z\fR global
+Make symbols in DSO available for subsequently loaded objects
+.TP
+\fB\-z\fR initfirst
+Mark DSO to be initialized first at runtime
+.TP
+\fB\-z\fR interpose
+Mark object to interpose all DSOs but executable
+.TP
+\fB\-z\fR unique
+Mark DSO to be loaded at most once, and only in the main namespace
+.TP
+\fB\-z\fR nounique
+Do not mark the DSO as one to be loaded only in the main namespace (default)
+.TP
+\fB\-z\fR lazy
+Mark object for lazy runtime binding (default)
+.TP
+\fB\-z\fR loadfltr
+Mark object requiring immediate process
+.TP
+\fB\-z\fR max\-page\-size=SIZE
+Set maximum page size to SIZE
+.TP
+\fB\-z\fR muldefs
+Allow multiple definitions of symbols
+.TP
+\fB\-z\fR nocopyreloc
+Do not create copy relocs
+.TP
+\fB\-z\fR nodefaultlib
+Mark object not to use default search paths
+.TP
+\fB\-z\fR nodelete
+Mark DSO non\-deletable at runtime
+.TP
+\fB\-z\fR nodlopen
+Mark DSO not available to dlopen
+.TP
+\fB\-z\fR nodump
+Mark DSO not available to dldump
+.TP
+\fB\-z\fR noexecstack
+Mark output as not requiring executable stack
+.TP
+\fB\-z\fR now
+Mark object for immediate function binding
+.TP
+\fB\-z\fR origin
+Mark DSO to indicate that needs immediate $ORIGIN processing at runtime
+.TP
+\fB\-z\fR relro
+Where possible mark variables read\-only after relocation (default)
+.TP
+\fB\-z\fR norelro
+Don't mark variables read\-only after relocation
+.TP
+\fB\-z\fR stack\-size=SIZE
+Set PT_GNU_STACK segment p_memsz to SIZE
+.TP
+\fB\-z\fR start\-stop\-visibility=[default,internal,hidden,protected]
+ELF symbol visibility for synthesized __start_* and __stop_* symbols
+.TP
+\fB\-z\fR text
+Do not permit relocations in read\-only segments
+.TP
+\fB\-z\fR notext
+Permit relocations in read\-only segments (default)
+.TP
+\fB\-z\fR textoff
+Permit relocations in read\-only segments (default)
+.TP
+\fB\-z\fR text\-unlikely\-segment
+Move .text.unlikely sections to a separate segment.
+.TP
+\fB\-z\fR notext\-unlikely\-segment
+Do not move .text.unlikely sections to a separate segment. (default)
+.HP
+\fB\-z\fR keep\-text\-section\-prefix Keep .text.hot, .text.startup, .text.exit and .text.unlikely as separate sections in the final binary.
+.TP
+\fB\-z\fR nokeep\-text\-section\-prefix
+Merge all .text.* prefix sections. (default)
+.PP
+debian/tmp/usr/bin/ld.gold: supported targets: elf32\-x86\-64 elf32\-x86\-64\-freebsd elf32\-x86\-64\-nacl elf64\-x86\-64 elf64\-x86\-64\-freebsd elf64\-x86\-64\-nacl elf32\-iamcu elf32\-i386 elf32\-i386\-freebsd elf32\-i386\-nacl
+debian/tmp/usr/bin/ld.gold: supported emulations: elf32_x86_64 elf32_x86_64_nacl elf_x86_64 elf_x86_64_nacl elf_iamcu elf_i386 elf_i386_nacl
+.SH "REPORTING BUGS"
+Report bugs to <https://sourceware.org/bugzilla/>
+.SH COPYRIGHT
+Copyright \(co 2022 Free Software Foundation, Inc.
+This program is free software; you may redistribute it under the terms of
+the GNU General Public License version 3 or (at your option) a later version.
+This program has absolutely no warranty.
--- /dev/null
+# the API of the shared libs is not public, don't care about the name
+libbinutils binary: package-name-doesnt-match-sonames
+
+# the upstream name, we don't care
+libbinutils binary: dev-pkg-without-shlib-symlink
--- /dev/null
+libbfd @VER@-system@DATE_EXT@ libbinutils (>= @DEB_UVER@), libbinutils (<< @DEB_NVER@)
+libopcodes @VER@-system@DATE_EXT@ libbinutils (>= @DEB_UVER@), libbinutils (<< @DEB_NVER@)
--- /dev/null
+libctf-nobfd.so.0 libctf-nobfd0 #MINVER#
+ (symver)LIBCTF_1.0 2.34
+ (symver)LIBCTF_1.1 2.36
+ (symver)LIBCTF_1.2 2.37
--- /dev/null
+libctf.so.0 libctf0 #MINVER#
+ (symver)LIBCTF_1.0 2.34
+ (symver)LIBCTF_1.1 2.36
+ (symver)LIBCTF_1.2 2.37
--- /dev/null
+Author:
+Description: Description: correct where ld scripts are installed
+Author: Chris Chimelis <chris@debian.org>
+Upstream status: N/A
+Date: ??
+--- a/ld/Makefile.am
++++ b/ld/Makefile.am
+@@ -50,7 +50,7 @@ AM_CFLAGS = $(WARN_CFLAGS) $(ELF_CLFAGS)
+ # We put the scripts in the directory $(scriptdir)/ldscripts.
+ # We can't put the scripts in $(datadir) because the SEARCH_DIR
+ # directives need to be different for native and cross linkers.
+-scriptdir = $(tooldir)/lib
++scriptdir = $(libdir)
+
+ EMUL = @EMUL@
+ EMULATION_OFILES = @EMULATION_OFILES@
+--- a/ld/Makefile.in
++++ b/ld/Makefile.in
+@@ -563,7 +563,7 @@ AM_CFLAGS = $(WARN_CFLAGS) $(ELF_CLFAGS)
+ # We put the scripts in the directory $(scriptdir)/ldscripts.
+ # We can't put the scripts in $(datadir) because the SEARCH_DIR
+ # directives need to be different for native and cross linkers.
+-scriptdir = $(tooldir)/lib
++scriptdir = $(libdir)
+ BASEDIR = $(srcdir)/..
+ BFDDIR = $(BASEDIR)/bfd
+ INCDIR = $(BASEDIR)/include
--- /dev/null
+Author: Chris Chimelis <chris@debian.org>
+Description: Add more documentation about profiling and -fprofile-arcs.
+--- a/gprof/gprof.texi
++++ b/gprof/gprof.texi
+@@ -145,6 +145,10 @@ its symbol table and the call graph prof
+ If more than one profile file is specified, the @code{gprof}
+ output shows the sum of the profile information in the given profile files.
+
++If you use gcc 2.95.x or 3.0 to compile your binaries, you may need
++to add the @samp{-fprofile-arcs} to the compile command line in order
++for the call graphs to be properly stored in gmon.out.
++
+ @code{Gprof} calculates the amount of time spent in each routine.
+ Next, these times are propagated along the edges of the call graph.
+ Cycles are discovered, and calls into a cycle are made to share the time
+@@ -276,6 +280,11 @@ to do the linking, simply specify @samp{
+ options. The same option, @samp{-pg}, alters either compilation or linking
+ to do what is necessary for profiling. Here are examples:
+
++If you use gcc 2.95.x or 3.0.x, you may need to add the
++@samp{-fprofile-arcs} option to the compile line along with @samp{-pg}
++in order to allow the call-graphs to be properly included in the gmon.out
++file.
++
+ @example
+ cc -g -c myprog.c utils.c -pg
+ cc -o myprog myprog.o utils.o -pg
--- /dev/null
+Author: Chris Chimelis <chris@debian.org>
+Description: Don't mention monitor(3) which doesn't exist in Debian. (#160654)
+--- a/gprof/gprof.texi
++++ b/gprof/gprof.texi
+@@ -193,7 +193,7 @@ summarized dynamic call graph and profil
+ @c man end
+
+ @c man begin SEEALSO
+-monitor(3), profil(2), cc(1), prof(1), and the Info entry for @file{gprof}.
++cc(1), prof(1), and the Info entry for @file{gprof}.
+
+ ``An Execution Profiler for Modular Programs'',
+ by S. Graham, P. Kessler, M. McKusick;
--- /dev/null
+Author: David Kimdon <dwhedon@gordian.com>
+Description: Specify which filename is causing an error if the filename is a
+directory. (#45832)
+--- a/bfd/opncls.c
++++ b/bfd/opncls.c
+@@ -222,6 +222,13 @@ bfd_fopen (const char *filename, const c
+ {
+ bfd *nbfd;
+ const bfd_target *target_vec;
++ struct stat s;
++
++ if (stat (filename, &s) == 0)
++ if (S_ISDIR(s.st_mode)) {
++ bfd_set_error (bfd_error_file_not_recognized);
++ return NULL;
++ }
+
+ nbfd = _bfd_new_bfd ();
+ if (nbfd == NULL)
--- /dev/null
+Author: Matthias Klose <doko@ubuntu.com>
+Description: Explicitly use bash for the ld testsuite.
+--- a/ld/testsuite/config/default.exp
++++ b/ld/testsuite/config/default.exp
+@@ -171,7 +171,7 @@ load_lib ld-lib.exp
+ proc get_target_emul {} {
+ global target_triplet
+ global srcdir
+- set status [catch "exec sh -c \"targ='$target_triplet' && . $srcdir/../configure.tgt && echo \\\$targ_emul\"" result]
++ set status [catch "exec bash -c \"targ='$target_triplet' && . $srcdir/../configure.tgt && echo \\\$targ_emul\"" result]
+ if $status { error "Error getting emulation name: $result" }
+ return $result
+ }
--- /dev/null
+# DP: Default to --hash-style=both in ld.bfd and ld.gold.
+
+--- a/ld/ldmain.c
++++ b/ld/ldmain.c
+@@ -287,6 +288,14 @@
+ emulation = get_emulation (argc, argv);
+ ldemul_choose_mode (emulation);
+ default_target = ldemul_choose_target (argc, argv);
++
++ /* Default to --hash-style=gnu */
++ if (strcmp (default_target, "elf32-tradbigmips") != 0
++ && strcmp (default_target, "elf32-tradlittlemips") != 0)
++ {
++ link_info.emit_gnu_hash = TRUE;
++ }
++
+ config.maxpagesize = bfd_emul_get_maxpagesize (default_target);
+ config.commonpagesize = bfd_emul_get_commonpagesize (default_target);
+ lang_init ();
+--- a/gold/options.h
++++ b/gold/options.h
+@@ -794,7 +794,7 @@
+ N_("Min fraction of empty buckets in dynamic hash"),
+ N_("FRACTION"));
+
+- DEFINE_enum(hash_style, options::TWO_DASHES, '\0', "sysv",
++ DEFINE_enum(hash_style, options::TWO_DASHES, '\0', "both",
+ N_("Dynamic hash style"), N_("[sysv,gnu,both]"),
+ {"sysv", "gnu", "both"});
+
--- /dev/null
+# DP: Default to --hash-gnu=both in ld.bfd and ld.gold.
+
+--- a/ld/ldmain.c
++++ b/ld/ldmain.c
+@@ -287,6 +288,15 @@
+ emulation = get_emulation (argc, argv);
+ ldemul_choose_mode (emulation);
+ default_target = ldemul_choose_target (argc, argv);
++
++ /* Default to --hash-style=gnu */
++ if (strcmp (default_target, "elf32-tradbigmips") != 0
++ && strcmp (default_target, "elf32-tradlittlemips") != 0)
++ {
++ link_info.emit_gnu_hash = TRUE;
++ link_info.emit_hash = FALSE;
++ }
++
+ config.maxpagesize = bfd_emul_get_maxpagesize (default_target);
+ config.commonpagesize = bfd_emul_get_commonpagesize (default_target);
+ lang_init ();
+--- a/gold/options.h
++++ b/gold/options.h
+@@ -794,7 +794,7 @@
+ N_("Min fraction of empty buckets in dynamic hash"),
+ N_("FRACTION"));
+
+- DEFINE_enum(hash_style, options::TWO_DASHES, '\0', "sysv",
++ DEFINE_enum(hash_style, options::TWO_DASHES, '\0', "gnu",
+ N_("Dynamic hash style"), N_("[sysv,gnu,both]"),
+ {"sysv", "gnu", "both"});
+
--- /dev/null
+Author:
+Description: Description: Add (/usr)/lib32 to the search paths on x86_64.
+Author: Aurelien Jarno <aurel32.debian.org>
+Upstream status: Debian specific
+--- a/ld/emulparams/elf_i386.sh
++++ b/ld/emulparams/elf_i386.sh
+@@ -13,3 +13,13 @@
+ NO_SMALL_DATA=yes
+ SEPARATE_GOTPLT="SIZEOF (.got.plt) >= 12 ? 12 : 0"
+ IREL_IN_PLT=
++
++# Linux modify the default library search path to first include
++# a 32-bit specific directory.
++case "$target" in
++ x86_64*-linux* | i[3-7]86*-linux* | x86_64*-kfreebsd*-gnu | i[3-7]86*-kfreebsd*-gnu)
++ case "$EMULATION_NAME" in
++ *i386*) LIBPATH_SUFFIX=32 ;;
++ esac
++ ;;
++esac
--- /dev/null
+Author:
+Description: Description: Fix ld corrupt build ID generation
+Author: Nick Clifton
+Upstream status: Taken from Fedora (BZ 501582)
+--- a/bfd/compress.c
++++ b/bfd/compress.c
+@@ -174,7 +174,7 @@
+ case COMPRESS_SECTION_NONE:
+ if (p == NULL)
+ {
+- p = (bfd_byte *) bfd_malloc (sz);
++ p = (bfd_byte *) bfd_zmalloc (sz);
+ if (p == NULL)
+ return FALSE;
+ need_free = TRUE;
+--- a/bfd/elfcode.h
++++ b/bfd/elfcode.h
+@@ -1158,6 +1158,24 @@
+
+ if (i_shdr.contents)
+ (*process) (i_shdr.contents, i_shdr.sh_size, arg);
++ else
++ {
++ asection *sec;
++
++ sec = bfd_section_from_elf_index (abfd, count);
++ if (sec != NULL)
++ {
++ if (sec->contents == NULL)
++ {
++ /* Force rereading from file. */
++ sec->flags &= ~SEC_IN_MEMORY;
++ if (! bfd_malloc_and_get_section (abfd, sec, & sec->contents))
++ continue;
++ }
++ if (sec->contents != NULL)
++ (*process) (sec->contents, i_shdr.sh_size, arg);
++ }
++ }
+ }
+
+ return TRUE;
--- /dev/null
+--- a/ld/emulparams/elf32ppccommon.sh
++++ b/ld/emulparams/elf32ppccommon.sh
+@@ -56,3 +56,12 @@ case `echo "$target" | sed -e 's/-.*//'`
+ *:*64*) LIBPATH_SUFFIX=64 ;;
+ *:*32*) LIBPATH_SUFFIX=32 ;;
+ esac
++
++# On 64bit, look for 32 bit target libraries in /lib32, /usr/lib32 etc., first.
++case "$target" in
++ powerpc64-*-linux* | ppc64-*-linux*)
++ case "$EMULATION_NAME" in
++ *32*) LIBPATH_SUFFIX=32 ;;
++ esac
++ ;;
++esac
--- /dev/null
+# DP: Add multiarch directories to linker search path for ld and gold.
+
+--- a/gold/configure
++++ b/gold/configure
+@@ -625,6 +625,7 @@ LTLIBOBJS
+ MAINT
+ MAINTAINER_MODE_FALSE
+ MAINTAINER_MODE_TRUE
++MULTIARCH_DIRNAME
+ DLOPEN_LIBS
+ CXXCPP
+ HAVE_NO_USE_LINKER_PLUGIN_FALSE
+@@ -10310,6 +10311,14 @@ $as_echo "#define HAVE_LC_MESSAGES 1" >>
+ fi
+
+
++if test x$DEB_TARGET_MULTIARCH != x; then
++ multiarch=$DEB_TARGET_MULTIARCH
++ if test -n "$multiarch"; then
++ MULTIARCH_DIRNAME='-DMULTIARCH_DIRNAME=\"'$multiarch'\"'
++ fi
++fi
++
++
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
+ $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
+--- a/gold/configure.ac
++++ b/gold/configure.ac
+@@ -706,6 +706,14 @@ AC_CHECK_HEADERS(locale.h)
+ AC_CHECK_FUNCS(setlocale)
+ AM_LC_MESSAGES
+
++if test x$DEB_TARGET_MULTIARCH != x; then
++ multiarch=$DEB_TARGET_MULTIARCH
++ if test -n "$multiarch"; then
++ MULTIARCH_DIRNAME='-DMULTIARCH_DIRNAME=\"'$multiarch'\"'
++ fi
++fi
++AC_SUBST(MULTIARCH_DIRNAME)
++
+ AM_MAINTAINER_MODE
+
+ AC_OUTPUT(Makefile testsuite/Makefile po/Makefile.in:po/Make-in)
+--- a/gold/Makefile.am
++++ b/gold/Makefile.am
+@@ -42,6 +42,7 @@ AM_CPPFLAGS = \
+ -I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../elfcpp \
+ -DLOCALEDIR="\"$(datadir)/locale\"" \
+ -DBINDIR="\"$(bindir)\"" -DTOOLBINDIR="\"$(tooldir)/bin\"" \
++ @MULTIARCH_DIRNAME@ $(if $(APPEND_TOOLLIBDIR),-DAPPEND_TOOLLIBDIR) \
+ -DTOOLLIBDIR="\"$(tooldir)/lib\"" @INCINTL@
+
+ LIBIBERTY = ../libiberty/libiberty.a
+--- a/gold/Makefile.in
++++ b/gold/Makefile.in
+@@ -674,6 +674,7 @@ AM_CPPFLAGS = \
+ -I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../elfcpp \
+ -DLOCALEDIR="\"$(datadir)/locale\"" \
+ -DBINDIR="\"$(bindir)\"" -DTOOLBINDIR="\"$(tooldir)/bin\"" \
++ @MULTIARCH_DIRNAME@ $(if $(APPEND_TOOLLIBDIR),-DAPPEND_TOOLLIBDIR) \
+ -DTOOLLIBDIR="\"$(tooldir)/lib\"" @INCINTL@
+
+ LIBIBERTY = ../libiberty/libiberty.a
+--- a/gold/options.cc
++++ b/gold/options.cc
+@@ -1297,8 +1297,15 @@ General_options::finalize()
+ || this->user_set_sysroot()
+ || *TARGET_SYSTEM_ROOT != '\0')
+ {
++#ifdef MULTIARCH_DIRNAME
++ this->add_to_library_path_with_sysroot("/lib/" MULTIARCH_DIRNAME);
++ this->add_to_library_path_with_sysroot("/usr/lib/" MULTIARCH_DIRNAME);
++#endif
+ this->add_to_library_path_with_sysroot("/lib");
+ this->add_to_library_path_with_sysroot("/usr/lib");
++#ifdef APPEND_TOOLLIBDIR
++ this->add_to_library_path_with_sysroot(TOOLLIBDIR);
++#endif
+ }
+ else
+ this->add_to_library_path_with_sysroot(TOOLLIBDIR);
+--- a/ld/genscripts.sh
++++ b/ld/genscripts.sh
+@@ -235,6 +235,104 @@ append_to_lib_path()
+ fi
+ }
+
++# set the multiarch tuples
++multiarch_name=
++multiarch_name_32=
++multiarch_name_64=
++multiarch_name_n32=
++multiarch_name_x32=
++
++if true; then
++ # based on TOOL_LIB
++ multiarch_name=$DEB_TARGET_MULTIARCH
++ multiarch_name_32=$DEB_TARGET_MULTIARCH32
++ multiarch_name_64=$DEB_TARGET_MULTIARCH64
++ multiarch_name_n32=$DEB_TARGET_MULTIARCHN32
++ multiarch_name_x32=$DEB_TARGET_MULTIARCHX32
++else
++ # based on the emulation name; using TOOL_LIB seems to unreliable, when
++ # configuring with --enable-targets=powerpc-linux-gnu,powerpc64-linux-gnu
++ # only the first one (?) wins.
++ # FIXME: should this go into ld/emulparams/*.sh ?
++ case "$EMULATION_NAME" in
++ aarch64linux)
++ multiarch_name=aarch64-linux-gnu
++ ;;
++ aarch64linux32)
++ multiarch_name=aarch64_ilp32-linux-gnu
++ ;;
++ aarch64linux32b)
++ multiarch_name=aarch64_be_ilp32-linux-gnu
++ ;;
++ aarch64linuxb)
++ multiarch_name=aarch64_be-linux-gnu
++ ;;
++ armelf_linux_eabi)
++ # FIXME: TOOL_LIB can be arm-linux-gnueabi, arm-linux-gnueabihf, aarch64-linux-gnu
++ multiarch_name=arm-linux-gnueabi
++ ;;
++ armelfb_linux_eabi)
++ # FIXME: TOOL_LIB can be arm-linux-gnueabi, arm-linux-gnueabihf, aarch64-linux-gnu
++ multiarch_name=armeb-linux-gnueabi
++ ;;
++ elf32_sparc)
++ multiarch_name=sparc-linux-gnu
++ multiarch_name_64=sparc64-linux-gnu
++ ;;
++ elf32_x86_64)
++ multiarch_name=x86_64-linux-gnux32
++ multiarch_name_32=i386-linux-gnu
++ multiarch_name_64=x86_64-linux-gnu
++ ;;
++ elf32btsmip)
++ ;;
++ elf32btsmipn32)
++ ;;
++ elf32ltsmip)
++ ;;
++ elf32ltsmipn32)
++ ;;
++ elf32elflppc) # necessary?
++ multiarch_name=powerpcle-linux-gnu
++ multiarch_name_64=powerpc64le-linux-gnu
++ ;;
++ elf32elflppclinux)
++ multiarch_name=powerpcle-linux-gnu
++ multiarch_name_64=powerpc64le-linux-gnu
++ ;;
++ elf32ppc) # necessary?
++ multiarch_name=powerpc-linux-gnu
++ multiarch_name_64=powerpc64-linux-gnu
++ ;;
++ elf32ppclinux)
++ multiarch_name=powerpc-linux-gnu
++ multiarch_name_64=powerpc64-linux-gnu
++ ;;
++ elf64ppc)
++ multiarch_name=powerpc64-linux-gnu
++ multiarch_name_32=powerpc-linux-gnu
++ ;;
++ esac
++fi
++
++if [ "x${LIB_PATH}" = "x" ] && [ "x${USE_LIBPATH}" = xyes ] ; then
++ libs=${NATIVE_LIB_DIRS}
++ if [ "x${NATIVE}" = "xyes" ] ; then
++ case " ${libs} " in
++ *" ${libdir} "*) ;;
++ *) libs="${libdir} ${libs}" ;;
++ esac
++ fi
++ append_to_lib_path ${libs}
++fi
++
++case :${lib_path1}:${lib_path2}: in
++ *:: | ::*) LIB_PATH=${lib_path1}${lib_path2} ;;
++ *) LIB_PATH=${lib_path1}:${lib_path2} ;;
++esac
++lib_path1=
++lib_path2=
++
+ # Always search $(tooldir)/lib, aka /usr/local/TARGET/lib when native
+ # except when LIBPATH=":".
+ if [ "${LIB_PATH}" != ":" ] ; then
+@@ -253,6 +351,13 @@ if [ "${LIB_PATH}" != ":" ] ; then
+ case "${NATIVE}:${libpath_suffix}:${TOOL_LIB}" in
+ :* | *::* | *:*:*${libpath_suffix}) ;;
+ *) libs="${exec_prefix}/${target_alias}/lib${libpath_suffix}" ;;
++ *)
++ # FIXME:
++ # For the binutils-multiarch build on x86_64-linux-gnu configured
++ # with --enable-targets=powerpc-linux-gnu, /usr/x86_64-linux-gnu/lib64
++ # is added instead of /usr/powerpc64-linux-gnu/lib64. However this
++ # probably wanted for the "default" emulation. How to detect that?
++ libs="${exec_prefix}/${target_alias}/lib${libpath_suffix}" ;;
+ esac
+ done
+ libs="${exec_prefix}/${TOOL_LIB}/lib ${libs}"
+@@ -260,24 +365,124 @@ if [ "${LIB_PATH}" != ":" ] ; then
+ append_to_lib_path ${libs}
+ fi
+
+-if [ "x${LIB_PATH}" = "x" ] && [ "x${USE_LIBPATH}" = xyes ] ; then
+- libs=${NATIVE_LIB_DIRS}
+- if [ "x${NATIVE}" = "xyes" ] ; then
+- case " ${libs} " in
+- *" ${libdir} "*) ;;
+- *) libs="${libdir} ${libs}" ;;
+- esac
+- fi
+- append_to_lib_path ${libs}
+-fi
+-
+ case :${lib_path1}:${lib_path2}: in
+- *:: | ::*) LIB_PATH=${lib_path1}${lib_path2} ;;
+- *) LIB_PATH=${lib_path1}:${lib_path2} ;;
++ *:: | ::*) LIB_PATH=${LIB_PATH}:${lib_path1}${lib_path2} ;;
++ *) LIB_PATH=${LIB_PATH}:${lib_path1}:${lib_path2} ;;
+ esac
+
++# We use the $tool_lib variable in our multiarch mangling:
++if [ "x${TOOL_LIB}" = "x" ] ; then
++ tool_lib=${exec_prefix}/${target_alias}/lib
++else
++ tool_lib=${exec_prefix}/${TOOL_LIB}/lib
++fi
++
++# FIXME: why again? These already should be in LIBPATH
++if [ "x${APPEND_TOOLLIBDIR}" = "xyes" ] ; then
++ LIB_PATH=${LIB_PATH}:${tool_lib}
++ # For multilib targets, search both $tool_lib dirs
++ if [ "x${LIBPATH_SUFFIX}" != "x" ] ; then
++ LIB_PATH=${LIB_PATH}:${tool_lib}${LIBPATH_SUFFIX}
++ fi
++fi
++
+ LIB_SEARCH_DIRS=`echo ${LIB_PATH} | sed -e 's/:/ /g' -e 's/\([^ ][^ ]*\)/SEARCH_DIR(\\"\1\\");/g'`
+
++if [ -n "$multiarch_name" ]; then
++ temp_dirs=' '
++ ma_dirs=' '
++ for dir in `echo ${LIB_PATH} | sed -e 's/:/ /g'`; do
++ case "$dir" in
++ *${tool_lib}*|*/${target_alias}/*)
++ ;;
++ */lib)
++ if [ -n "$multiarch_name_32" ]; then
++ case $EMULATION_NAME in
++ elf_i386|elf32*)
++ ma_dirs="${ma_dirs}${dir}/$multiarch_name_32 ";;
++ *)
++ ma_dirs="${ma_dirs}${dir}/$multiarch_name "
++ esac
++ elif [ -n "$multiarch_name_64" ]; then
++ case $EMULATION_NAME in
++ elf*_64|elf64*)
++ ma_dirs="${ma_dirs}${dir}/$multiarch_name_64 ";;
++ *)
++ ma_dirs="${ma_dirs}${dir}/$multiarch_name "
++ esac
++ else
++ ma_dirs="${ma_dirs}${dir}/$multiarch_name "
++ fi
++ ;;
++ */lib32)
++ if [ -n "$multiarch_name_32" ]; then
++ dir2=$(echo $dir | sed "s,32$,,")
++ ma_dirs="${ma_dirs}${dir2}/$multiarch_name_32 "
++ fi
++ ;;
++ */lib64)
++ case "${target}" in
++ aarch64*-*-*|powerpc64-*-*|s390x-*-*|sparc64-*-*|x86_64-*-linux-gnu|mips64-*-gnuabi64)
++ #dir=$(echo $dir | sed "s,64$,,")
++ dir2=$(echo $dir | sed "s,64$,,")
++ ma_dirs="${ma_dirs}${dir2}/$multiarch_name "
++ ;;
++ *)
++ if [ -n "$multiarch_name_64" ]; then
++ dir2=$(echo $dir | sed "s,64$,,")
++ ma_dirs="${ma_dirs}${dir2}/$multiarch_name_64 "
++ fi
++ ;;
++ esac
++ ;;
++ */libx32)
++ case "${target}" in
++ x86_64-*-linux-gnux32)
++ dir2=$(echo $dir | sed "s,x32$,,")
++ ma_dirs="${ma_dirs}${dir2}/$multiarch_name "
++ ;;
++ *)
++ if [ -n "$multiarch_name_x32" ]; then
++ dir2=$(echo $dir | sed "s,x32$,,")
++ ma_dirs="${ma_dirs}${dir2}/$multiarch_name_x32 "
++ fi
++ ;;
++ esac
++ ;;
++ */libn32)
++ case "${target}" in
++ mips64*-*-linux-gnuabin32)
++ dir2=$(echo $dir | sed "s,n32$,,")
++ ma_dirs="${ma_dirs}${dir2}/$multiarch_name "
++ ;;
++ *)
++ if [ -n "$multiarch_name_n32" ]; then
++ dir2=$(echo $dir | sed "s,n32$,,")
++ ma_dirs="${ma_dirs}${dir2}/$multiarch_name_n32 "
++ fi
++ ;;
++ esac
++ ;;
++ */libilp32)
++ if [ -n "$multiarch_name_32" ]; then
++ dir2=$(echo $dir | sed "s,ilp32$,,")
++ ma_dirs="${ma_dirs}${dir2}/$multiarch_name_32 "
++ fi
++ ;;
++ *)
++ ;;
++ esac
++ temp_dirs="${temp_dirs}${dir} "
++ done
++ LIB_SEARCH_DIRS=
++ for dir in $ma_dirs $temp_dirs; do
++ if echo "$LIB_SEARCH_DIRS" | fgrep -q "\"$dir\""; then
++ continue
++ fi
++ LIB_SEARCH_DIRS="${LIB_SEARCH_DIRS}SEARCH_DIR(\"$dir\"); "
++ done
++fi
++
+ # We need it for testsuite.
+ set $EMULATION_LIBPATH
+ if [ "x$1" = "x$EMULATION_NAME" ]; then
--- /dev/null
+Author:
+Description: Description: Disable build of gold/testsuite
+Author: Matthias Klose
+Upstream status: local
+--- a/gold/Makefile.am
++++ b/gold/Makefile.am
+@@ -19,7 +19,7 @@
+
+ AUTOMAKE_OPTIONS = foreign
+
+-SUBDIRS = po testsuite
++SUBDIRS = po
+
+ tooldir = $(exec_prefix)/$(target_alias)
+
+--- a/gold/Makefile.in
++++ b/gold/Makefile.in
+@@ -656,7 +656,7 @@ top_srcdir = @top_srcdir@
+ zlibdir = @zlibdir@
+ zlibinc = @zlibinc@
+ AUTOMAKE_OPTIONS = foreign
+-SUBDIRS = po testsuite
++SUBDIRS = po
+ tooldir = $(exec_prefix)/$(target_alias)
+ ACLOCAL_AMFLAGS = -I ../bfd -I ../config
+
--- /dev/null
+Author:
+Description: Description: Fix ld-bootstrap testsuite when configured with --enable-plugins
+Author: Rafael Espindola
+Upstream status: proposed patch
+--- a/ld/testsuite/ld-bootstrap/bootstrap.exp
++++ b/ld/testsuite/ld-bootstrap/bootstrap.exp
+@@ -50,6 +50,15 @@ if [check_plugin_api_available] {
+ set plugins "yes"
+ }
+
++remote_exec host "$nm --help" "" "/dev/null" "plugin-support"
++set tmp [file_contents "plugin-support"]
++regexp ".*\(--plugin\).*\n" $tmp foo plugins
++if [info exists plugins] then {
++ set plugins "yes"
++} else {
++ set plugins "no"
++}
++
+ # Bootstrap ld. First link the object files together using -r, in
+ # order to test -r. Then link the result into an executable, ld1, to
+ # really test -r. Use ld1 to link a fresh ld, ld2. Use ld2 to link a
+@@ -118,6 +127,11 @@ foreach flags $test_flags {
+ continue
+ }
+
++ if { $flags == "--static" && $plugins == "yes" } then {
++ untested $testname
++ continue
++ }
++
+ # If we only have a shared libbfd, we probably can't run the
+ # --static test.
+ if { $flags == "--static" && ! [string match "*libbfd.a*" $BFDLIB] } then {
+@@ -162,6 +176,10 @@ foreach flags $test_flags {
+ }
+ }
+
++ if { $plugins == "yes" } {
++ set extralibs "$extralibs -ldl"
++ }
++
+ # On Irix 5, linking with --static only works if all the files are
+ # compiled using -non_shared.
+ if {"$flags" == "--static"} {
--- /dev/null
+--- a/bfd/Makefile.am
++++ b/bfd/Makefile.am
+@@ -978,14 +978,14 @@ bfdver.h: $(srcdir)/version.h $(srcdir)/
+ $(AM_V_GEN)\
+ bfd_version=`echo "$(VERSION)" | $(SED) -e 's/\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\).*/\1.00\2.00\3.00\4.00\5/' -e 's/\([^\.]*\)\..*\(..\)\..*\(..\)\..*\(..\)\..*\(..\)$$/\1\2\3\4\5/'` ;\
+ bfd_version_string="\"$(VERSION)\"" ;\
+- bfd_soversion="$(VERSION)" ;\
++ bfd_soversion="$(VERSION)$(BFD_SOVER_EXT)" ;\
+ bfd_version_package="\"$(PKGVERSION)\"" ;\
+ report_bugs_to="\"$(REPORT_BUGS_TO)\"" ;\
+ . $(srcdir)/development.sh ;\
+ if test "$$development" = true ; then \
+ bfd_version_date=`$(SED) -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\
+ bfd_version_string="\"$(VERSION).$${bfd_version_date}\"" ;\
+- bfd_soversion="$(VERSION).$${bfd_version_date}" ;\
++ bfd_soversion="$(VERSION)$(BFD_SOVER_EXT).$${bfd_version_date}" ;\
+ fi ;\
+ $(SED) -e "s,@bfd_version@,$$bfd_version," \
+ -e "s,@bfd_version_string@,$$bfd_version_string," \
+--- a/bfd/Makefile.in
++++ b/bfd/Makefile.in
+@@ -2095,14 +2095,14 @@ bfdver.h: $(srcdir)/version.h $(srcdir)/
+ $(AM_V_GEN)\
+ bfd_version=`echo "$(VERSION)" | $(SED) -e 's/\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\).*/\1.00\2.00\3.00\4.00\5/' -e 's/\([^\.]*\)\..*\(..\)\..*\(..\)\..*\(..\)\..*\(..\)$$/\1\2\3\4\5/'` ;\
+ bfd_version_string="\"$(VERSION)\"" ;\
+- bfd_soversion="$(VERSION)" ;\
++ bfd_soversion="$(VERSION)$(BFD_SOVER_EXT)" ;\
+ bfd_version_package="\"$(PKGVERSION)\"" ;\
+ report_bugs_to="\"$(REPORT_BUGS_TO)\"" ;\
+ . $(srcdir)/development.sh ;\
+ if test "$$development" = true ; then \
+ bfd_version_date=`$(SED) -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\
+ bfd_version_string="\"$(VERSION).$${bfd_version_date}\"" ;\
+- bfd_soversion="$(VERSION).$${bfd_version_date}" ;\
++ bfd_soversion="$(VERSION)$(BFD_SOVER_EXT).$${bfd_version_date}" ;\
+ fi ;\
+ $(SED) -e "s,@bfd_version@,$$bfd_version," \
+ -e "s,@bfd_version_string@,$$bfd_version_string," \
--- /dev/null
+Author: Balint Reczey <balint@balintreczey.hu>
+Description: Build libbfd with -fPIC to allow linking with PIE binaries
+
+--- a/bfd/Makefile.am
++++ b/bfd/Makefile.am
+@@ -52,7 +52,7 @@ ZLIBINC = @zlibinc@
+
+ WARN_CFLAGS = @WARN_CFLAGS@
+ NO_WERROR = @NO_WERROR@
+-AM_CFLAGS = $(WARN_CFLAGS) $(ZLIBINC)
++AM_CFLAGS = $(WARN_CFLAGS) $(ZLIBINC) -fPIC
+ AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DLIBDIR='"$(libdir)"' @LARGEFILE_CPPFLAGS@
+ if PLUGINS
+ bfdinclude_HEADERS += $(INCDIR)/plugin-api.h
+--- a/bfd/Makefile.in
++++ b/bfd/Makefile.in
+@@ -480,7 +480,7 @@ libbfd_la_LDFLAGS = $(am__append_1) -rel
+ # case both are empty.
+ ZLIB = @zlibdir@ -lz
+ ZLIBINC = @zlibinc@
+-AM_CFLAGS = $(WARN_CFLAGS) $(ZLIBINC)
++AM_CFLAGS = $(WARN_CFLAGS) $(ZLIBINC) -fPIC
+ AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DLIBDIR='"$(libdir)"' \
+ @LARGEFILE_CPPFLAGS@ @HDEFINES@ @COREFLAG@ @TDEFINES@ \
+ $(CSEARCH) $(CSWITCHES) $(HAVEVECS) @INCINTL@
--- /dev/null
+--- a/binutils/arlex.l
++++ b/binutils/arlex.l
+@@ -78,7 +78,7 @@ int linenumber;
+ "(" { return '('; }
+ ")" { return ')'; }
+ "," { return ','; }
+-[A-Za-z0-9/\\$:.\-\_]+ {
++[A-Za-z0-9/\\$:.\-\_~]+ {
+ yylval.name = xstrdup (yytext);
+ return FILENAME;
+ }
--- /dev/null
+Index: b/ld/configure.ac
+===================================================================
+--- a/ld/configure.ac
++++ b/ld/configure.ac
+@@ -56,7 +56,9 @@
+ *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
+ esac
+
++ if test "x$TARGET_SYSTEM_ROOT" != x/; then
+ TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
++ fi
+ use_sysroot=yes
+
+ if test "x$prefix" = xNONE; then
+Index: b/ld/configure
+===================================================================
+--- a/ld/configure
++++ b/ld/configure
+@@ -4283,7 +4283,9 @@
+ *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
+ esac
+
++ if test "x$TARGET_SYSTEM_ROOT" != x/; then
+ TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
++ fi
+ use_sysroot=yes
+
+ if test "x$prefix" = xNONE; then
+Index: b/ld/ldmain.c
+===================================================================
+--- a/ld/ldmain.c
++++ b/ld/ldmain.c
+@@ -226,8 +226,8 @@
+ {
+ if (*TARGET_SYSTEM_ROOT == 0)
+ {
+- einfo ("%P%F: this linker was not configured to use sysroots\n");
+ ld_sysroot = "";
++ ld_canon_sysroot = "";
+ }
+ else
+ ld_canon_sysroot = lrealpath (ld_sysroot);
--- /dev/null
+# DP: let gold accept a dummy -z buildd-<random-string> option.
+
+--- a/gold/options.cc
++++ b/gold/options.cc
+@@ -994,6 +994,8 @@ parse_short_option(int argc, const char*
+ {
+ int dummy_i = 0;
+ const char* dash_z_arg = *arg;
++ if (strncmp(dash_z_arg, "buildd", strlen("buildd")) == 0)
++ *arg = "buildd";
+ retval = parse_long_option(1, arg, true, arg, &dummy_i);
+ if (retval == NULL)
+ usage(_("unknown -z option"), dash_z_arg);
+--- a/gold/options.h
++++ b/gold/options.h
+@@ -1409,6 +1409,9 @@ class General_options
+ options::TWO_DASHES, '\0',
+ N_("Report unresolved symbols as errors"),
+ NULL, true);
++ DEFINE_bool(buildd, options::DASH_Z, '\0', false,
++ N_("Dummy z option"),
++ NULL);
+
+ DEFINE_bool(wchar_size_warning, options::TWO_DASHES, '\0', true, NULL,
+ N_("(ARM only) Do not warn about objects with incompatible "
--- /dev/null
+# DP: In ld.texi, remove cross reference to BFD internals documentation.
+
+--- a/ld/ld.texi
++++ b/ld/ld.texi
+@@ -8949,7 +8949,8 @@ may be spent optimizing algorithms for a
+ One minor artifact of the BFD solution which you should bear in
+ mind is the potential for information loss. There are two places where
+ useful information can be lost using the BFD mechanism: during
+-conversion and during output. @xref{BFD information loss}.
++conversion and during output. See BFD information loss in the BFD
++internal documentation.
+
+ @menu
+ * BFD outline:: How it works: an outline of BFD
--- /dev/null
+--- a/ld/emulparams/aarch64linux.sh
++++ b/ld/emulparams/aarch64linux.sh
+@@ -38,12 +38,15 @@ PLT=".plt ${RELOCATING-0} : ALI
+
+ # Linux modifies the default library search path to first include
+ # a 64-bit specific directory.
+-case "$target" in
+- aarch64*-linux*)
+- case "$EMULATION_NAME" in
+- aarch64linux*) LIBPATH_SUFFIX=64 ;;
+- esac
+- ;;
+-esac
++
++# not for multiarch systems ...
++
++#case "$target" in
++# aarch64*-linux*)
++# case "$EMULATION_NAME" in
++# aarch64linux*) LIBPATH_SUFFIX=64 ;;
++# esac
++# ;;
++#esac
+
+ ELF_INTERPRETER_NAME=\"/lib/ld-linux-aarch64.so.1\"
--- /dev/null
+# DP: updates from the binutils-2.38 branch
+
+# git diff 20756b0fbe065a84710aa38f2457563b57546440 481876f834e0a100950dde6b878daa38c896b325
+
+diff --git a/bfd/ChangeLog b/bfd/ChangeLog
+index 36cb81dd7f3..4671dc30cf0 100644
+--- a/bfd/ChangeLog
++++ b/bfd/ChangeLog
+@@ -1,3 +1,12 @@
++2022-02-17 Nick Clifton <nickc@redhat.com>
++
++ * po/sr.po: Updated Serbian translation.
++
++2022-02-09 Nick Clifton <nickc@redhat.com>
++
++ * development.sh (development): Set to true.
++ * version.m4 (BFD_VERSION): Set to 2.38.0.
++
+ 2022-02-09 Nick Clifton <nickc@redhat.com>
+
+ 2.38 release.
+diff --git a/bfd/development.sh b/bfd/development.sh
+index cd64202661b..6d29dc26161 100644
+--- a/bfd/development.sh
++++ b/bfd/development.sh
+@@ -16,7 +16,7 @@
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+ # Controls whether to enable development-mode features by default.
+-development=false
++development=true
+
+ # Indicate whether this is a release branch.
+ experimental=false
+diff --git a/bfd/elf-properties.c b/bfd/elf-properties.c
+index bf4f70d6256..d67aadde16b 100644
+--- a/bfd/elf-properties.c
++++ b/bfd/elf-properties.c
+@@ -195,14 +195,11 @@ _bfd_elf_parse_gnu_properties (bfd *abfd, Elf_Internal_Note *note)
+ prop = _bfd_elf_get_property (abfd, type, datasz);
+ prop->u.number |= bfd_h_get_32 (abfd, ptr);
+ prop->pr_kind = property_number;
+- if ((abfd->flags & DYNAMIC) == 0
+- && type == GNU_PROPERTY_1_NEEDED
++ if (type == GNU_PROPERTY_1_NEEDED
+ && ((prop->u.number
+ & GNU_PROPERTY_1_NEEDED_INDIRECT_EXTERN_ACCESS)
+ != 0))
+ {
+- /* NB: Skip the shared library since it may not be
+- the same at run-time. */
+ elf_has_indirect_extern_access (abfd) = true;
+ /* GNU_PROPERTY_NO_COPY_ON_PROTECTED is implied. */
+ elf_has_no_copy_on_protected (abfd) = true;
+diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c
+index 25977cc56bd..fb5ed161f50 100644
+--- a/bfd/elf32-i386.c
++++ b/bfd/elf32-i386.c
+@@ -1779,6 +1779,23 @@ elf_i386_scan_relocs (bfd *abfd,
+ func_pointer_ref = true;
+ }
+
++ if (h->pointer_equality_needed
++ && h->type == STT_FUNC
++ && eh->def_protected
++ && elf_has_indirect_extern_access (h->root.u.def.section->owner))
++ {
++ /* Disallow non-canonical reference to canonical
++ protected function. */
++ _bfd_error_handler
++ /* xgettext:c-format */
++ (_("%pB: non-canonical reference to canonical "
++ "protected function `%s' in %pB"),
++ abfd, h->root.root.string,
++ h->root.u.def.section->owner);
++ bfd_set_error (bfd_error_bad_value);
++ goto error_return;
++ }
++
+ if (!func_pointer_ref)
+ {
+ /* If this reloc is in a read-only section, we might
+diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c
+index 02ca55200bb..b5718e71121 100644
+--- a/bfd/elf64-x86-64.c
++++ b/bfd/elf64-x86-64.c
+@@ -2223,6 +2223,23 @@ elf_x86_64_scan_relocs (bfd *abfd, struct bfd_link_info *info,
+ func_pointer_ref = true;
+ }
+
++ if (h->pointer_equality_needed
++ && h->type == STT_FUNC
++ && eh->def_protected
++ && elf_has_indirect_extern_access (h->root.u.def.section->owner))
++ {
++ /* Disallow non-canonical reference to canonical
++ protected function. */
++ _bfd_error_handler
++ /* xgettext:c-format */
++ (_("%pB: non-canonical reference to canonical "
++ "protected function `%s' in %pB"),
++ abfd, h->root.root.string,
++ h->root.u.def.section->owner);
++ bfd_set_error (bfd_error_bad_value);
++ goto error_return;
++ }
++
+ if (!func_pointer_ref)
+ {
+ /* If this reloc is in a read-only section, we might
+diff --git a/bfd/elflink.c b/bfd/elflink.c
+index 6fa18d92007..f8521426cad 100644
+--- a/bfd/elflink.c
++++ b/bfd/elflink.c
+@@ -1294,9 +1294,8 @@ _bfd_elf_merge_symbol (bfd *abfd,
+ h->root.non_ir_ref_dynamic = true;
+ hi->root.non_ir_ref_dynamic = true;
+ }
+-
+- if ((oldbfd->flags & BFD_PLUGIN) != 0
+- && hi->root.type == bfd_link_hash_indirect)
++ else if ((oldbfd->flags & BFD_PLUGIN) != 0
++ && hi->root.type == bfd_link_hash_indirect)
+ {
+ /* Change indirect symbol from IR to undefined. */
+ hi->root.type = bfd_link_hash_undefined;
+diff --git a/bfd/elfxx-x86.c b/bfd/elfxx-x86.c
+index d00dc45677b..acb2cc8528d 100644
+--- a/bfd/elfxx-x86.c
++++ b/bfd/elfxx-x86.c
+@@ -524,6 +524,24 @@ elf_x86_allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
+ {
+ asection *sreloc;
+
++ if (eh->def_protected
++ && elf_has_no_copy_on_protected (h->root.u.def.section->owner))
++ {
++ /* Disallow copy relocation against non-copyable protected
++ symbol. */
++ asection *s = p->sec->output_section;
++ if (s != NULL && (s->flags & SEC_READONLY) != 0)
++ {
++ info->callbacks->einfo
++ /* xgettext:c-format */
++ (_("%F%P: %pB: copy relocation against non-copyable "
++ "protected symbol `%s' in %pB\n"),
++ p->sec->owner, h->root.root.string,
++ h->root.u.def.section->owner);
++ return false;
++ }
++ }
++
+ sreloc = elf_section_data (p->sec)->sreloc;
+
+ BFD_ASSERT (sreloc != NULL);
+diff --git a/bfd/elfxx-x86.h b/bfd/elfxx-x86.h
+index 3219f363a9a..77fb1ad72bc 100644
+--- a/bfd/elfxx-x86.h
++++ b/bfd/elfxx-x86.h
+@@ -80,6 +80,7 @@
+ #define I386_NEED_DYNAMIC_RELOC_TYPE_P(TYPE) \
+ (I386_SIZE_TYPE_P (TYPE) \
+ || I386_RELATIVE_RELOC_TYPE_P (TYPE) \
++ || (TYPE) == R_386_TLS_IE \
+ || (TYPE) == R_386_TLS_LE \
+ || (TYPE) == R_386_TLS_LE_32)
+ #define X86_NEED_DYNAMIC_RELOC_TYPE_P(IS_X86_64, TYPE) \
+diff --git a/bfd/po/sr.po b/bfd/po/sr.po
+index eb80c2c5430..3468a819220 100644
+--- a/bfd/po/sr.po
++++ b/bfd/po/sr.po
+@@ -1,13 +1,13 @@
+ # Serbian translation of bfd.
+ # Copyright © 2014 Free Software Foundation, Inc.
+ # This file is distributed under the same license as the binutils package.
+-# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2016–2021.
++# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2016–2022.
+ msgid ""
+ msgstr ""
+-"Project-Id-Version: bfd-2.36.90\n"
+-"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
+-"POT-Creation-Date: 2021-07-03 15:02+0100\n"
+-"PO-Revision-Date: 2021-07-24 06:30+0200\n"
++"Project-Id-Version: bfd-2.37.90\n"
++"Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n"
++"POT-Creation-Date: 2022-01-22 12:19+0000\n"
++"PO-Revision-Date: 2022-02-16 06:03+0200\n"
+ "Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
+ "Language-Team: Serbian <(nothing)>\n"
+ "Language: sr\n"
+@@ -32,26 +32,26 @@ msgstr "%pB: неподржана врста премештања је увез
+ msgid "%pB: bad relocation record imported: %d"
+ msgstr "%pB: увезен је лош снимак премештања: %d"
+
+-#: aoutx.h:1265 aoutx.h:1613 pdp11.c:1238 pdp11.c:1512
++#: aoutx.h:1265 aoutx.h:1612 pdp11.c:1238 pdp11.c:1511
+ #, c-format
+ msgid "%pB: can not represent section `%pA' in a.out object file format"
+ msgstr "%pB: не могу да представим одељак „%pA“ у „a.out“ запису датотеке објекта"
+
+-#: aoutx.h:1577 pdp11.c:1484
++#: aoutx.h:1576 pdp11.c:1483
+ #, c-format
+ msgid "%pB: can not represent section for symbol `%s' in a.out object file format"
+ msgstr "%pB: не могу да представим одељак за симбол „%s“ у „a.out“ запису датотеке објекта"
+
+-#: aoutx.h:1580 vms-alpha.c:8038
++#: aoutx.h:1579 vms-alpha.c:8282
+ msgid "*unknown*"
+ msgstr "*непознато*"
+
+-#: aoutx.h:1716 pdp11.c:1580
++#: aoutx.h:1715 pdp11.c:1579
+ #, c-format
+ msgid "%pB: invalid string offset %<PRIu64> >= %<PRIu64>"
+ msgstr "%pB: неисправан померај ниске „%<PRIu64> >= %<PRIu64>“"
+
+-#: aoutx.h:1963
++#: aoutx.h:1962
+ #, c-format
+ msgid "%pB: unsupported AOUT relocation size: %d"
+ msgstr "%pB: неподржана величина „AOUT“ премештања: %d"
+@@ -67,37 +67,37 @@ msgid "%pB: unsupported relocation type"
+ msgstr "%pB: врста премештања није подржана"
+
+ #. Unknown relocation.
+-#: aoutx.h:4405 coff-alpha.c:601 coff-alpha.c:1518 coff-rs6000.c:2916
+-#: coff-sh.c:504 coff-tic4x.c:184 coff-tic54x.c:279 elf-hppa.h:798
+-#: elf-hppa.h:826 elf-m10200.c:226 elf-m10300.c:813 elf32-arc.c:532
+-#: elf32-arm.c:1985 elf32-avr.c:962 elf32-bfin.c:1062 elf32-bfin.c:4687
+-#: elf32-cr16.c:654 elf32-cr16.c:684 elf32-cris.c:467 elf32-crx.c:429
+-#: elf32-csky.c:991 elf32-d10v.c:234 elf32-d30v.c:522 elf32-d30v.c:544
+-#: elf32-dlx.c:546 elf32-epiphany.c:372 elf32-fr30.c:381 elf32-frv.c:2559
+-#: elf32-frv.c:6240 elf32-ft32.c:305 elf32-h8300.c:302 elf32-i386.c:400
+-#: elf32-ip2k.c:1240 elf32-iq2000.c:442 elf32-lm32.c:496 elf32-m32c.c:305
+-#: elf32-m32r.c:1286 elf32-m32r.c:1311 elf32-m32r.c:2209 elf32-m68hc11.c:390
+-#: elf32-m68hc12.c:510 elf32-m68k.c:354 elf32-mcore.c:354 elf32-mcore.c:440
+-#: elf32-mep.c:385 elf32-metag.c:871 elf32-microblaze.c:690
++#: aoutx.h:4405 coff-alpha.c:601 coff-alpha.c:1518 coff-mips.c:356
++#: coff-rs6000.c:2959 coff-sh.c:504 coff-tic4x.c:184 coff-tic54x.c:279
++#: elf-hppa.h:798 elf-hppa.h:826 elf-m10200.c:226 elf-m10300.c:813
++#: elf32-arc.c:532 elf32-arm.c:1985 elf32-avr.c:962 elf32-bfin.c:1066
++#: elf32-bfin.c:4690 elf32-cr16.c:654 elf32-cr16.c:684 elf32-cris.c:467
++#: elf32-crx.c:429 elf32-csky.c:991 elf32-d10v.c:234 elf32-d30v.c:522
++#: elf32-d30v.c:544 elf32-dlx.c:546 elf32-epiphany.c:372 elf32-fr30.c:381
++#: elf32-frv.c:2559 elf32-frv.c:6240 elf32-ft32.c:305 elf32-h8300.c:302
++#: elf32-i386.c:394 elf32-ip2k.c:1240 elf32-iq2000.c:442 elf32-lm32.c:496
++#: elf32-m32c.c:305 elf32-m32r.c:1286 elf32-m32r.c:1311 elf32-m32r.c:2209
++#: elf32-m68hc11.c:390 elf32-m68hc12.c:510 elf32-m68k.c:354 elf32-mcore.c:354
++#: elf32-mcore.c:440 elf32-mep.c:385 elf32-metag.c:871 elf32-microblaze.c:690
+ #: elf32-microblaze.c:961 elf32-mips.c:2231 elf32-moxie.c:137
+-#: elf32-msp430.c:737 elf32-msp430.c:747 elf32-mt.c:241 elf32-nds32.c:3237
+-#: elf32-nds32.c:3263 elf32-nds32.c:5029 elf32-nios2.c:3019 elf32-or1k.c:1070
+-#: elf32-pj.c:326 elf32-ppc.c:898 elf32-ppc.c:911 elf32-pru.c:423
+-#: elf32-rl78.c:291 elf32-rx.c:313 elf32-rx.c:322 elf32-s12z.c:296
+-#: elf32-s390.c:347 elf32-score.c:2392 elf32-score7.c:2231 elf32-sh.c:437
++#: elf32-msp430.c:737 elf32-msp430.c:747 elf32-mt.c:241 elf32-nds32.c:3234
++#: elf32-nds32.c:3255 elf32-nds32.c:5024 elf32-nios2.c:3019 elf32-or1k.c:1070
++#: elf32-pj.c:326 elf32-ppc.c:900 elf32-ppc.c:913 elf32-pru.c:423
++#: elf32-rl78.c:291 elf32-rx.c:324 elf32-rx.c:333 elf32-s12z.c:296
++#: elf32-s390.c:347 elf32-score.c:2383 elf32-score7.c:2224 elf32-sh.c:437
+ #: elf32-spu.c:163 elf32-tic6x.c:1498 elf32-tic6x.c:1508 elf32-tic6x.c:1527
+ #: elf32-tic6x.c:1537 elf32-tic6x.c:2583 elf32-tilepro.c:792 elf32-v850.c:1902
+ #: elf32-v850.c:1924 elf32-v850.c:4249 elf32-vax.c:289 elf32-visium.c:481
+ #: elf32-wasm32.c:105 elf32-xc16x.c:250 elf32-xgate.c:418
+ #: elf32-xstormy16.c:395 elf32-xtensa.c:522 elf32-xtensa.c:556 elf32-z80.c:331
+-#: elf64-alpha.c:1114 elf64-alpha.c:4072 elf64-alpha.c:4220 elf64-bpf.c:325
+-#: elf64-ia64-vms.c:255 elf64-ia64-vms.c:3431 elf64-mips.c:3958
+-#: elf64-mips.c:3974 elf64-mmix.c:1264 elf64-nfp.c:238 elf64-ppc.c:1021
+-#: elf64-ppc.c:1373 elf64-ppc.c:1382 elf64-s390.c:328 elf64-s390.c:378
+-#: elf64-x86-64.c:279 elfn32-mips.c:3788 elfxx-ia64.c:324 elfxx-riscv.c:970
+-#: elfxx-sparc.c:589 elfxx-sparc.c:639 elfxx-tilegx.c:907 elfxx-tilegx.c:947
+-#: elfnn-aarch64.c:2215 elfnn-aarch64.c:2313 elfnn-ia64.c:214
+-#: elfnn-ia64.c:3820
++#: elf64-alpha.c:1114 elf64-alpha.c:4073 elf64-alpha.c:4221 elf64-bpf.c:325
++#: elf64-ia64-vms.c:255 elf64-ia64-vms.c:3425 elf64-mips.c:3958
++#: elf64-mips.c:3974 elf64-mmix.c:1264 elf64-nfp.c:238 elf64-ppc.c:1027
++#: elf64-ppc.c:1381 elf64-ppc.c:1390 elf64-s390.c:328 elf64-s390.c:378
++#: elf64-x86-64.c:268 elfn32-mips.c:3788 elfxx-ia64.c:324
++#: elfxx-loongarch.c:632 elfxx-riscv.c:969 elfxx-sparc.c:589 elfxx-sparc.c:639
++#: elfxx-tilegx.c:907 elfxx-tilegx.c:947 elfnn-aarch64.c:2215
++#: elfnn-aarch64.c:2313 elfnn-ia64.c:214 elfnn-ia64.c:3820
+ #, c-format
+ msgid "%pB: unsupported relocation type %#x"
+ msgstr "%pB: врста премештања није подржана „%#x“"
+@@ -112,132 +112,136 @@ msgstr "%pB: преместива веза са „%s“ на „%s“ није
+ msgid "%pB: cannot allocate memory for local GOT entries"
+ msgstr "%pB: не могу да доделим меморију за локалне „GOT“ уносе"
+
+-#: archive.c:2241
++#: archive.c:743
++msgid "%F%P: %pB(%s): error opening thin archive member: %E\n"
++msgstr "%F%P: %pB(%s): грешка отварања мајушног члана архиве: %E\n"
++
++#: archive.c:2272
+ msgid "warning: writing archive was slow: rewriting timestamp"
+ msgstr "упозорење: упис у архиву је спор: поново уписујем време"
+
+-#: archive.c:2308 archive.c:2368 elflink.c:4611 linker.c:1427
++#: archive.c:2339 archive.c:2400 elflink.c:4756 linker.c:1429
+ #, c-format
+ msgid "%pB: plugin needed to handle lto object"
+ msgstr "%pB: потребан је прикључак за руковање „lto“ објектом"
+
+-#: archive.c:2594
++#: archive.c:2626
+ msgid "Reading archive file mod timestamp"
+ msgstr "Читам време режима датотеке архиве"
+
+-#: archive.c:2618
++#: archive.c:2650
+ msgid "Writing updated armap timestamp"
+ msgstr "Уписујем освежено време армапа"
+
+-#: bfd.c:681
++#: bfd.c:690
+ msgid "no error"
+ msgstr "нема грешке"
+
+-#: bfd.c:682
++#: bfd.c:691
+ msgid "system call error"
+ msgstr "грешка системског позива"
+
+-#: bfd.c:683
++#: bfd.c:692
+ msgid "invalid bfd target"
+ msgstr "неисправан циљ бфд-а"
+
+-#: bfd.c:684
++#: bfd.c:693
+ msgid "file in wrong format"
+ msgstr "датотека је у погрешном запису"
+
+-#: bfd.c:685
++#: bfd.c:694
+ msgid "archive object file in wrong format"
+ msgstr "датотека објекта архиве је у погрешном запису"
+
+-#: bfd.c:686
++#: bfd.c:695
+ msgid "invalid operation"
+ msgstr "неисправна операција"
+
+-#: bfd.c:687
++#: bfd.c:696
+ msgid "memory exhausted"
+ msgstr "меморија је исцрпљена"
+
+-#: bfd.c:688
++#: bfd.c:697
+ msgid "no symbols"
+ msgstr "нема симбола"
+
+-#: bfd.c:689
++#: bfd.c:698
+ msgid "archive has no index; run ranlib to add one"
+ msgstr "архива нема индекс; покрените „ranlib“ да га додате"
+
+-#: bfd.c:690
++#: bfd.c:699
+ msgid "no more archived files"
+ msgstr "нема више архивираних датотека"
+
+-#: bfd.c:691
++#: bfd.c:700
+ msgid "malformed archive"
+ msgstr "лоша архива"
+
+-#: bfd.c:692
++#: bfd.c:701
+ msgid "DSO missing from command line"
+ msgstr "„DSO“ недостаје на линији наредби"
+
+-#: bfd.c:693
++#: bfd.c:702
+ msgid "file format not recognized"
+ msgstr "запис датотеке није препознат"
+
+-#: bfd.c:694
++#: bfd.c:703
+ msgid "file format is ambiguous"
+ msgstr "запис датотеке је нејасан"
+
+-#: bfd.c:695
++#: bfd.c:704
+ msgid "section has no contents"
+ msgstr "одељак нема садржаје"
+
+-#: bfd.c:696
++#: bfd.c:705
+ msgid "nonrepresentable section on output"
+ msgstr "на излазу је одељак који се не може приказати"
+
+-#: bfd.c:697
++#: bfd.c:706
+ msgid "symbol needs debug section which does not exist"
+ msgstr "симболу је потребан одељак за уклањање грешака који не постоји"
+
+-#: bfd.c:698
++#: bfd.c:707
+ msgid "bad value"
+ msgstr "погрешна вредност"
+
+-#: bfd.c:699
++#: bfd.c:708
+ msgid "file truncated"
+ msgstr "датотека је окрњена"
+
+-#: bfd.c:700
++#: bfd.c:709
+ msgid "file too big"
+ msgstr "датотека је превелика"
+
+-#: bfd.c:701
++#: bfd.c:710
+ msgid "sorry, cannot handle this file"
+ msgstr "извините, не могу да радим са овом датотеком"
+
+-#: bfd.c:702
++#: bfd.c:711
+ #, c-format
+ msgid "error reading %s: %s"
+ msgstr "грешка читања „%s“: %s"
+
+-#: bfd.c:703
++#: bfd.c:712
+ msgid "#<invalid error code>"
+ msgstr "#<неисправан код грешке>"
+
+-#: bfd.c:1640
++#: bfd.c:1649
+ #, c-format
+ msgid "BFD %s assertion fail %s:%d"
+ msgstr "„BFD“ „%s“ тврдња није успела „%s“:%d"
+
+-#: bfd.c:1653
++#: bfd.c:1662
+ #, c-format
+ msgid "BFD %s internal error, aborting at %s:%d in %s\n"
+ msgstr "Унутрашња грешка „BFD“ %s, прекидам на „%s“ %d. реду у „%s“\n"
+
+-#: bfd.c:1658
++#: bfd.c:1667
+ #, c-format
+ msgid "BFD %s internal error, aborting at %s:%d\n"
+ msgstr "Унутрашња грешка „BFD“ %s, прекидам при „%s“ %d. реду\n"
+
+-#: bfd.c:1660
++#: bfd.c:1669
+ msgid "Please report this bug.\n"
+ msgstr "Пријавите ову грешку.\n"
+
+@@ -266,7 +270,7 @@ msgstr "поново отварам „%pB“: %s\n"
+ msgid "%pB: cannot handle compressed Alpha binaries; use compiler flags, or objZ, to generate uncompressed binaries"
+ msgstr "%pB: не могу да радим са сажетим бинарним Алфа датотекама; користите заставице преводиоца, или „objZ“, да створите несажете бинарне датотеке"
+
+-#: coff-alpha.c:856 coff-alpha.c:893 coff-alpha.c:1960 coff-mips.c:953
++#: coff-alpha.c:856 coff-alpha.c:893 coff-alpha.c:1960 coff-mips.c:960
+ msgid "GP relative relocation used when GP not defined"
+ msgstr "употребљено је релативно премештање општег показивача када није дефинисан"
+
+@@ -274,18 +278,18 @@ msgstr "употребљено је релативно премештање оп
+ msgid "using multiple gp values"
+ msgstr "користим неколико вредности општег показивача"
+
+-#: coff-alpha.c:1505 coff-alpha.c:1511 elf.c:9463 elf32-mcore.c:100
+-#: elf32-mcore.c:455 elf32-ppc.c:7614 elf32-ppc.c:8763 elf64-ppc.c:16242
++#: coff-alpha.c:1505 coff-alpha.c:1511 elf.c:9527 elf32-mcore.c:100
++#: elf32-mcore.c:455 elf32-ppc.c:7649 elf32-ppc.c:8841 elf64-ppc.c:16679
+ #, c-format
+ msgid "%pB: %s unsupported"
+ msgstr "%pB: „%s“ није подржано"
+
+-#: coff-go32.c:156 coffswap.h:792
++#: coff-go32.c:164 coffswap.h:819
+ #, c-format
+ msgid "%pB: warning: %s: line number overflow: 0x%lx > 0xffff"
+ msgstr "%pB: упозорење: %s: прекорачење броја редова: 0x%lx > 0xffff"
+
+-#: coff-mips.c:643 elf32-mips.c:1744 elf32-score.c:433 elf32-score7.c:333
++#: coff-mips.c:650 elf32-mips.c:1744 elf32-score.c:433 elf32-score7.c:333
+ #: elf64-mips.c:3451 elfn32-mips.c:3278
+ msgid "GP relative relocation when _gp not defined"
+ msgstr "Релативно премештање општег показивача када „_gp“ није дефинисано"
+@@ -295,29 +299,32 @@ msgstr "Релативно премештање општег показивач
+ msgid "%pB: unsupported swap_aux_in for storage class %#x"
+ msgstr "%pB: неподржано „swap_aux_in“ за смештајну класу „%#x“"
+
+-#: coff-rs6000.c:570 coff64-rs6000.c:499
++#: coff-rs6000.c:571 coff64-rs6000.c:497
+ #, c-format
+ msgid "%pB: unsupported swap_aux_out for storage class %#x"
+ msgstr "%pB: неподржано „swap_aux_out“ за смештајну класу „%#x“"
+
+-#: coff-rs6000.c:3002
++#: coff-rs6000.c:3045
+ #, c-format
+ msgid "%pB: TOC reloc at %#<PRIx64> to symbol `%s' with no TOC entry"
+ msgstr "%pB: премештање табеле садржаја са „%#<PRIx64>“ на симбол „%s“ без уноса табеле садржаја"
+
+-#: coff-rs6000.c:3209 coff-rs6000.c:3220
+-msgid "%pB: TLS relocation at (0x%"
+-msgstr "%pB: ТЛС премештање на (0x%"
++#: coff-rs6000.c:3260
++#, c-format
++msgid "%pB: TLS relocation at 0x%s over non-TLS symbol %s (0x%x)\n"
++msgstr "%pB: ТЛС премештање на 0x%s преко не-ТЛС симбола „%s“ (0x%x)\n"
+
+-#: coff-rs6000.c:3234
+-msgid "%pB: TLS local relocation at (0x%"
+-msgstr "%pB: ТЛС локално премештање на (0x%"
++#: coff-rs6000.c:3276
++#, c-format
++msgid "%pB: TLS local relocation at 0x%s over imported symbol %s\n"
++msgstr "%pB: ТЛС локално премештање на 0x%s преко увезеног симбола „%s“\n"
+
+-#: coff-rs6000.c:3642 coff64-rs6000.c:1573
+-msgid "%pB: relocatation (%d) at (0x%"
+-msgstr "%pB: премештање (%d) на (0x%"
++#: coff-rs6000.c:3686
++#, c-format
++msgid "%pB: relocation (%d) at 0x%s has wrong r_rsize (0x%x)\n"
++msgstr "%pB: премештање (%d) на 0x%s има погрешн r_r-величину (0x%x)\n"
+
+-#: coff-rs6000.c:3905 coff64-rs6000.c:2023
++#: coff-rs6000.c:3949 coff64-rs6000.c:2000
+ #, c-format
+ msgid "%pB: symbol `%s' has unrecognized smclas %d"
+ msgstr "%pB: симбол „%s“ има непознату класу симбола „%d“"
+@@ -367,44 +374,49 @@ msgstr "%pB: %#<PRIx64>: кобна грешка: прекорачење пре
+ msgid "%pB: fatal: generic symbols retrieved before relaxing"
+ msgstr "%pB: кобно: општи симболи су пронађени пре опуштања"
+
+-#: coff-sh.c:2781 cofflink.c:2959
++#: coff-sh.c:2781 cofflink.c:2963
+ #, c-format
+ msgid "%pB: illegal symbol index %ld in relocs"
+ msgstr "%pB: неисправан индекс симбола %ld у премештањима"
+
+-#: coff-tic4x.c:228 coff-tic54x.c:366 coffcode.h:5124
++#: coff-tic30.c:172 coff-tic4x.c:228 coff-tic54x.c:366 coff-z80.c:325
++#: coff-z8k.c:188 coffcode.h:5157
+ #, c-format
+ msgid "%pB: warning: illegal symbol index %ld in relocs"
+ msgstr "%pB: упозорење: неисправан индекс симбола %ld у премештањима"
+
+-#: coff64-rs6000.c:449 coff64-rs6000.c:555
++#: coff64-rs6000.c:447 coff64-rs6000.c:554
+ #, c-format
+ msgid "%pB: C_STAT isn't supported by XCOFF64"
+ msgstr "%pB: „C_STAT“ није подржано „XCOFF64“-ом"
+
+-#: coff64-rs6000.c:479
++#: coff64-rs6000.c:477
+ #, c-format
+ msgid "%pB: wrong auxtype %#x for storage class %#x"
+ msgstr "%pB: погрешна „aux“ врста %#x за смештајну класу %#x"
+
+-#: coffcode.h:986
++#: coff64-rs6000.c:1572
++msgid "%pB: relocation (%d) at (0x%"
++msgstr "%pB: премештање (%d) на (0x%"
++
++#: coffcode.h:990
+ #, c-format
+ msgid "%pB: unable to load COMDAT section name"
+ msgstr "%pB: не могу да учитам „COMDAT“ назив одељка"
+
+ #. Malformed input files can trigger this test.
+ #. cf PR 21781.
+-#: coffcode.h:1021
++#: coffcode.h:1025
+ #, c-format
+ msgid "%pB: error: unexpected symbol '%s' in COMDAT section"
+ msgstr "%pB: грешка: неочекивани симбол „%s“ у „COMDAT“ одељку"
+
+-#: coffcode.h:1033
++#: coffcode.h:1037
+ #, c-format
+ msgid "%pB: warning: COMDAT symbol '%s' does not match section name '%s'"
+ msgstr "%pB: упозорење: „COMDAT“ симбол „%s“ се не подудара са називом одељка „%s“"
+
+-#: coffcode.h:1043
++#: coffcode.h:1047
+ #, c-format
+ msgid "%pB: warning: no symbol for section '%s' found"
+ msgstr "%pB: упозорење: нисам нашао никакав симбол за одељак „%s“"
+@@ -412,87 +424,87 @@ msgstr "%pB: упозорење: нисам нашао никакав симбо
+ #. Generate a warning message rather using the 'unhandled'
+ #. variable as this will allow some .sys files generate by
+ #. other toolchains to be processed. See bugzilla issue 196.
+-#: coffcode.h:1274
++#: coffcode.h:1278
+ #, c-format
+ msgid "%pB: warning: ignoring section flag %s in section %s"
+ msgstr "%pB: упозорење: занемарујем заставицу одељка „%s“ у одељку „%s“"
+
+-#: coffcode.h:1343
++#: coffcode.h:1347
+ #, c-format
+ msgid "%pB (%s): section flag %s (%#lx) ignored"
+ msgstr "%pB (%s): заставица одељка „%s“ (%#lx) је занемарена"
+
+-#: coffcode.h:1959 coffcode.h:2024
++#: coffcode.h:1960
++#, c-format
++msgid "%pB: overflow reloc count too small"
++msgstr "%pB: број премештања прекорачења је превише мали"
++
++#: coffcode.h:1969 coffcode.h:2034
+ #, c-format
+ msgid "%pB: warning: claims to have 0xffff relocs, without overflow"
+ msgstr "%pB: упозорење: потврђујем 0xffff премештања, без прекорачења"
+
+-#: coffcode.h:2385
++#: coffcode.h:2401
+ #, c-format
+ msgid "unrecognized TI COFF target id '0x%x'"
+ msgstr "непознат ид „TI COFF“ циља „0x%x“"
+
+-#: coffcode.h:2663
++#: coffcode.h:2679
+ #, c-format
+ msgid "%pB: reloc against a non-existent symbol index: %ld"
+ msgstr "%pB: премештање наспрам непостојећег индекса симбола: %ld"
+
+-#: coffcode.h:2961
++#: coffcode.h:2983
+ #, c-format
+ msgid "%pB: page size is too large (0x%x)"
+ msgstr "%pB: величина странице је превелика (0x%x)"
+
+-#: coffcode.h:3121
++#: coffcode.h:3143
+ #, c-format
+ msgid "%pB: too many sections (%d)"
+ msgstr "%pB: превише одељака (%d)"
+
+-#: coffcode.h:3548
++#: coffcode.h:3570
+ #, c-format
+ msgid "%pB: section %pA: string table overflow at offset %ld"
+ msgstr "%pB: одељак „%pA“: прекорачење табеле ниски на померају %ld"
+
+-#: coffcode.h:3655
++#: coffcode.h:3677
+ #, c-format
+ msgid "%pB:%s section %s: alignment 2**%u not representable"
+ msgstr "%pB:%s одељак %s: поравнање 2**%u се не може представити"
+
+-#: coffcode.h:4358
+-#, c-format
+-msgid "%pB: warning: line number count (%#lx) exceeds section size (%#lx)"
+-msgstr "%pB: упозорење: број редова (%#lx) превазилази величину одељка (%#lx)"
+-
+-#: coffcode.h:4378
++#: coffcode.h:4393
+ #, c-format
+ msgid "%pB: warning: line number table read failed"
+ msgstr "%pB: упозорење: није успело читање броја реда табеле"
+
+-#: coffcode.h:4412 coffcode.h:4426
++#: coffcode.h:4439 coffcode.h:4453
+ #, c-format
+ msgid "%pB: warning: illegal symbol index 0x%lx in line number entry %d"
+ msgstr "%pB: упозорење: неисправан индекс симбола 0x%lx у уносу броја реда %d"
+
+-#: coffcode.h:4440
++#: coffcode.h:4467
+ #, c-format
+ msgid "%pB: warning: illegal symbol in line number entry %d"
+ msgstr "%pB: упозорење: неисправан индекс симбола у уносу броја реда %d"
+
+-#: coffcode.h:4453
++#: coffcode.h:4480
+ #, c-format
+ msgid "%pB: warning: duplicate line number information for `%s'"
+ msgstr "%pB: упозорење: удвостручени податак о броју реда за „%s“"
+
+-#: coffcode.h:4874
++#: coffcode.h:4901
+ #, c-format
+ msgid "%pB: unrecognized storage class %d for %s symbol `%s'"
+ msgstr "%pB: непозната класа смештаја „%d“ за „%s“ симбол „%s“"
+
+-#: coffcode.h:5014
++#: coffcode.h:5041
+ #, c-format
+ msgid "warning: %pB: local symbol `%s' has no section"
+ msgstr "упозорење: %pB: локални симбол „%s“ нема одељак"
+
+-#: coffcode.h:5164
++#: coffcode.h:5197
+ #, c-format
+ msgid "%pB: illegal relocation type %d at address %#<PRIx64>"
+ msgstr "%pB: неисправна врста премештања %d на адреси %#<PRIx64>"
+@@ -507,31 +519,31 @@ msgstr "%pB: не могу да започнем стање сажимања з
+ msgid "%pB: unable to initialize decompress status for section %s"
+ msgstr "%pB: не могу да започнем стање распакивања за одељак „%s“"
+
+-#: coffgen.c:1706
++#: coffgen.c:1760
+ #, c-format
+ msgid "%pB: bad string table size %<PRIu64>"
+ msgstr "%pB: лоша величина табеле низа %<PRIu64>"
+
+-#: coffgen.c:1878 coffgen.c:1938 coffgen.c:1956 cofflink.c:2024 elf.c:1936
+-#: xcofflink.c:4540
++#: coffgen.c:1932 coffgen.c:1976 coffgen.c:2025 coffgen.c:2043 cofflink.c:2024
++#: elf.c:1939 xcofflink.c:4658
+ msgid "<corrupt>"
+ msgstr "<оштећење>"
+
+-#: coffgen.c:2087
++#: coffgen.c:2176
+ #, c-format
+ msgid "<corrupt info> %s"
+ msgstr "<оштећени подаци> %s"
+
+-#: coffgen.c:2684 elflink.c:14829 linker.c:2965
++#: coffgen.c:2781 elflink.c:15042 linker.c:2967
+ msgid "%F%P: already_linked_table: %E\n"
+ msgstr "%F%P: већ_повезана_табела: %E\n"
+
+-#: coffgen.c:3026 elflink.c:13816
++#: coffgen.c:3123 elflink.c:14017
+ #, c-format
+ msgid "removing unused section '%pA' in file '%pB'"
+ msgstr "уклањам некоришћени одељак „%pA“ у датотеци „%pB“"
+
+-#: coffgen.c:3103 elflink.c:14036
++#: coffgen.c:3200 elflink.c:14247
+ msgid "warning: gc-sections option ignored"
+ msgstr "упозорење: опција „gc“ одељака је занемарена"
+
+@@ -540,7 +552,7 @@ msgstr "упозорење: опција „gc“ одељака је занем
+ msgid "warning: symbol `%s' is both section and non-section"
+ msgstr "упозорење: симбол „%s“ је и одељак и није одељак"
+
+-#: cofflink.c:471 elf64-ia64-vms.c:5202 elflink.c:5207
++#: cofflink.c:471 elf64-ia64-vms.c:5196 elflink.c:5353
+ #, c-format
+ msgid "warning: type of symbol `%s' changed from %d to %d in %pB"
+ msgstr "упозорење: врста симбола „%s“ је измењена из „%d“ у „%d“ за „%pB“"
+@@ -550,51 +562,52 @@ msgstr "упозорење: врста симбола „%s“ је измење
+ msgid "%pB: relocs in section `%pA', but it has no contents"
+ msgstr "%pB: премештања у одељку „%pA“, али нема никаквог садржаја"
+
+-#: cofflink.c:2415 elflink.c:11342
++#: cofflink.c:2415 elflink.c:11470
+ #, c-format
+ msgid "%X`%s' referenced in section `%pA' of %pB: defined in discarded section `%pA' of %pB\n"
+ msgstr "%X„%s“ је упутно у одељку „%pA“ од „%pB“: дефинисано је у одбаченом одељку „%pA“ од „%pB“\n"
+
+-#: cofflink.c:2610
+-msgid "%pB: stripping non-representable symbol '%s' (value %"
+-msgstr "%pB: уклањам непредстављајући симбол „%s“ (вредност %"
++#: cofflink.c:2614
++#, c-format
++msgid "%pB: stripping non-representable symbol '%s' (value 0x%s)"
++msgstr "%pB: уклањам непредстављајући симбол „%s“ (вредност 0x%s)"
+
+-#: cofflink.c:2728
++#: cofflink.c:2732
+ #, c-format
+ msgid "%pB: %pA: reloc overflow: %#x > 0xffff"
+ msgstr "%pB: %pA: прекорачење премештања: %#x > 0xffff"
+
+-#: cofflink.c:2736
++#: cofflink.c:2740
+ #, c-format
+ msgid "%pB: warning: %pA: line number overflow: %#x > 0xffff"
+ msgstr "%pB: упозорење: %pA: прекорачење броја редова: %#x > 0xffff"
+
+-#: cofflink.c:3127
++#: cofflink.c:3131
+ #, c-format
+ msgid "%pB: bad reloc address %#<PRIx64> in section `%pA'"
+ msgstr "%pB: погрешна адреса премештања %#<PRIx64> у одељку „%pA“"
+
+-#: coffswap.h:806
++#: coffswap.h:833
+ #, c-format
+ msgid "%pB: %s: reloc overflow: 0x%lx > 0xffff"
+ msgstr "%pB: %s: прекорачење премештања: 0x%lx > 0xffff"
+
+-#: compress.c:270
++#: compress.c:275
+ #, c-format
+ msgid "error: %pB(%pA) section size (%#<PRIx64> bytes) is larger than file size (%#<PRIx64> bytes)"
+ msgstr "грешка: %pB(%pA) величина одељка (%#<PRIx64> бајтова) је већа од величине датотеке (%#<PRIx64> бајта)"
+
+-#: compress.c:281
++#: compress.c:286
+ #, c-format
+ msgid "error: %pB(%pA) is too large (%#<PRIx64> bytes)"
+ msgstr "грешка: %pB(%pA) је превелико (%#<PRIx64> бајта)"
+
+-#: cpu-arm.c:307 cpu-arm.c:319
++#: cpu-arm.c:310 cpu-arm.c:322
+ #, c-format
+ msgid "error: %pB is compiled for the EP9312, whereas %pB is compiled for XScale"
+ msgstr "грешка: %pB је преведен за EP9312, док је %pB преведен за „XScale“"
+
+-#: cpu-arm.c:455
++#: cpu-arm.c:458
+ #, c-format
+ msgid "warning: unable to update contents of %s section in %pB"
+ msgstr "упозорење: не могу да освежим садржај „%s“ одељка у %pB"
+@@ -615,108 +628,108 @@ msgstr "„DWARF“ грешка: одељак „%s“ је већи од св
+ msgid "DWARF error: offset (%<PRIu64>) greater than or equal to %s size (%<PRIu64>)"
+ msgstr "„DWARF“ грешка: померај (%<PRIu64>) је већи или једнак величини %s (%<PRIu64>)"
+
+-#: dwarf2.c:1201
++#: dwarf2.c:1245
+ msgid "DWARF error: info pointer extends beyond end of attributes"
+ msgstr "„DWARF“ грешка: инфо указивач превазилази крај атрибута"
+
+-#: dwarf2.c:1349
++#: dwarf2.c:1394
+ #, c-format
+ msgid "DWARF error: invalid or unhandled FORM value: %#x"
+ msgstr "„DWARF“ грешка: неисправна или непозната вредност „FORM“: %#x"
+
+-#: dwarf2.c:1664
++#: dwarf2.c:1709
+ msgid "DWARF error: mangled line number section (bad file number)"
+ msgstr "„DWARF“ грешка: број реда одељка је одсечен (лош број датотеке)"
+
+-#: dwarf2.c:2007
++#: dwarf2.c:2052
+ msgid "DWARF error: zero format count"
+ msgstr "„DWARF“ грешка: нулти број записа"
+
+-#: dwarf2.c:2017
++#: dwarf2.c:2062
+ #, c-format
+ msgid "DWARF error: data count (%<PRIx64>) larger than buffer size"
+ msgstr "„DWARF“ грешка: број података (%<PRIx64>) је већи од величине међумеморије"
+
+-#: dwarf2.c:2056
++#: dwarf2.c:2101
+ #, c-format
+ msgid "DWARF error: unknown format content type %<PRIu64>"
+ msgstr "„DWARF“ грешка: непозната врста садржаја записа „%<PRIu64>“"
+
+-#: dwarf2.c:2126
++#: dwarf2.c:2171
+ #, c-format
+ msgid "DWARF error: line info section is too small (%<PRId64>)"
+ msgstr "„DWARF“ грешка: одељак података реда је премали (%<PRId64>)"
+
+-#: dwarf2.c:2153
++#: dwarf2.c:2198
+ #, c-format
+ msgid "DWARF error: line info data is bigger (%#<PRIx64>) than the space remaining in the section (%#lx)"
+ msgstr "„DWARF“ грешка: одељак података реда је већи (%#<PRIx64>) од простора преосталог у одељку (%#lx)"
+
+-#: dwarf2.c:2166
++#: dwarf2.c:2211
+ #, c-format
+ msgid "DWARF error: unhandled .debug_line version %d"
+ msgstr "„DWARF“ грешка: необрађено „.debug_line“ издање %d"
+
+-#: dwarf2.c:2175
++#: dwarf2.c:2220
+ msgid "DWARF error: ran out of room reading prologue"
+ msgstr "„DWARFд грешка: пнестало је простора читајући пролог"
+
+-#: dwarf2.c:2191
++#: dwarf2.c:2236
+ #, c-format
+ msgid "DWARF error: line info unsupported segment selector size %u"
+ msgstr "„DWARF“ грешка: неподржана величина избирача подеока података реда %u"
+
+-#: dwarf2.c:2213
++#: dwarf2.c:2258
+ msgid "DWARF error: invalid maximum operations per instruction"
+ msgstr "„DWARF“ грешка: Неисправан највећи број операција по инструкцији"
+
+-#: dwarf2.c:2225
++#: dwarf2.c:2270
+ msgid "DWARF error: ran out of room reading opcodes"
+ msgstr "„DWARFд грешка: пнестало је простора читајући опкодове"
+
+-#: dwarf2.c:2393
++#: dwarf2.c:2438
+ msgid "DWARF error: mangled line number section"
+ msgstr "„DWARF“ грешка: број реда одељка је одсечен"
+
+-#: dwarf2.c:2881
++#: dwarf2.c:2926
+ msgid "DWARF error: abstract instance recursion detected"
+ msgstr "„DWARF“ грешка: дубачење апстрактног примерка је откривено"
+
+-#: dwarf2.c:2915 dwarf2.c:3009
++#: dwarf2.c:2960 dwarf2.c:3054
+ msgid "DWARF error: invalid abstract instance DIE ref"
+ msgstr "„DWARF“ грешка: неисправан апстрактан примерак „DIE“ упуте"
+
+-#: dwarf2.c:2931
++#: dwarf2.c:2976
+ #, c-format
+ msgid "DWARF error: unable to read alt ref %<PRIu64>"
+ msgstr "„DWARF“ грешка: не могу да прочитам „alt“ упуту %<PRIu64>"
+
+-#: dwarf2.c:2987
++#: dwarf2.c:3032
+ #, c-format
+ msgid "DWARF error: unable to locate abstract instance DIE ref %<PRIu64>"
+ msgstr "„DWARF“ грешка: не могу да пронађем апстрактни примерак „DIE“ упуте %<PRIu64>"
+
+-#: dwarf2.c:3024 dwarf2.c:3305 dwarf2.c:3750
++#: dwarf2.c:3069 dwarf2.c:3351 dwarf2.c:3808
+ #, c-format
+ msgid "DWARF error: could not find abbrev number %u"
+ msgstr "„DWARF“ грешка: не могу да нађем скраћени број %u"
+
+-#: dwarf2.c:3538
++#: dwarf2.c:3594
+ #, c-format
+ msgid "DWARF error: could not find variable specification at offset 0x%lx"
+ msgstr "„DWARF“ грешка: не могу да нађем одредбу променљиве на померају 0×%lx"
+
+-#: dwarf2.c:3677
++#: dwarf2.c:3735
+ #, c-format
+ msgid "DWARF error: found dwarf version '%u', this reader only handles version 2, 3, 4 and 5 information"
+ msgstr "„DWARF“ грешка: нађох „DWARF“ издање „%u“, овај читач ради само са подацима издања 2, 3, 4 и 5"
+
+-#: dwarf2.c:3714
++#: dwarf2.c:3772
+ #, c-format
+ msgid "DWARF error: found address size '%u', this reader can not handle sizes greater than '%u'"
+ msgstr "„DWARF“ грешка: нађох величину адресе „%u“, овај читач не може да ради са величинама већим од „%u“"
+
+-#: dwarf2.c:3817
++#: dwarf2.c:3885
+ msgid "DWARF error: DW_AT_comp_dir attribute encountered with a non-string form"
+ msgstr "„DWARF“ грешка: особина „DW_AT_comp_dir“ је нађена са записом не-ниске"
+
+@@ -832,49 +845,49 @@ msgstr "одбацујем нулти опсег адресе „FDE“ у „%p
+ msgid "error in %pB(%pA); no .eh_frame_hdr table will be created"
+ msgstr "грешка у „%pB(%pA)“; неће бити направљена ниједна „.eh_frame_hdr“ табела"
+
+-#: elf-eh-frame.c:1539
++#: elf-eh-frame.c:1541
+ #, c-format
+ msgid "FDE encoding in %pB(%pA) prevents .eh_frame_hdr table being created"
+ msgstr "„FDE“ кодирање у „%pB(%pA)“ спречава стварање „.eh_frame_hdr“ табеле"
+
+-#: elf-eh-frame.c:1546
++#: elf-eh-frame.c:1548
+ msgid "further warnings about FDE encoding preventing .eh_frame_hdr generation dropped"
+ msgstr "будућа упозорења о „FDE“ кодирању спречава одбацивање „.eh_frame_hdr“ генерације"
+
+-#: elf-eh-frame.c:1866
++#: elf-eh-frame.c:1868
+ #, c-format
+ msgid "%pB: %pA not in order"
+ msgstr "%pB: „%pA“ није у поретку"
+
+-#: elf-eh-frame.c:1880
++#: elf-eh-frame.c:1882
+ #, c-format
+ msgid "%pB: %pA invalid input section size"
+ msgstr "%pB: „%pA“ неисправна величина одељак улаза"
+
+-#: elf-eh-frame.c:1888
++#: elf-eh-frame.c:1890
+ #, c-format
+ msgid "%pB: %pA points past end of text section"
+ msgstr "%pB: „%pA“ тачака прелази крај одељка текста"
+
+-#: elf-eh-frame.c:2141
++#: elf-eh-frame.c:2143
+ msgid "DW_EH_PE_datarel unspecified for this architecture"
+ msgstr "„DW_EH_PE_datarel“ није одређено за ову архитектуру"
+
+-#: elf-eh-frame.c:2312
++#: elf-eh-frame.c:2314
+ #, c-format
+ msgid "invalid output section for .eh_frame_entry: %pA"
+ msgstr "неисправан одељак излаза за „.eh_frame_entry“: %pA"
+
+-#: elf-eh-frame.c:2335
++#: elf-eh-frame.c:2337
+ #, c-format
+ msgid "invalid contents in %pA section"
+ msgstr "неисправан садржај у одељку „%pA“"
+
+-#: elf-eh-frame.c:2491
++#: elf-eh-frame.c:2493
+ msgid ".eh_frame_hdr entry overflow"
+ msgstr "прекорачење „.eh_frame_hdr“ уноса"
+
+-#: elf-eh-frame.c:2493
++#: elf-eh-frame.c:2495
+ msgid ".eh_frame_hdr refers to overlapping FDEs"
+ msgstr "„.eh_frame_hdr“ упућује на преклапајуће „FDE“-ове"
+
+@@ -883,46 +896,46 @@ msgstr "„.eh_frame_hdr“ упућује на преклапајуће „FDE
+ msgid "%F%P: dynamic STT_GNU_IFUNC symbol `%s' with pointer equality in `%pB' can not be used when making an executable; recompile with -fPIE and relink with -pie\n"
+ msgstr "%F%P: динамички „STT_GNU_IFUNC“ симбол „%s“ са једнакошћу показивача у „%pB“ се не може користити приликом стварања извршне; преведите поново са „-fPIE“ и повежите поново са „-pie“\n"
+
+-#: elf-m10200.c:434 elf-m10300.c:2146 elf32-avr.c:1508 elf32-bfin.c:3131
+-#: elf32-cr16.c:1432 elf32-cris.c:2034 elf32-crx.c:913 elf32-d10v.c:510
++#: elf-m10200.c:434 elf-m10300.c:2146 elf32-avr.c:1508 elf32-bfin.c:3137
++#: elf32-cr16.c:1429 elf32-cris.c:2034 elf32-crx.c:913 elf32-d10v.c:510
+ #: elf32-epiphany.c:562 elf32-fr30.c:594 elf32-frv.c:4049 elf32-ft32.c:493
+ #: elf32-h8300.c:523 elf32-ip2k.c:1477 elf32-iq2000.c:691 elf32-lm32.c:1070
+ #: elf32-m32c.c:624 elf32-m32r.c:2837 elf32-m68hc1x.c:1271 elf32-mep.c:522
+ #: elf32-metag.c:1984 elf32-microblaze.c:1623 elf32-moxie.c:288 elf32-mt.c:402
+-#: elf32-nds32.c:6044 elf32-or1k.c:1861 elf32-score.c:2743 elf32-score7.c:2552
++#: elf32-nds32.c:6039 elf32-or1k.c:1873 elf32-score.c:2734 elf32-score7.c:2545
+ #: elf32-spu.c:5084 elf32-tilepro.c:3372 elf32-v850.c:2294 elf32-visium.c:680
+ #: elf32-xstormy16.c:930 elf64-bpf.c:552 elf64-mmix.c:1541 elfxx-tilegx.c:3742
+ msgid "internal error: out of range error"
+ msgstr "унутрашња грешка: изван опсега"
+
+-#: elf-m10200.c:438 elf-m10300.c:2150 elf32-avr.c:1512 elf32-bfin.c:3135
+-#: elf32-cr16.c:1436 elf32-cris.c:2038 elf32-crx.c:917 elf32-d10v.c:514
++#: elf-m10200.c:438 elf-m10300.c:2150 elf32-avr.c:1512 elf32-bfin.c:3141
++#: elf32-cr16.c:1433 elf32-cris.c:2038 elf32-crx.c:917 elf32-d10v.c:514
+ #: elf32-fr30.c:598 elf32-frv.c:4053 elf32-ft32.c:497 elf32-h8300.c:527
+ #: elf32-iq2000.c:695 elf32-lm32.c:1074 elf32-m32c.c:628 elf32-m32r.c:2841
+ #: elf32-m68hc1x.c:1275 elf32-mep.c:526 elf32-metag.c:1988
+ #: elf32-microblaze.c:1627 elf32-moxie.c:292 elf32-msp430.c:1510
+-#: elf32-nds32.c:6048 elf32-or1k.c:1865 elf32-score.c:2747 elf32-score7.c:2556
++#: elf32-nds32.c:6043 elf32-or1k.c:1877 elf32-score.c:2738 elf32-score7.c:2549
+ #: elf32-spu.c:5088 elf32-tilepro.c:3376 elf32-v850.c:2298 elf32-visium.c:684
+ #: elf32-xstormy16.c:934 elf64-mmix.c:1545 elfxx-mips.c:10558
+ #: elfxx-tilegx.c:3746
+ msgid "internal error: unsupported relocation error"
+ msgstr "унутрашња грешка: премештање није подржано"
+
+-#: elf-m10200.c:442 elf32-cr16.c:1440 elf32-crx.c:921 elf32-d10v.c:518
++#: elf-m10200.c:442 elf32-cr16.c:1437 elf32-crx.c:921 elf32-d10v.c:518
+ #: elf32-h8300.c:531 elf32-lm32.c:1078 elf32-m32r.c:2845 elf32-m68hc1x.c:1279
+-#: elf32-microblaze.c:1631 elf32-nds32.c:6052 elf32-score.c:2751
+-#: elf32-score7.c:2560 elf32-spu.c:5092
++#: elf32-microblaze.c:1631 elf32-nds32.c:6047 elf32-score.c:2742
++#: elf32-score7.c:2553 elf32-spu.c:5092
+ msgid "internal error: dangerous error"
+ msgstr "унутрашња грешка: грешка опасности"
+
+-#: elf-m10200.c:446 elf-m10300.c:2167 elf32-avr.c:1520 elf32-bfin.c:3143
+-#: elf32-cr16.c:1444 elf32-cris.c:2046 elf32-crx.c:925 elf32-d10v.c:522
++#: elf-m10200.c:446 elf-m10300.c:2167 elf32-avr.c:1520 elf32-bfin.c:3149
++#: elf32-cr16.c:1441 elf32-cris.c:2046 elf32-crx.c:925 elf32-d10v.c:522
+ #: elf32-epiphany.c:577 elf32-fr30.c:606 elf32-frv.c:4061 elf32-ft32.c:505
+ #: elf32-h8300.c:535 elf32-ip2k.c:1492 elf32-iq2000.c:703 elf32-lm32.c:1082
+ #: elf32-m32c.c:636 elf32-m32r.c:2849 elf32-m68hc1x.c:1283 elf32-mep.c:534
+ #: elf32-metag.c:1996 elf32-microblaze.c:1635 elf32-moxie.c:300
+-#: elf32-msp430.c:1518 elf32-mt.c:410 elf32-nds32.c:6056 elf32-or1k.c:1873
+-#: elf32-score.c:2760 elf32-score7.c:2564 elf32-spu.c:5096
++#: elf32-msp430.c:1518 elf32-mt.c:410 elf32-nds32.c:6051 elf32-or1k.c:1885
++#: elf32-score.c:2751 elf32-score7.c:2557 elf32-spu.c:5096
+ #: elf32-tilepro.c:3384 elf32-v850.c:2318 elf32-visium.c:692
+ #: elf32-xstormy16.c:942 elf64-bpf.c:565 elf64-mmix.c:1553 elfxx-tilegx.c:3754
+ msgid "internal error: unknown error"
+@@ -938,11 +951,11 @@ msgstr "%pB: неподржан прелазак са „%s“ на „%s“"
+ msgid "%pB: %s' accessed both as normal and thread local symbol"
+ msgstr "%pB: „%s“ се приступило и као нормалном и као симболу локалне нити"
+
+-#: elf-m10300.c:2093 elf32-arm.c:13376 elf32-i386.c:3426 elf32-m32r.c:2331
++#: elf-m10300.c:2093 elf32-arm.c:13377 elf32-i386.c:3426 elf32-m32r.c:2331
+ #: elf32-m68k.c:3929 elf32-s390.c:3080 elf32-sh.c:3671 elf32-tilepro.c:3275
+-#: elf32-xtensa.c:3024 elf64-s390.c:3029 elf64-x86-64.c:4082
++#: elf32-xtensa.c:3034 elf64-s390.c:3029 elf64-x86-64.c:4084
+ #: elfxx-sparc.c:2917 elfxx-sparc.c:3814 elfxx-tilegx.c:3665
+-#: elfnn-aarch64.c:5501 elfnn-aarch64.c:7104
++#: elfnn-aarch64.c:5504 elfnn-aarch64.c:7107
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): unresolvable %s relocation against symbol `%s'"
+ msgstr "%pB(%pA+%#<PRIx64>): нерешиво „%s“ премештање наспрам симбола „%s“"
+@@ -961,7 +974,7 @@ msgid "internal error: suspicious relocation type used in shared library"
+ msgstr "унутрашња грешка: сумњива врста премештања је коришћена у дељеној библиотеци"
+
+ #: elf-m10300.c:2650 elf32-avr.c:2486 elf32-frv.c:5621 elf64-ia64-vms.c:365
+-#: elfxx-sparc.c:2684 reloc.c:8282 reloc16.c:155 elfnn-ia64.c:365
++#: elfxx-sparc.c:2684 reloc.c:8373 reloc16.c:155 elfnn-ia64.c:365
+ msgid "%P%F: --relax and -r may not be used together\n"
+ msgstr "%P%F: „--relax“ и „-r“ се не могу користити заједно\n"
+
+@@ -995,45 +1008,54 @@ msgstr "упозорење: %pB: оштећење не умножава на з
+ msgid "error: %pB: <corrupt property (0x%x) size: 0x%x>"
+ msgstr "грешка: %pB: <оштећено својство (0x%x) величине: 0x%x>"
+
+-#: elf-properties.c:205
++#: elf-properties.c:217
+ #, c-format
+ msgid "warning: %pB: unsupported GNU_PROPERTY_TYPE (%ld) type: 0x%x"
+ msgstr "упозорење: %pB: неподржано „GNU_PROPERTY_TYPE“ (%ld) врста: 0x%x"
+
+-#: elf-properties.c:391
++#: elf-properties.c:403
+ msgid "Removed property %W to merge %pB (0x%v) and %pB (0x%v)\n"
+ msgstr "Уклоњено својство „%W“ за стапање „%pB“ (0x%v) и „%pB“ (0x%v)\n"
+
+-#: elf-properties.c:397
++#: elf-properties.c:409
+ msgid "Removed property %W to merge %pB (0x%v) and %pB (not found)\n"
+ msgstr "Уклоњено својство „%W“ за стапање „%pB“ (0x%v) и „%pB“ (нисам нашао)\n"
+
+-#: elf-properties.c:406 elf-properties.c:484
++#: elf-properties.c:418 elf-properties.c:496
+ msgid "Removed property %W to merge %pB and %pB\n"
+ msgstr "Уклоњено својство „%W“ за стапање „%pB“ и „%pB“\n"
+
+-#: elf-properties.c:410
++#: elf-properties.c:422
+ msgid "Removed property %W to merge %pB and %pB (not found)\n"
+ msgstr "Уклоњено својство „%W“ за стапање „%pB“ и „%pB“ (нисам нашао)\n"
+
+-#: elf-properties.c:427
++#: elf-properties.c:439
+ msgid "Updated property %W (0x%v) to merge %pB (0x%v) and %pB (0x%v)\n"
+ msgstr "Освежено својство „%W“ (0x%v) за стапање „%pB“ (0x%v) и „%pB“ (0x%v)\n"
+
+-#: elf-properties.c:436
++#: elf-properties.c:448
+ msgid "Updated property %W (%v) to merge %pB (0x%v) and %pB (not found)\n"
+ msgstr "Освежено својство „%W“ (%v) за стапање „%pB“ (0x%v) и „%pB“ (нисам нашао)\n"
+
+-#: elf-properties.c:478
++#: elf-properties.c:490
+ msgid "Removed property %W to merge %pB (not found) and %pB (0x%v)\n"
+ msgstr "Уклоњено својство „%W“ за стапање „%pB“ (нисам нашао) и „%pB“ (0x%v)\n"
+
++#: elf-properties.c:671 elfxx-aarch64.c:758 elfxx-x86.c:3716
++msgid "%F%P: failed to create GNU property section\n"
++msgstr "%F%P: нисам успео да направим одељак ГНУ својства\n"
++
++#: elf-properties.c:675 elfxx-aarch64.c:762 elfxx-x86.c:3721
++#, c-format
++msgid "%F%pA: failed to align section\n"
++msgstr "%F%pA: нисам успео да поравнам одељак\n"
++
+ #. Merge .note.gnu.property sections.
+-#: elf-properties.c:640 elf-properties.c:642
++#: elf-properties.c:701 elf-properties.c:703
+ msgid "\n"
+ msgstr "\n"
+
+-#: elf-properties.c:641
++#: elf-properties.c:702
+ msgid "Merging program properties\n"
+ msgstr "Стапам својства програма\n"
+
+@@ -1048,7 +1070,7 @@ msgstr "%pB: покушавам да учитам ниске из одељка
+ msgid "%pB: invalid string offset %u >= %<PRIu64> for section `%s'"
+ msgstr "%pB: неисправан померај ниске „%u >= %<PRIu64>“ за одељак „%s“"
+
+-#: elf.c:514 elfnn-aarch64.c:8104
++#: elf.c:514 elfnn-aarch64.c:8107 elfnn-loongarch.c:3045
+ #, c-format
+ msgid "%pB symbol number %lu references nonexistent SHT_SYMTAB_SHNDX section"
+ msgstr "„%pB“ симбол број %lu упућује на непостојећи одељак „SHT_SYMTAB_SHNDX“"
+@@ -1132,7 +1154,7 @@ msgstr ""
+ "\n"
+ "Динамички одељак:\n"
+
+-#: elf.c:1851
++#: elf.c:1854
+ #, c-format
+ msgid ""
+ "\n"
+@@ -1141,7 +1163,7 @@ msgstr ""
+ "\n"
+ "Дефиниција издања:\n"
+
+-#: elf.c:1876
++#: elf.c:1879
+ #, c-format
+ msgid ""
+ "\n"
+@@ -1150,97 +1172,101 @@ msgstr ""
+ "\n"
+ "Упута издања:\n"
+
+-#: elf.c:1881
++#: elf.c:1884
+ #, c-format
+ msgid " required from %s:\n"
+ msgstr " захтевано из „%s“:\n"
+
+-#: elf.c:2071
++#: elf.c:2075
+ #, c-format
+ msgid "%pB: warning: loop in section dependencies detected"
+ msgstr "%pB: упозорење: петља у зависностима одељка је откривена"
+
+-#: elf.c:2178
++#: elf.c:2182
+ #, c-format
+ msgid "%pB: warning: multiple symbol tables detected - ignoring the table in section %u"
+ msgstr "%pB: упозорење: откривено је више табела симбола – занемарујем табелу у одељку %u"
+
+-#: elf.c:2262
++#: elf.c:2266
+ #, c-format
+ msgid "%pB: warning: multiple dynamic symbol tables detected - ignoring the table in section %u"
+ msgstr "%pB: упозорење: откривено је више динамичких табела симбола – занемарујем табелу у одељку %u"
+
+-#: elf.c:2375
++#: elf.c:2385
+ #, c-format
+ msgid "%pB: invalid link %u for reloc section %s (index %u)"
+ msgstr "%pB: неисправна веза „%u“ за одељак премештања „%s“ (индекс „%u“)"
+
+-#: elf.c:2466
++#: elf.c:2442
+ #, c-format
+ msgid "%pB: warning: secondary relocation section '%s' for section %pA found - ignoring"
+ msgstr "%pB: упозорење: нађох секундарни одељак премештања „%s“ за одељак „%pA“ – занемарујем"
+
+-#: elf.c:2552 elf.c:2567 elf.c:2578 elf.c:2591
++#: elf.c:2528 elf.c:2543 elf.c:2554 elf.c:2567
+ #, c-format
+ msgid "%pB: unknown type [%#x] section `%s'"
+ msgstr "%pB: непозната врста [%#x] одељак „%s“"
+
+-#: elf.c:3288
++#: elf.c:3265
+ #, c-format
+ msgid "%pB: error: alignment power %d of section `%pA' is too big"
+ msgstr "%pB: грешка: снага поравнања %d одељка „%pA“ је превелика"
+
+-#: elf.c:3321
++#: elf.c:3298
+ #, c-format
+ msgid "warning: section `%pA' type changed to PROGBITS"
+ msgstr "упозорење: врста „%pA“ одељка је измењена у „PROGBITS“"
+
+-#: elf.c:3805
++#: elf.c:3783
+ #, c-format
+ msgid "%pB: too many sections: %u"
+ msgstr "%pB: превише одељака: %u"
+
+-#: elf.c:3891
++#: elf.c:3869
+ #, c-format
+ msgid "%pB: sh_link of section `%pA' points to discarded section `%pA' of `%pB'"
+ msgstr "%pB: „sh_link“ одељка „%pA“ указује на одбачени одељак „%pA“ од „%pB“"
+
+-#: elf.c:3909
++#: elf.c:3887
+ #, c-format
+ msgid "%pB: sh_link of section `%pA' points to removed section `%pA' of `%pB'"
+ msgstr "%pB: „sh_link“ одељка „%pA“ указује на уклоњени одељак „%pA“ од „%pB“"
+
+-#: elf.c:4471
++#: elf.c:4455
+ #, c-format
+ msgid "%pB: GNU_MBIND section `%pA' has invalid sh_info field: %d"
+ msgstr "%pB: „GNU_MBIND“ одељак „%pA“ има неисправно „sh_info“ поље: %d"
+
+-#: elf.c:5065
++#: elf.c:4638
++msgid "%F%P: failed to size relative relocations\n"
++msgstr "%F%P: нисам успео на величину релативна премештања\n"
++
++#: elf.c:5062
+ #, c-format
+ msgid "%pB: TLS sections are not adjacent:"
+ msgstr "%pB: ТЛС одељци нису суседни:"
+
+-#: elf.c:5072
++#: elf.c:5069
+ #, c-format
+ msgid "\t TLS: %pA"
+ msgstr "\t ТЛС: %pA"
+
+-#: elf.c:5076
++#: elf.c:5073
+ #, c-format
+ msgid "\tnon-TLS: %pA"
+ msgstr "\tне-ТЛС: %pA"
+
+-#: elf.c:5672
++#: elf.c:5696
+ #, c-format
+ msgid "%pB: The first section in the PT_DYNAMIC segment is not the .dynamic section"
+ msgstr "%pB: Први одељак у подеоку „PT_DYNAMIC“ није „.dynamic“ одељак"
+
+-#: elf.c:5698
++#: elf.c:5722
+ #, c-format
+ msgid "%pB: not enough room for program headers, try linking with -N"
+ msgstr "%pB: нема довољно места за заглавље програм, пробајте да повежете са „-N“"
+
+-#: elf.c:5815
++#: elf.c:5839
+ #, c-format
+ msgid "%pB: section %pA lma %#<PRIx64> adjusted to %#<PRIx64>"
+ msgstr "%pB: одељак „%pA lma %#<PRIx64>“ је дотеран на %#<PRIx64>"
+@@ -1248,172 +1274,177 @@ msgstr "%pB: одељак „%pA lma %#<PRIx64>“ је дотеран на %#<P
+ #. The fix for this error is usually to edit the linker script being
+ #. used and set up the program headers manually. Either that or
+ #. leave room for the headers at the start of the SECTIONS.
+-#: elf.c:5952
++#: elf.c:5976
+ #, c-format
+ msgid "%pB: error: PHDR segment not covered by LOAD segment"
+ msgstr "%pB: грешка: „PHDR“ подеок није покривен „LOAD“ подеоком"
+
+-#: elf.c:5992
++#: elf.c:6016
+ #, c-format
+ msgid "%pB: section `%pA' can't be allocated in segment %d"
+ msgstr "%pB: одељак „%pA“ се не може доделити у подеоку %d"
+
+-#: elf.c:6129
++#: elf.c:6156
+ #, c-format
+ msgid "%pB: warning: allocated section `%s' not in segment"
+ msgstr "%pB: упозорење: додељени одељак „%s“ није у подеоку"
+
+-#: elf.c:6290
++#: elf.c:6292
++#, c-format
++msgid "%pB: warning: unable to allocate any sections to PT_GNU_RELRO segment"
++msgstr "%pB: упозорење: не могу да доделим ниједан одељак на „PT_GNU_RELRO“ подеок"
++
++#: elf.c:6322
+ #, c-format
+ msgid "%pB: error: non-load segment %d includes file header and/or program header"
+ msgstr "%pB: грешка: подеок не-учитавања %d укључује заглавље датотеке и/или заглавље програма"
+
+-#: elf.c:6799
++#: elf.c:6829
+ #, c-format
+ msgid "%pB: symbol `%s' required but not present"
+ msgstr "%pB: симбол „%s“ је потребан али није присутан"
+
+-#: elf.c:7151
++#: elf.c:7186
+ #, c-format
+ msgid "%pB: warning: empty loadable segment detected at vaddr=%#<PRIx64>, is this intentional?"
+ msgstr "%pB: упозорење: празан подеок који се може учитати откривен је на „vaddr=%#<PRIx64>“, да ли је то намеравано?"
+
+-#: elf.c:7779
++#: elf.c:7851
+ #, c-format
+ msgid "%pB: warning: segment alignment of %#<PRIx64> is too large"
+ msgstr "%pB: упозорење: поравнање подеока за „%#<PRIx64>“ је превелико"
+
+-#: elf.c:8292
++#: elf.c:8359
+ #, c-format
+ msgid "%pB: Unable to handle section index %x in ELF symbol. Using ABS instead."
+ msgstr "%pB: Не могу да рукујем са индексом одељка %x у ЕЛФ симболу. Користићу „ABS“."
+
+-#: elf.c:8322
++#: elf.c:8389
+ #, c-format
+ msgid "unable to find equivalent output section for symbol '%s' from section '%s'"
+ msgstr "не могу да нађем еквивалентан одељак излаза за симбол „%s“ из одељка „%s“"
+
+-#: elf.c:8735
++#: elf.c:8799
+ #, c-format
+ msgid "%pB: .gnu.version_r invalid entry"
+ msgstr "%pB: „.gnu.version_r“ неисправан унос"
+
+-#: elf.c:8868
++#: elf.c:8932
+ #, c-format
+ msgid "%pB: .gnu.version_d invalid entry"
+ msgstr "%pB: „.gnu.version_d“ неисправан унос"
+
+-#: elf.c:9325
++#: elf.c:9389
+ #, c-format
+ msgid "%pB:%pA: error: attempting to write into an unallocated compressed section"
+ msgstr "%pB:%pA: грешка: покушавам да пишем у недодељеном сажетом одељку"
+
+-#: elf.c:9334
++#: elf.c:9398
+ #, c-format
+ msgid "%pB:%pA: error: attempting to write over the end of the section"
+ msgstr "%pB:%pA: грешка: покушавам да пишем преко краја одељка"
+
+-#: elf.c:9345
++#: elf.c:9409
+ #, c-format
+ msgid "%pB:%pA: error: attempting to write section into an empty buffer"
+ msgstr "%pB:%pA: грешка: покушавам да упишем одељак у празну међумеморију"
+
+-#: elf.c:10246
++#: elf.c:10317
+ #, c-format
+ msgid "%pB: warning: win32pstatus %s of size %lu bytes is too small"
+ msgstr "%pB: упозорење: „win32pstatus %s“ величине %lu бајта је превише мало"
+
+-#: elf.c:10324
++#: elf.c:10395
+ #, c-format
+ msgid "%pB: win32pstatus NOTE_INFO_MODULE of size %lu is too small to contain a name of size %u"
+ msgstr "%pB: „win32pstatus NOTE_INFO_MODULE“ величине %lu је превише мало да би садржало назив величине %u"
+
+-#: elf.c:12633
++#: elf.c:12977
+ msgid "GNU_MBIND section is supported only by GNU and FreeBSD targets"
+ msgstr "„GNU_MBIND“ одељак је подржан само Гну и ФриБСД метама"
+
+-#: elf.c:12636
++#: elf.c:12980
+ msgid "symbol type STT_GNU_IFUNC is supported only by GNU and FreeBSD targets"
+ msgstr "врста симбола „STT_GNU_IFUNC“ је подржана само Гну и ФриБСД метама"
+
+-#: elf.c:12639
++#: elf.c:12983
+ msgid "symbol binding STB_GNU_UNIQUE is supported only by GNU and FreeBSD targets"
+ msgstr "свеза симбола „STB_GNU_UNIQUE“ је подржана само Гну и ФриБСД метама"
+
+-#: elf.c:12642
++#: elf.c:12986
+ msgid "GNU_RETAIN section is supported only by GNU and FreeBSD targets"
+ msgstr "„GNU_RETAIN“ одељак је подржан само Гну и ФриБСД метама"
+
+-#: elf.c:12850 elf64-sparc.c:123 elfcode.h:1504
++#: elf.c:13194 elf64-sparc.c:123 elfcode.h:1505
+ #, c-format
+ msgid "%pB(%pA): relocation %d has invalid symbol index %ld"
+ msgstr "%pB(%pA): премештање „%d“ има неисправан индекс симбола %ld"
+
+-#: elf.c:12925
++#: elf.c:13269
+ #, c-format
+ msgid "%pB(%pA): link section cannot be set because the output file does not have a symbol table"
+ msgstr "%pB(%pA): одељак везе се не може подесити зато што излазна датотека нема табелу симбола"
+
+-#: elf.c:12937
++#: elf.c:13281
+ #, c-format
+ msgid "%pB(%pA): info section index is invalid"
+ msgstr "%pB(%pA): индекс одељка података није исправан"
+
+-#: elf.c:12951
++#: elf.c:13295
+ #, c-format
+ msgid "%pB(%pA): info section index cannot be set because the section is not in the output"
+ msgstr "%pB(%pA): индекс одељка података се не може подесити зато што одељак није у излазу"
+
+-#: elf.c:13026
++#: elf.c:13370
+ #, c-format
+ msgid "%pB(%pA): error: secondary reloc section processed twice"
+ msgstr "%pB(%pA): грешка: секундарни одељак премештаја је обрађен два пута"
+
+-#: elf.c:13038
++#: elf.c:13382
+ #, c-format
+ msgid "%pB(%pA): error: secondary reloc section has zero sized entries"
+ msgstr "%pB(%pA): грешка: секундарни одељак премештаја има уносе нулте величине"
+
+-#: elf.c:13049
++#: elf.c:13393
+ #, c-format
+ msgid "%pB(%pA): error: secondary reloc section has non-standard sized entries"
+ msgstr "%pB(%pA): грешка: секундарни одељак премештаја има уносе неуобичајене величине"
+
+-#: elf.c:13061
++#: elf.c:13405
+ #, c-format
+ msgid "%pB(%pA): error: secondary reloc section is empty!"
+ msgstr "%pB(%pA): грешка: секундарни одељак премештаја је празан!"
+
+-#: elf.c:13084
++#: elf.c:13428
+ #, c-format
+ msgid "%pB(%pA): error: internal relocs missing for secondary reloc section"
+ msgstr "%pB(%pA): грешка: унутрашњи премештаји недостају за секундарни одељак премештаја"
+
+-#: elf.c:13103
++#: elf.c:13447
+ #, c-format
+ msgid "%pB(%pA): error: reloc table entry %u is empty"
+ msgstr "%pB(%pA): грешка: унос табеле премештаја %u је празан"
+
+-#: elf.c:13128
++#: elf.c:13472
+ #, c-format
+ msgid "%pB(%pA): error: secondary reloc %u references a missing symbol"
+ msgstr "%pB(%pA): грешка: секундарни премштај %u упућује на недостајући симбол"
+
+-#: elf.c:13145
++#: elf.c:13489
+ #, c-format
+ msgid "%pB(%pA): error: secondary reloc %u references a deleted symbol"
+ msgstr "%pB(%pA): грешка: секундарни премштај %u упућује на обрисан симбол"
+
+-#: elf.c:13158
++#: elf.c:13502
+ #, c-format
+ msgid "%pB(%pA): error: secondary reloc %u is of an unknown type"
+ msgstr "%pB(%pA): грешка: секундарни премештај %u је непознате врсте"
+
+ #. Ignore init flag - it may not be set, despite the flags field
+ #. containing valid data.
+-#: elf32-arc.c:455 elf32-arm.c:15047 elf32-frv.c:6612 elf32-iq2000.c:868
+-#: elf32-m32c.c:914 elf32-mt.c:560 elf32-rl78.c:1260 elf32-rx.c:3206
+-#: elf32-visium.c:844 elf64-ppc.c:5347 elfnn-aarch64.c:7334
++#: elf32-arc.c:455 elf32-arm.c:15095 elf32-frv.c:6612 elf32-iq2000.c:868
++#: elf32-m32c.c:914 elf32-mt.c:560 elf32-rl78.c:1275 elf32-rx.c:3217
++#: elf32-visium.c:844 elf64-ppc.c:5507 elfnn-aarch64.c:7337
+ #, c-format
+ msgid "private flags = 0x%lx:"
+ msgstr "приватне заставице = 0x%lx:"
+@@ -1459,7 +1490,7 @@ msgid "error: attempting to link %pB with a binary %pB of different architecture
+ msgstr "грешка: покушавам да увежем „%pB“ са извршном „%pB“ другачије архитектуре"
+
+ #: elf32-arc.c:938 elf32-iq2000.c:844 elf32-m32c.c:889 elf32-m68hc1x.c:1390
+-#: elf32-ppc.c:3866 elf64-sparc.c:722 elfxx-mips.c:15568
++#: elf32-ppc.c:3881 elf64-sparc.c:722 elfxx-mips.c:15584
+ #, c-format
+ msgid "%pB: uses different e_flags (%#x) fields than previous modules (%#x)"
+ msgstr "%pB: користи другачија поља „e_flags“ (%#x) него претходни модули (%#x)"
+@@ -1486,33 +1517,33 @@ msgstr "%pB(%pA+%#<PRIx64>): „CMEM“ премештање на „%s+%#<PRIx6
+ msgid "GOT and PLT relocations cannot be fixed with a non dynamic linker"
+ msgstr "„GOT“ и „PLT“ премештања се не могу поправити са не динамичким увезивачем"
+
+-#: elf32-arc.c:1909 elf32-rl78.c:1098 elf32-rx.c:1475
++#: elf32-arc.c:1909 elf32-rx.c:1486
+ #, c-format
+ msgid "%pB(%pA): warning: unaligned access to symbol '%s' in the small data area"
+ msgstr "%pB(%pA): упозорење: непоравнати приступ ка симболу „%s“ области малих података"
+
+-#: elf32-arc.c:1914 elf32-rl78.c:1103 elf32-rx.c:1480
++#: elf32-arc.c:1914 elf32-rx.c:1491
+ #, c-format
+ msgid "%pB(%pA): internal error: out of range error"
+ msgstr "%pB(%pA): унутрашња грешка: изван опсега"
+
+-#: elf32-arc.c:1919 elf32-rl78.c:1108 elf32-rx.c:1485
++#: elf32-arc.c:1919 elf32-rx.c:1496
+ #, c-format
+ msgid "%pB(%pA): internal error: unsupported relocation error"
+ msgstr "%pB(%pA): унутрашња грешка: премештање није подржано"
+
+-#: elf32-arc.c:1924 elf32-rl78.c:1113 elf32-rx.c:1490
++#: elf32-arc.c:1924 elf32-rx.c:1501
+ #, c-format
+ msgid "%pB(%pA): internal error: dangerous relocation"
+ msgstr "%pB(%pA): унутрашња грешка: опасно премештање"
+
+-#: elf32-arc.c:1929 elf32-rl78.c:1118 elf32-rx.c:1495
++#: elf32-arc.c:1929 elf32-rx.c:1506
+ #, c-format
+ msgid "%pB(%pA): internal error: unknown error"
+ msgstr "%pB(%pA): унутрашња грешка: непозната грешка"
+
+-#: elf32-arc.c:2023 elf32-arc.c:2091 elf32-arm.c:15502 elf32-metag.c:2251
+-#: elf32-nds32.c:5494 elfnn-aarch64.c:7741 elfnn-riscv.c:617
++#: elf32-arc.c:2023 elf32-arc.c:2091 elf32-arm.c:15550 elf32-metag.c:2251
++#: elf32-nds32.c:5489 elfnn-aarch64.c:7744 elfnn-riscv.c:617
+ #, c-format
+ msgid "%pB: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"
+ msgstr "%pB: премештање „%s“ наспрам „%s“ се не може користити приликом стварања дељеног објекта; поново преведите са „-fPIC“"
+@@ -1527,596 +1558,597 @@ msgstr "%pB: непознат атрибут „%d“ обавезног „ARC
+ msgid "warning: %pB: unknown ARC object attribute %d"
+ msgstr "упозорење: %pB: непознат атрибут „%d“ објекта „ARC“"
+
+-#: elf32-arm.c:4333 elf32-arm.c:4367 elf32-arm.c:4386 elf32-arm.c:4438
++#: elf32-arm.c:4334 elf32-arm.c:4368 elf32-arm.c:4387 elf32-arm.c:4439
+ #, c-format
+ msgid "%pB(%pA): warning: long branch veneers used in section with SHF_ARM_PURECODE section attribute is only supported for M-profile targets that implement the movw instruction"
+ msgstr "%pB(%pA): упозорење: дуге превлаке гране коришћене су у одељку са атрибутом „SHF_ARM_PURECODE“ одељком је подржана само за циљеве M-профила које примењују „movw“ инструкцију"
+
+-#: elf32-arm.c:4398 elf32-arm.c:4452 elf32-arm.c:9141 elf32-arm.c:9231
++#: elf32-arm.c:4399 elf32-arm.c:4453 elf32-arm.c:9142 elf32-arm.c:9232
+ #, c-format
+ msgid "%pB(%s): warning: interworking not enabled; first occurrence: %pB: %s call to %s"
+ msgstr "%pB(%s): упозорење: међудејство није укључено; прво појављивање: %pB: „%s“ позива „%s“"
+
+-#: elf32-arm.c:4578
++#: elf32-arm.c:4579
+ #, c-format
+ msgid "ERROR: CMSE stub (%s section) too far (%#<PRIx64>) from destination (%#<PRIx64>)"
+ msgstr "ГРЕШКА: „CMSE“ окрајак (одељак „%s“) је превише далеко (%#<PRIx64>) од пдредишта (%#<PRIx64>)"
+
+-#: elf32-arm.c:4747
++#: elf32-arm.c:4748
+ #, c-format
+ msgid "no address assigned to the veneers output section %s"
+ msgstr "ниједна адреса није додељена излазу превлаке одељка „%s“"
+
+-#: elf32-arm.c:4822 elf32-arm.c:6968 elf32-csky.c:3400 elf32-hppa.c:582
+-#: elf32-m68hc1x.c:164 elf32-metag.c:1180 elf32-nios2.c:2201 elf64-ppc.c:3827
+-#: elf64-ppc.c:13638 elfnn-aarch64.c:3187
++#: elf32-arm.c:4823 elf32-arm.c:6969 elf32-csky.c:3400 elf32-hppa.c:582
++#: elf32-m68hc1x.c:164 elf32-metag.c:1180 elf32-nios2.c:2201 elf64-ppc.c:3881
++#: elf64-ppc.c:14018 elfnn-aarch64.c:3187
+ #, c-format
+ msgid "%pB: cannot create stub entry %s"
+ msgstr "%pB: не могу да створим унос окрајка „%s“"
+
+-#: elf32-arm.c:5043 elf32-csky.c:3742 elf32-hppa.c:732 elf32-m68hc11.c:422
+-#: elf32-m68hc12.c:542 elf32-metag.c:3345 elf32-nios2.c:2494 elf64-ppc.c:11473
++#: elf32-arm.c:5044 elf32-csky.c:3742 elf32-hppa.c:732 elf32-m68hc11.c:422
++#: elf32-m68hc12.c:542 elf32-metag.c:3345 elf32-nios2.c:2494 elf64-ppc.c:11656
+ #: elfnn-aarch64.c:3256
+ msgid "%F%P: Could not assign '%pA' to an output section. Retry without --enable-non-contiguous-regions.\n"
+ msgstr "%F%P: Не могу да доделим „%pA“ излазном одељку. Покушајте без „--enable-non-contiguous-regions“.\n"
+
+-#: elf32-arm.c:6011
++#: elf32-arm.c:6012
+ #, c-format
+ msgid "%pB: special symbol `%s' only allowed for ARMv8-M architecture or later"
+ msgstr "%pB: специјални симбол „%s“ је дозвољен само за „ARMv8-M“ архитектуру или новију"
+
+-#: elf32-arm.c:6020
++#: elf32-arm.c:6021
+ #, c-format
+ msgid "%pB: invalid special symbol `%s'; it must be a global or weak function symbol"
+ msgstr "%pB: неисправан специјални симбол „%s“; мора бити општи или симбол слабе функције"
+
+-#: elf32-arm.c:6059
++#: elf32-arm.c:6060
+ #, c-format
+ msgid "%pB: invalid standard symbol `%s'; it must be a global or weak function symbol"
+ msgstr "%pB: неисправан стандардни симбол „%s“; мора бити општи или симбол слабе функције"
+
+-#: elf32-arm.c:6065
++#: elf32-arm.c:6066
+ #, c-format
+ msgid "%pB: absent standard symbol `%s'"
+ msgstr "%pB: недостаје стандардни симбол „%s“"
+
+-#: elf32-arm.c:6077
++#: elf32-arm.c:6078
+ #, c-format
+ msgid "%pB: `%s' and its special symbol are in different sections"
+ msgstr "%pB: „%s“ и њен специјални симбол су у различитим одељцима"
+
+-#: elf32-arm.c:6089
++#: elf32-arm.c:6090
+ #, c-format
+ msgid "%pB: entry function `%s' not output"
+ msgstr "%pB: функцја уноса „%s“ није излаз"
+
+-#: elf32-arm.c:6096
++#: elf32-arm.c:6097
+ #, c-format
+ msgid "%pB: entry function `%s' is empty"
+ msgstr "%pB: функцја уноса „%s“ је празна"
+
+-#: elf32-arm.c:6225
++#: elf32-arm.c:6226
+ #, c-format
+ msgid "%pB: --in-implib only supported for Secure Gateway import libraries"
+ msgstr "%pB: „--in-implib“ је подржана само за „Secure Gateway“ библиотеке уноса"
+
+-#: elf32-arm.c:6274
++#: elf32-arm.c:6275
+ #, c-format
+ msgid "%pB: invalid import library entry: `%s'; symbol should be absolute, global and refer to Thumb functions"
+ msgstr "%pB: неисправан унос библиотеке уноса: „%s“; симбол треба да буде апсолутни, општи и да се односи на „Thumb“ функције"
+
+-#: elf32-arm.c:6296
++#: elf32-arm.c:6297
+ #, c-format
+ msgid "entry function `%s' disappeared from secure code"
+ msgstr "функција уноса „%s“ је нестала из безбедног кода"
+
+-#: elf32-arm.c:6320
++#: elf32-arm.c:6321
+ #, c-format
+ msgid "`%s' refers to a non entry function"
+ msgstr "„%s“ упућује на не улазну функцију"
+
+-#: elf32-arm.c:6335
++#: elf32-arm.c:6336
+ #, c-format
+ msgid "%pB: visibility of symbol `%s' has changed"
+ msgstr "%pB: видљивост симбола „%s“ је измењена"
+
+-#: elf32-arm.c:6344
++#: elf32-arm.c:6345
+ #, c-format
+ msgid "%pB: incorrect size for symbol `%s'"
+ msgstr "%pB: неисправна величина за симбол „%s“"
+
+-#: elf32-arm.c:6363
++#: elf32-arm.c:6364
+ #, c-format
+ msgid "offset of veneer for entry function `%s' not a multiple of its size"
+ msgstr "померај превлаке за функцију уноса „%s“ није умножак величине"
+
+-#: elf32-arm.c:6383
++#: elf32-arm.c:6384
+ msgid "new entry function(s) introduced but no output import library specified:"
+ msgstr "нова функција уноса је пристигла али није наведена излазно улазна библиотека:"
+
+-#: elf32-arm.c:6391
++#: elf32-arm.c:6392
+ #, c-format
+ msgid "start address of `%s' is different from previous link"
+ msgstr "почетна адреса за „%s“ се разликује од претходне везе"
+
+-#: elf32-arm.c:7101 elf32-arm.c:7136
++#: elf32-arm.c:7102 elf32-arm.c:7137
+ #, c-format
+ msgid "unable to find %s glue '%s' for '%s'"
+ msgstr "не могу да нађем „%s“ лепак „%s“ за „%s“"
+
+-#: elf32-arm.c:7847
++#: elf32-arm.c:7848
+ #, c-format
+ msgid "%pB: BE8 images only valid in big-endian mode"
+ msgstr "%pB: „BE8“ слике су исправне само у режиму велике крајњости"
+
+ #. Give a warning, but do as the user requests anyway.
+-#: elf32-arm.c:8074
++#: elf32-arm.c:8075
+ #, c-format
+ msgid "%pB: warning: selected VFP11 erratum workaround is not necessary for target architecture"
+ msgstr "%pB: упозорење: изабрано решење „VFP11“ грешака није потребно за циљну архитектуру"
+
+-#: elf32-arm.c:8101
++#: elf32-arm.c:8102
+ #, c-format
+ msgid "%pB: warning: selected STM32L4XX erratum workaround is not necessary for target architecture"
+ msgstr "%pB: упозорење: изабрано решење „STM32L4XX“ грешака није потребно за циљну архитектуру"
+
+-#: elf32-arm.c:8637 elf32-arm.c:8657 elf32-arm.c:8724 elf32-arm.c:8743
++#: elf32-arm.c:8638 elf32-arm.c:8658 elf32-arm.c:8725 elf32-arm.c:8744
+ #, c-format
+ msgid "%pB: unable to find %s veneer `%s'"
+ msgstr "%pB: не могу да нађем „%s“ превлаку „%s“"
+
+-#: elf32-arm.c:8950
++#: elf32-arm.c:8951
+ #, c-format
+ msgid "%pB(%pA+%#x): error: multiple load detected in non-last IT block instruction: STM32L4XX veneer cannot be generated; use gcc option -mrestrict-it to generate only one instruction per IT block"
+ msgstr "%pB(%pA+%#x): грешка: вишеструко учитавање је откривено у не-последњој инструкцији „IT“ блока: „STM32L4XX“ превлака се не може створити; користите „gcc“ опцију „-mrestrict-it“ за стварање само једне инструкције по „IT“ блоку"
+
+-#: elf32-arm.c:9048
++#: elf32-arm.c:9049
+ #, c-format
+ msgid "invalid TARGET2 relocation type '%s'"
+ msgstr "неисправна врста „TARGET2“ премештања „%s“"
+
+ #. FIXME: We ought to be able to generate thumb-1 PLT
+ #. instructions...
+-#: elf32-arm.c:9818
++#: elf32-arm.c:9819
+ #, c-format
+ msgid "%pB: warning: thumb-1 mode PLT generation not currently supported"
+ msgstr "%pB: упозорење: „PLT“ стварање у „thumb-1“ режиму тренутно није подржано"
+
+-#: elf32-arm.c:10127 elf32-arm.c:10169
++#: elf32-arm.c:10128 elf32-arm.c:10170
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): unexpected %s instruction '%#lx' in TLS trampoline"
+ msgstr "%pB(%pA+%#<PRIx64>): неочекивана „%s“ инструкција „%#lx“ у „TLS“ трамбулини"
+
+-#: elf32-arm.c:10519
++#: elf32-arm.c:10520
+ msgid "shared object"
+ msgstr "дељени објекат"
+
+-#: elf32-arm.c:10522
++#: elf32-arm.c:10523
+ msgid "PIE executable"
+ msgstr "„PIE“ извршна"
+
+-#: elf32-arm.c:10525
++#: elf32-arm.c:10526
+ #, c-format
+ msgid "%pB: relocation %s against external or undefined symbol `%s' can not be used when making a %s; recompile with -fPIC"
+ msgstr "%pB: премештање „%s“ наспрам спољног или неодређеног симбола „%s“ се не може користити приликом стварања „%s“; поново преведите са „-fPIC“"
+
+-#: elf32-arm.c:10627 elf32-arm.c:11044
++#: elf32-arm.c:10628 elf32-arm.c:11045
+ #, c-format
+ msgid "%pB: warning: %s BLX instruction targets %s function '%s'"
+ msgstr "%pB: упозорење: инструкција „%s BLX“ циља на „%s“ функцију „%s“"
+
+-#: elf32-arm.c:11678
++#: elf32-arm.c:11679
+ #, c-format
+ msgid "%pB: expected symbol index in range 0..%lu but found local symbol with index %lu"
+ msgstr "%pB: очекивах индекс симбола у опсегу 0..%lu али нађох локални симбол са индексом %lu"
+
+-#: elf32-arm.c:11953 elf32-arm.c:11979
++#: elf32-arm.c:11954 elf32-arm.c:11980
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): unexpected %s instruction '%#lx' referenced by TLS_GOTDESC"
+ msgstr "%pB(%pA+%#<PRIx64>): неочекивана „%s“ инструкција „%#lx“ на коју упућује „TLS_GOTDESC“"
+
+-#: elf32-arm.c:12025 elf32-csky.c:4970 elf32-m68k.c:3733 elf32-metag.c:1913
++#: elf32-arm.c:12026 elf32-csky.c:4970 elf32-m68k.c:3733 elf32-metag.c:1913
+ #: elf32-nios2.c:4382
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): %s relocation not permitted in shared object"
+ msgstr "%pB(%pA+%#<PRIx64>): „%s“ премештање није допуштено у дељеним објектима"
+
+-#: elf32-arm.c:12239
++#: elf32-arm.c:12240
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): only ADD or SUB instructions are allowed for ALU group relocations"
+ msgstr "%pB(%pA+%#<PRIx64>): дозвољене су само „ADD“ или „SUB“ инструкције за премештања „ALU“ групе"
+
+-#: elf32-arm.c:12280 elf32-arm.c:12372 elf32-arm.c:12460 elf32-arm.c:12550
++#: elf32-arm.c:12281 elf32-arm.c:12373 elf32-arm.c:12461 elf32-arm.c:12551
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): overflow whilst splitting %#<PRIx64> for group relocation %s"
+ msgstr "%pB(%pA+%#<PRIx64>): прекорачење за време дељења %#<PRIx64> за премештање групе „%s“"
+
+-#: elf32-arm.c:12608 elf32-arm.c:12767
++#: elf32-arm.c:12609 elf32-arm.c:12768
+ msgid "local symbol index too big"
+ msgstr "индекс локалног симбола је превелик"
+
+-#: elf32-arm.c:12618 elf32-arm.c:12652
++#: elf32-arm.c:12619 elf32-arm.c:12653
+ msgid "no dynamic index information available"
+ msgstr "нема доступних података динамичког индекса"
+
+-#: elf32-arm.c:12660
++#: elf32-arm.c:12661
+ msgid "invalid dynamic index"
+ msgstr "неисправан динамички индекс"
+
+-#: elf32-arm.c:12777
++#: elf32-arm.c:12778
+ msgid "dynamic index information not available"
+ msgstr "подаци динамичког индекса нису доступни"
+
+-#: elf32-arm.c:13208 elf32-sh.c:3565
++#: elf32-arm.c:13209 elf32-sh.c:3565
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): %s relocation against SEC_MERGE section"
+ msgstr "%pB(%pA+%#<PRIx64>): „%s“ премештање наспрам „SEC_MERGE“ одељка"
+
+-#: elf32-arm.c:13321 elf32-m68k.c:3966 elf32-xtensa.c:2762
+-#: elfnn-aarch64.c:6831
++#: elf32-arm.c:13322 elf32-m68k.c:3966 elf32-xtensa.c:2772
++#: elfnn-aarch64.c:6834
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): %s used with TLS symbol %s"
+ msgstr "%pB(%pA+%#<PRIx64>): „%s“ је употребљено са „TLS“ симболом „%s“"
+
+-#: elf32-arm.c:13323 elf32-m68k.c:3968 elf32-xtensa.c:2764
+-#: elfnn-aarch64.c:6833
++#: elf32-arm.c:13324 elf32-m68k.c:3968 elf32-xtensa.c:2774
++#: elfnn-aarch64.c:6836
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): %s used with non-TLS symbol %s"
+ msgstr "%pB(%pA+%#<PRIx64>): „%s“ је употребљено са „не-TLS“ симболом „%s“"
+
+-#: elf32-arm.c:13406 elf32-tic6x.c:2649 elfnn-aarch64.c:7168
++#: elf32-arm.c:13407 elf32-tic6x.c:2649 elfnn-aarch64.c:7171
+ msgid "out of range"
+ msgstr "изван опсега"
+
+-#: elf32-arm.c:13410 elf32-nios2.c:4516 elf32-pru.c:936 elf32-tic6x.c:2653
+-#: elfnn-aarch64.c:7172
++#: elf32-arm.c:13411 elf32-nios2.c:4516 elf32-pru.c:936 elf32-tic6x.c:2653
++#: elfnn-aarch64.c:7175
+ msgid "unsupported relocation"
+ msgstr "неподржано премештање"
+
+-#: elf32-arm.c:13418 elf32-nios2.c:4526 elf32-pru.c:946 elf32-tic6x.c:2661
+-#: elfnn-aarch64.c:7180
++#: elf32-arm.c:13419 elf32-nios2.c:4526 elf32-pru.c:946 elf32-tic6x.c:2661
++#: elfnn-aarch64.c:7183
+ msgid "unknown error"
+ msgstr "непозната грешка"
+
+-#: elf32-arm.c:13898
++#: elf32-arm.c:13901
+ #, c-format
+ msgid "warning: not setting interworking flag of %pB since it has already been specified as non-interworking"
+ msgstr "упозорење: нисам подесио заставицу међудејства за „%pB“ пошто је већ наведен као не-међудејствено"
+
+-#: elf32-arm.c:13902
++#: elf32-arm.c:13905
+ #, c-format
+ msgid "warning: clearing the interworking flag of %pB due to outside request"
+ msgstr "упозорење: уклањам заставицу међудејства за „%pB“ услед захтева споља"
+
+-#: elf32-arm.c:13947
++#: elf32-arm.c:13950
+ #, c-format
+ msgid "warning: clearing the interworking flag of %pB because non-interworking code in %pB has been linked with it"
+ msgstr "упозорење: чистим заставицу међудејства за „%pB“ зато што је немеђудејствени код у „%pB“ повезан са њим"
+
+-#: elf32-arm.c:14034
++#: elf32-arm.c:14037
+ #, c-format
+ msgid "%pB: unknown mandatory EABI object attribute %d"
+ msgstr "%pB: обавезан „%d“ атрибут „EABI“ објекта није познат"
+
+-#: elf32-arm.c:14042
++#: elf32-arm.c:14045
+ #, c-format
+ msgid "warning: %pB: unknown EABI object attribute %d"
+ msgstr "упозорење: %pB: „%d“ атрибут „EABI“ објекта није познат"
+
+-#: elf32-arm.c:14342
++#: elf32-arm.c:14380
+ #, c-format
+ msgid "error: %pB: unknown CPU architecture"
+ msgstr "грешка: %pB: непозната архитектура процесора"
+
+-#: elf32-arm.c:14380 elf32-nios2.c:2950
++#: elf32-arm.c:14418 elf32-nios2.c:2950
+ #, c-format
+ msgid "error: %pB: conflicting CPU architectures %d/%d"
+ msgstr "грешка: %pB: архитектуре процесора %d/%d су у сукобу"
+
+-#: elf32-arm.c:14477
++#: elf32-arm.c:14515
+ #, c-format
+ msgid "Error: %pB has both the current and legacy Tag_MPextension_use attributes"
+ msgstr "Грешка: „%pB“ поседује и тренутни и стари „Tag_MPextension_use“ атрибут"
+
+-#: elf32-arm.c:14506
++#: elf32-arm.c:14544
+ #, c-format
+ msgid "error: %pB uses VFP register arguments, %pB does not"
+ msgstr "грешка: „%pB“ користи аргументе „VFP“ регистра, а „%pB“ не"
+
+-#: elf32-arm.c:14665
++#: elf32-arm.c:14713
+ #, c-format
+ msgid "error: %pB: unable to merge virtualization attributes with %pB"
+ msgstr "грешка: %pB: не могу да спојим атрибуте виртуелизације са „%pB“"
+
+-#: elf32-arm.c:14691
++#: elf32-arm.c:14739
+ #, c-format
+ msgid "error: %pB: conflicting architecture profiles %c/%c"
+ msgstr "грешка: %pB: У сукобу су профили архитектуре „%c/%c“"
+
+-#: elf32-arm.c:14830
++#: elf32-arm.c:14878
+ #, c-format
+ msgid "warning: %pB: conflicting platform configuration"
+ msgstr "упозорење: %pB: подешавање платформе је у сукобу"
+
+-#: elf32-arm.c:14839
++#: elf32-arm.c:14887
+ #, c-format
+ msgid "error: %pB: conflicting use of R9"
+ msgstr "грешка: %pB: у сукобу је коришћење „R9“"
+
+-#: elf32-arm.c:14851
++#: elf32-arm.c:14899
+ #, c-format
+ msgid "error: %pB: SB relative addressing conflicts with use of R9"
+ msgstr "грешка: %pB: релативно „SB“ адресирање је у сукобу са коришћењем „R9“"
+
+-#: elf32-arm.c:14864
++#: elf32-arm.c:14912
+ #, c-format
+ msgid "warning: %pB uses %u-byte wchar_t yet the output is to use %u-byte wchar_t; use of wchar_t values across objects may fail"
+ msgstr "упозорење: „%pB“ користи %u-бајтни „wchar_t“ онда ће излаз да користи %u-бајтни „wchar_t“; коришћење „wchar_t“ вредности кроз објекте можда неће успети"
+
+-#: elf32-arm.c:14895
++#: elf32-arm.c:14943
+ #, c-format
+ msgid "warning: %pB uses %s enums yet the output is to use %s enums; use of enum values across objects may fail"
+ msgstr "упозорење: „%pB“ користи %s набрајања онда ће излаз да користи %s набрајања; коришћење вредности набрајања кроз објекте можда неће успети"
+
+-#: elf32-arm.c:14907
++#: elf32-arm.c:14955
+ #, c-format
+ msgid "error: %pB uses iWMMXt register arguments, %pB does not"
+ msgstr "грешка: „%pB“ користи аргументе „iWMMXt“ регистра, а „%pB“ не"
+
+-#: elf32-arm.c:14924
++#: elf32-arm.c:14972
+ #, c-format
+ msgid "error: fp16 format mismatch between %pB and %pB"
+ msgstr "грешка: „fp16“ запис није исти за „%pB“ и „%pB“"
+
+-#: elf32-arm.c:14960
++#: elf32-arm.c:15008
+ #, c-format
+ msgid "%pB has both the current and legacy Tag_MPextension_use attributes"
+ msgstr "„%pB“ поседује и тренутни и стари „Tag_MPextension_use“ атрибут"
+
+-#: elf32-arm.c:15056
++#: elf32-arm.c:15104
+ #, c-format
+ msgid " [interworking enabled]"
+ msgstr " [међудејство је укључено]"
+
+-#: elf32-arm.c:15064
++#: elf32-arm.c:15112
+ #, c-format
+ msgid " [VFP float format]"
+ msgstr " [„VFP“ запис децималног броја]"
+
+-#: elf32-arm.c:15066
++#: elf32-arm.c:15114
+ #, c-format
+ msgid " [Maverick float format]"
+ msgstr " [„Maverick“ запис децималног броја]"
+
+-#: elf32-arm.c:15068
++#: elf32-arm.c:15116
+ #, c-format
+ msgid " [FPA float format]"
+ msgstr " [„FPA“ запис децималног броја]"
+
+-#: elf32-arm.c:15071
++#: elf32-arm.c:15119
+ #, c-format
+ msgid " [floats passed in float registers]"
+ msgstr " [децималне вредности су прослеђене у регистре децималних вредности]"
+
+-#: elf32-arm.c:15074 elf32-arm.c:15160
++#: elf32-arm.c:15122 elf32-arm.c:15208
+ #, c-format
+ msgid " [position independent]"
+ msgstr " [независтан од положаја]"
+
+-#: elf32-arm.c:15077
++#: elf32-arm.c:15125
+ #, c-format
+ msgid " [new ABI]"
+ msgstr " [нови „ABI“]"
+
+-#: elf32-arm.c:15080
++#: elf32-arm.c:15128
+ #, c-format
+ msgid " [old ABI]"
+ msgstr " [стари „ABI“]"
+
+-#: elf32-arm.c:15083
++#: elf32-arm.c:15131
+ #, c-format
+ msgid " [software FP]"
+ msgstr " [логички покретни зарез]"
+
+-#: elf32-arm.c:15092
++#: elf32-arm.c:15140
+ #, c-format
+ msgid " [Version1 EABI]"
+ msgstr " [Издање1 „EABI“]"
+
+-#: elf32-arm.c:15095 elf32-arm.c:15106
++#: elf32-arm.c:15143 elf32-arm.c:15154
+ #, c-format
+ msgid " [sorted symbol table]"
+ msgstr " [табела сређених симбола]"
+
+-#: elf32-arm.c:15097 elf32-arm.c:15108
++#: elf32-arm.c:15145 elf32-arm.c:15156
+ #, c-format
+ msgid " [unsorted symbol table]"
+ msgstr " [табела несређених симбола]"
+
+-#: elf32-arm.c:15103
++#: elf32-arm.c:15151
+ #, c-format
+ msgid " [Version2 EABI]"
+ msgstr " [Издање2 „EABI“]"
+
+-#: elf32-arm.c:15111
++#: elf32-arm.c:15159
+ #, c-format
+ msgid " [dynamic symbols use segment index]"
+ msgstr " [динамички симболи користе индекс сегмента]"
+
+-#: elf32-arm.c:15114
++#: elf32-arm.c:15162
+ #, c-format
+ msgid " [mapping symbols precede others]"
+ msgstr " [мапирање симбола претходи другима]"
+
+-#: elf32-arm.c:15121
++#: elf32-arm.c:15169
+ #, c-format
+ msgid " [Version3 EABI]"
+ msgstr " [Издање3 „EABI“]"
+
+-#: elf32-arm.c:15125
++#: elf32-arm.c:15173
+ #, c-format
+ msgid " [Version4 EABI]"
+ msgstr " [Издање4 „EABI“]"
+
+-#: elf32-arm.c:15129
++#: elf32-arm.c:15177
+ #, c-format
+ msgid " [Version5 EABI]"
+ msgstr " [Издање5 „EABI“]"
+
+-#: elf32-arm.c:15132
++#: elf32-arm.c:15180
+ #, c-format
+ msgid " [soft-float ABI]"
+ msgstr " [„ABI“ софтверског покретног зареза]"
+
+-#: elf32-arm.c:15135
++#: elf32-arm.c:15183
+ #, c-format
+ msgid " [hard-float ABI]"
+ msgstr " [„ABI“ хардверског покретног зареза]"
+
+-#: elf32-arm.c:15141
++#: elf32-arm.c:15189
+ #, c-format
+ msgid " [BE8]"
+ msgstr " [BE8]"
+
+-#: elf32-arm.c:15144
++#: elf32-arm.c:15192
+ #, c-format
+ msgid " [LE8]"
+ msgstr " [LE8]"
+
+-#: elf32-arm.c:15150
++#: elf32-arm.c:15198
+ #, c-format
+ msgid " <EABI version unrecognised>"
+ msgstr " <Непознато „EABI“ издање>"
+
+-#: elf32-arm.c:15157
++#: elf32-arm.c:15205
+ #, c-format
+ msgid " [relocatable executable]"
+ msgstr " [преместива извршна]"
+
+-#: elf32-arm.c:15163
++#: elf32-arm.c:15211
+ #, c-format
+ msgid " [FDPIC ABI supplement]"
+ msgstr " [„FDPIC ABI“ додатак]"
+
+-#: elf32-arm.c:15168 elfnn-aarch64.c:7337
++#: elf32-arm.c:15216 elfnn-aarch64.c:7340
+ #, c-format
+ msgid " <Unrecognised flag bits set>"
+ msgstr " <Непознат скуп битова заставице>"
+
+-#: elf32-arm.c:15285 elf32-arm.c:15419 elf32-i386.c:1524 elf32-s390.c:923
+-#: elf32-tic6x.c:2724 elf32-tilepro.c:1435 elf32-xtensa.c:1094
+-#: elf64-s390.c:845 elf64-x86-64.c:1900 elfxx-sparc.c:1386 elfxx-tilegx.c:1662
+-#: elfnn-aarch64.c:7608 elfnn-riscv.c:660
++#: elf32-arm.c:15333 elf32-arm.c:15467 elf32-i386.c:1511 elf32-s390.c:923
++#: elf32-tic6x.c:2724 elf32-tilepro.c:1435 elf32-xtensa.c:1102
++#: elf64-s390.c:845 elf64-x86-64.c:1882 elfxx-sparc.c:1386 elfxx-tilegx.c:1662
++#: elfxx-x86.c:953 elfnn-aarch64.c:7611 elfnn-loongarch.c:604
++#: elfnn-riscv.c:660
+ #, c-format
+ msgid "%pB: bad symbol index: %d"
+ msgstr "%pB: лош индекс симбола: %d"
+
+-#: elf32-arm.c:15675
++#: elf32-arm.c:15723
+ #, c-format
+ msgid "FDPIC does not yet support %s relocation to become dynamic for executable"
+ msgstr "„FDPIC“ још увек не подржава „%s“ премештање да би постао динамички за извршне"
+
+-#: elf32-arm.c:16936
++#: elf32-arm.c:16984
+ #, c-format
+ msgid "errors encountered processing file %pB"
+ msgstr "наиђох на грешке током обраде датотеке „%pB“"
+
+-#: elf32-arm.c:17309 elflink.c:12991 elflink.c:13038
++#: elf32-arm.c:17357 elflink.c:13186 elflink.c:13233
+ #, c-format
+ msgid "could not find section %s"
+ msgstr "не могу да нађем одељак „%s“"
+
+-#: elf32-arm.c:18230
++#: elf32-arm.c:18278
+ #, c-format
+ msgid "%pB: Number of symbols in input file has increased from %lu to %u\n"
+ msgstr "%pB: Број симбола у улазној датотеци се повећао са %lu на %u\n"
+
+-#: elf32-arm.c:18494
++#: elf32-arm.c:18542
+ #, c-format
+ msgid "%pB: error: Cortex-A8 erratum stub is allocated in unsafe location"
+ msgstr "%pB: грешка: окрајак грешке Кортекса А8 је додељен небезбедној локацији"
+
+ #. There's not much we can do apart from complain if this
+ #. happens.
+-#: elf32-arm.c:18521
++#: elf32-arm.c:18569
+ #, c-format
+ msgid "%pB: error: Cortex-A8 erratum stub out of range (input file too large)"
+ msgstr "%pB: грешка: окрајак грешке Кортекса А8 је ван опсега (улазна датотека је превелика)"
+
+-#: elf32-arm.c:19348 elf32-arm.c:19370
++#: elf32-arm.c:19396 elf32-arm.c:19418
+ #, c-format
+ msgid "%pB: error: VFP11 veneer out of range"
+ msgstr "%pB: грешка: „VFP11“ превлака је ван опсега"
+
+-#: elf32-arm.c:19421
++#: elf32-arm.c:19469
+ #, c-format
+ msgid "%pB(%#<PRIx64>): error: cannot create STM32L4XX veneer; jump out of range by %<PRId64> bytes; cannot encode branch instruction"
+ msgstr "%pB(%#<PRIx64>): грешка: не могу да створим „STM32L4XX“ превлаку; искочих из опсега за %<PRId64> бајта; не могу да декодирам инструкцију гране"
+
+-#: elf32-arm.c:19460
++#: elf32-arm.c:19508
+ #, c-format
+ msgid "%pB: error: cannot create STM32L4XX veneer"
+ msgstr "%pB: грешка: не могу да створим „STM32L4XX“ превлаку"
+
+-#: elf32-arm.c:20544
++#: elf32-arm.c:20590
+ #, c-format
+ msgid "error: %pB is already in final BE8 format"
+ msgstr "грешка: „%pB“ је већ у завршном запису „BE8“"
+
+-#: elf32-arm.c:20620
++#: elf32-arm.c:20666
+ #, c-format
+ msgid "error: source object %pB has EABI version %d, but target %pB has EABI version %d"
+ msgstr "грешка: изворни објекат „%pB“ садржи „EABI“ издање %d, али циљни „%pB“ има „EABI“ издање %d"
+
+-#: elf32-arm.c:20635
++#: elf32-arm.c:20681
+ #, c-format
+ msgid "error: %pB is compiled for APCS-%d, whereas target %pB uses APCS-%d"
+ msgstr "грешка: „%pB“ је преведен за „APCS-%d“, док циљни „%pB“ користи „APCS-%d“"
+
+-#: elf32-arm.c:20645
++#: elf32-arm.c:20691
+ #, c-format
+ msgid "error: %pB passes floats in float registers, whereas %pB passes them in integer registers"
+ msgstr "грешка: „%pB“ прослеђује децималне вредности у регистре децималних, док их „%pB“ прослеђује у регистре целих вредности"
+
+-#: elf32-arm.c:20649
++#: elf32-arm.c:20695
+ #, c-format
+ msgid "error: %pB passes floats in integer registers, whereas %pB passes them in float registers"
+ msgstr "грешка: „%pB“ прослеђује децималне вредности у регистре целих, док их „%pB“ прослеђује у регистре децималних вредности"
+
+-#: elf32-arm.c:20659 elf32-arm.c:20663 elf32-arm.c:20673
++#: elf32-arm.c:20705 elf32-arm.c:20709 elf32-arm.c:20719
+ #, c-format
+ msgid "error: %pB uses %s instructions, whereas %pB does not"
+ msgstr "грешка: „%pB“ користи „%s“ инструкције, али „%pB“ не"
+
+-#: elf32-arm.c:20677
++#: elf32-arm.c:20723
+ #, c-format
+ msgid "error: %pB does not use %s instructions, whereas %pB does"
+ msgstr "грешка: „%pB“ не користи „%s“ инструкције, али „%pB“ да"
+
+-#: elf32-arm.c:20696
++#: elf32-arm.c:20742
+ #, c-format
+ msgid "error: %pB uses software FP, whereas %pB uses hardware FP"
+ msgstr "грешка: „%pB“ користи софтверски покретни зарез, док „%pB“ користи хардверски"
+
+-#: elf32-arm.c:20700
++#: elf32-arm.c:20746
+ #, c-format
+ msgid "error: %pB uses hardware FP, whereas %pB uses software FP"
+ msgstr "грешка: „%pB“ користи хардверски покретни зарез, док „%pB“ користи софтверски"
+
+-#: elf32-arm.c:20714
++#: elf32-arm.c:20760
+ #, c-format
+ msgid "warning: %pB supports interworking, whereas %pB does not"
+ msgstr "упозорење: „%pB“ подржава међудејство, док га „%pB“ не подржава"
+
+-#: elf32-arm.c:20720
++#: elf32-arm.c:20766
+ #, c-format
+ msgid "warning: %pB does not support interworking, whereas %pB does"
+ msgstr "упозорење: „%pB“ не подржава међудејство, док га „%pB“ подржава"
+
+-#: elf32-avr.c:1516 elf32-bfin.c:3139 elf32-cris.c:2042 elf32-epiphany.c:573
++#: elf32-avr.c:1516 elf32-bfin.c:3145 elf32-cris.c:2042 elf32-epiphany.c:573
+ #: elf32-fr30.c:602 elf32-frv.c:4057 elf32-ft32.c:501 elf32-ip2k.c:1488
+ #: elf32-iq2000.c:699 elf32-m32c.c:632 elf32-mep.c:530 elf32-metag.c:1992
+-#: elf32-moxie.c:296 elf32-msp430.c:1514 elf32-mt.c:406 elf32-or1k.c:1869
++#: elf32-moxie.c:296 elf32-msp430.c:1514 elf32-mt.c:406 elf32-or1k.c:1881
+ #: elf32-tilepro.c:3380 elf32-v850.c:2302 elf32-visium.c:688
+ #: elf32-xstormy16.c:938 elf64-bpf.c:561 elf64-mmix.c:1549 elfxx-tilegx.c:3750
+ msgid "internal error: dangerous relocation"
+@@ -2127,82 +2159,82 @@ msgstr "унутрашња грешка: опасно премештање"
+ msgid "cannot create stub entry %s"
+ msgstr "не могу да створим унос окрајка „%s“"
+
+-#: elf32-bfin.c:107 elf32-bfin.c:363
++#: elf32-bfin.c:108 elf32-bfin.c:367
+ msgid "relocation should be even number"
+ msgstr "премештање треба бити паран број"
+
+-#: elf32-bfin.c:1587
++#: elf32-bfin.c:1593
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): unresolvable relocation against symbol `%s'"
+ msgstr "%pB(%pA+%#<PRIx64>): нерешиво премештање наспрам симбола „%s“"
+
+-#: elf32-bfin.c:1619 elf32-i386.c:3466 elf32-m68k.c:4006 elf32-s390.c:3138
+-#: elf64-s390.c:3087 elf64-x86-64.c:4137
++#: elf32-bfin.c:1625 elf32-i386.c:3466 elf32-m68k.c:4006 elf32-s390.c:3138
++#: elf64-s390.c:3087 elf64-x86-64.c:4139
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): reloc against `%s': error %d"
+ msgstr "%pB(%pA+%#<PRIx64>): премештање наспрам „%s“: грешка %d"
+
+-#: elf32-bfin.c:2645
++#: elf32-bfin.c:2651
+ #, c-format
+ msgid "%pB: relocation at `%pA+%#<PRIx64>' references symbol `%s' with nonzero addend"
+ msgstr "%pB: премештање на „%pA+%#<PRIx64>“ ствара упуту симбола „%s“ са не-нултим сабирком"
+
+-#: elf32-bfin.c:2662
++#: elf32-bfin.c:2668
+ msgid "relocation references symbol not defined in the module"
+ msgstr "премештање упућује на симбол који није дефинисан у модулу"
+
+-#: elf32-bfin.c:2760
++#: elf32-bfin.c:2766
+ msgid "R_BFIN_FUNCDESC references dynamic symbol with nonzero addend"
+ msgstr "„R_BFIN_FUNCDESC“ ствара упуту динамичког симбола са не-нултим сабирком"
+
+-#: elf32-bfin.c:2800 elf32-bfin.c:2921
++#: elf32-bfin.c:2806 elf32-bfin.c:2927
+ msgid "cannot emit fixups in read-only section"
+ msgstr "не могу да пошаљем исправке у одељку само за читање"
+
+-#: elf32-bfin.c:2830 elf32-bfin.c:2958 elf32-lm32.c:1007 elf32-sh.c:4383
++#: elf32-bfin.c:2836 elf32-bfin.c:2964 elf32-lm32.c:1007 elf32-sh.c:4383
+ msgid "cannot emit dynamic relocations in read-only section"
+ msgstr "не могу да пошаљем динамичка премештања у одељку само за читање"
+
+-#: elf32-bfin.c:2880
++#: elf32-bfin.c:2886
+ msgid "R_BFIN_FUNCDESC_VALUE references dynamic symbol with nonzero addend"
+ msgstr "„R_BFIN_FUNCDESC_VALUE“ ствара упуту динамичког симбола са не-нултим сабирком"
+
+-#: elf32-bfin.c:3043
++#: elf32-bfin.c:3049
+ msgid "relocations between different segments are not supported"
+ msgstr "премештања између различитих сегмената нису подржана"
+
+-#: elf32-bfin.c:3044
++#: elf32-bfin.c:3050
+ msgid "warning: relocation references a different segment"
+ msgstr "упозорење: премештање упућује на другачији сегмент"
+
+ #. Ignore init flag - it may not be set, despite the flags field containing valid data.
+-#: elf32-bfin.c:4729 elf32-cris.c:3862 elf32-m68hc1x.c:1415 elf32-m68k.c:1265
+-#: elf32-score.c:3996 elf32-score7.c:3801 elf32-vax.c:536 elf32-xgate.c:494
+-#: elfxx-mips.c:16254
++#: elf32-bfin.c:4732 elf32-cris.c:3862 elf32-m68hc1x.c:1415 elf32-m68k.c:1265
++#: elf32-score.c:3987 elf32-score7.c:3794 elf32-vax.c:536 elf32-xgate.c:494
++#: elfxx-mips.c:16270
+ #, c-format
+ msgid "private flags = %lx:"
+ msgstr "приватне заставице = %lx:"
+
+-#: elf32-bfin.c:4780 elf32-frv.c:6585
++#: elf32-bfin.c:4783 elf32-frv.c:6585
+ #, c-format
+ msgid "%pB: cannot link non-fdpic object file into fdpic executable"
+ msgstr "%pB: не могу да повежем датотеку не-„fdpic“ објекта у „fdpic“ извршну"
+
+-#: elf32-bfin.c:4784 elf32-frv.c:6589
++#: elf32-bfin.c:4787 elf32-frv.c:6589
+ #, c-format
+ msgid "%pB: cannot link fdpic object file into non-fdpic executable"
+ msgstr "%pB: не могу да повежем датотеку „fdpic“ објекта у не-„fdpic“ извршну"
+
+-#: elf32-bfin.c:4921
++#: elf32-bfin.c:4924
+ #, c-format
+ msgid "*** check this relocation %s"
+ msgstr "*** проверава ово премештање „%s“"
+
+-#: elf32-bfin.c:5037
++#: elf32-bfin.c:5040
+ msgid "the bfin target does not currently support the generation of copy relocations"
+ msgstr "„bfin“ циљ тренутно не подржава стварање премештања умножавања"
+
+-#: elf32-bfin.c:5331 elf32-cr16.c:2713 elf32-m68k.c:4420
++#: elf32-bfin.c:5334 elf32-cr16.c:2710 elf32-m68k.c:4420
+ msgid "unsupported relocation type"
+ msgstr "неподржана врста премештања"
+
+@@ -2378,7 +2410,7 @@ msgid "warning: file %pB's arch flag %s conflicts with target ck%s, using %s"
+ msgstr "упозорење: заставица архитектуре “%pB“-а датотеке „%s“ је у сукобу са циљним „ck%s“, користим „%s“"
+
+ #. The r_type is error, not support it.
+-#: elf32-csky.c:4342 elf32-i386.c:350
++#: elf32-csky.c:4342 elf32-i386.c:344
+ #, c-format
+ msgid "%pB: unsupported relocation type: %#x"
+ msgstr "%pB: неподржана врста премештања: %#x"
+@@ -2501,7 +2533,7 @@ msgstr "%pB: користи другачија непозната поља „e_
+ msgid "%pB: relocations in generic ELF (EM: %d)"
+ msgstr "%pB: премештања у општем „ELF“-у (EM: %d)"
+
+-#: elf32-hppa.c:761 elf32-hppa.c:842 elf64-ppc.c:12022
++#: elf32-hppa.c:761 elf32-hppa.c:842 elf64-ppc.c:12181
+ msgid "%F%P: Could not assign %pA to an output section. Retry without --enable-non-contiguous-regions.\n"
+ msgstr "%F%P: Не могу да доделим „%pA“ излазном одељку. Покушајте без „--enable-non-contiguous-regions“.\n"
+
+@@ -2544,71 +2576,75 @@ msgstr "%pB(%pA+%#<PRIx64>): не могу да радим са „%s“ за
+ msgid ".got section not immediately after .plt section"
+ msgstr "одељак „.got“ није одмах након одељка „.plt“"
+
+-#: elf32-i386.c:1169 elf64-x86-64.c:1380
++#: elf32-i386.c:1163 elf64-x86-64.c:1369
+ #, c-format
+ msgid "%pB: TLS transition from %s to %s against `%s' at %#<PRIx64> in section `%pA' failed"
+ msgstr "%pB: није успео „TLS“ прелаз са „%s“ на „%s“ наспрам „%s“ при %#<PRIx64> у одељку „%pA“"
+
+-#: elf32-i386.c:1272
++#: elf32-i386.c:1266
+ #, c-format
+ msgid "%pB: direct GOT relocation R_386_GOT32X against `%s' without base register can not be used when making a shared object"
+ msgstr "%pB: директно „GOT“ премештање „R_386_GOT32X“ наспрам „%s“ без регистра основе се не може користити када се ствара дељени објекат"
+
+-#: elf32-i386.c:1721 elf32-s390.c:1151 elf32-sh.c:5488 elf32-tilepro.c:1548
+-#: elf32-xtensa.c:1266 elf64-s390.c:1083 elfxx-sparc.c:1556
+-#: elfxx-tilegx.c:1767 elfnn-riscv.c:568
++#: elf32-i386.c:1695 elf32-s390.c:1151 elf32-sh.c:5488 elf32-tilepro.c:1548
++#: elf32-xtensa.c:1274 elf64-s390.c:1083 elfxx-sparc.c:1556
++#: elfxx-tilegx.c:1767 elfnn-loongarch.c:555 elfnn-riscv.c:568
+ #, c-format
+ msgid "%pB: `%s' accessed both as normal and thread local symbol"
+ msgstr "%pB: „%s“ се приступило и као нормалном и као симболу локалне нити"
+
+-#: elf32-i386.c:1793
++#: elf32-i386.c:1767
+ #, c-format
+ msgid "%pB: unsupported non-PIC call to IFUNC `%s'"
+ msgstr "%pB: неподржани не-„PIC“ позив за „IFUNC“ „%s“"
+
+-#: elf32-i386.c:2373 elf64-x86-64.c:2721 elfnn-riscv.c:2284
++#: elf32-i386.c:2357 elf64-x86-64.c:2701 elfnn-riscv.c:2300
+ #, c-format
+ msgid "%pB: relocation %s against STT_GNU_IFUNC symbol `%s' isn't supported"
+ msgstr "%pB: премештање „%s“ наспрам „STT_GNU_IFUNC“ симбола „%s“ није подржано"
+
+-#: elf32-i386.c:2406 elf32-i386.c:3677 elf32-i386.c:3824 elf64-x86-64.c:2778
+-#: elf64-x86-64.c:4310 elf64-x86-64.c:4472 elfnn-riscv.c:2157
+-#: elfnn-riscv.c:2956 elfnn-riscv.c:3030
++#: elf32-i386.c:2390 elf32-i386.c:3677 elf32-i386.c:3825 elf64-x86-64.c:2758
++#: elf64-x86-64.c:4312 elf64-x86-64.c:4475 elfnn-riscv.c:2173
++#: elfnn-riscv.c:2972 elfnn-riscv.c:3046
+ #, c-format
+ msgid "Local IFUNC function `%s' in %pB\n"
+ msgstr "Локална „IFUNC“ функција „%s“ у „%pB“\n"
+
+-#: elf32-i386.c:2575
++#: elf32-i386.c:2563
+ #, c-format
+ msgid "%pB: direct GOT relocation %s against `%s' without base register can not be used when making a shared object"
+ msgstr "%pB: директно „GOT“ премештање „%s“ наспрам „%s“ без регистра основе се не може користити када се ствара дељени објекат"
+
+-#: elf32-i386.c:2610 elf64-x86-64.c:2988
++#: elf32-i386.c:2598 elf64-x86-64.c:2974
+ msgid "hidden symbol"
+ msgstr "скривени симбол"
+
+-#: elf32-i386.c:2613 elf64-x86-64.c:2991
++#: elf32-i386.c:2601 elf64-x86-64.c:2977
+ msgid "internal symbol"
+ msgstr "унутрашњи симбол"
+
+-#: elf32-i386.c:2616 elf64-x86-64.c:2994
++#: elf32-i386.c:2604 elf64-x86-64.c:2980
+ msgid "protected symbol"
+ msgstr "заштићени симбол"
+
+-#: elf32-i386.c:2619 elf64-x86-64.c:2997
++#: elf32-i386.c:2607 elf64-x86-64.c:2983
+ msgid "symbol"
+ msgstr "симбол"
+
+-#: elf32-i386.c:2625
++#: elf32-i386.c:2613
+ #, c-format
+ msgid "%pB: relocation R_386_GOTOFF against undefined %s `%s' can not be used when making a shared object"
+ msgstr "%pB: премештање „R_386_GOTOFF“ наспрам недефинисаног %s „%s“ се не може користити када се ствара дељени објекат"
+
+-#: elf32-i386.c:2638
++#: elf32-i386.c:2626
+ #, c-format
+ msgid "%pB: relocation R_386_GOTOFF against protected %s `%s' can not be used when making a shared object"
+ msgstr "%pB: премештање „R_386_GOTOFF“ наспрам заштићеног %s „%s“ се не може користити када се ствара дељени објекат"
+
++#: elf32-i386.c:4028 elf64-x86-64.c:4686
++msgid "%F%P: discarded output section: `%pA'\n"
++msgstr "%F%P: одбачени одељак излаза: „%pA“\n"
++
+ #: elf32-ip2k.c:855 elf32-ip2k.c:861 elf32-ip2k.c:928 elf32-ip2k.c:934
+ msgid "ip2k relaxer: switch table without complete matching relocation information."
+ msgstr "релаксер „ip2k“: пребацивање табеле без потпуног подударања података о премештању."
+@@ -2654,7 +2690,7 @@ msgstr "%pB: мета (%s) премештања „%s“ је у погрешн
+ msgid "%pB: instruction set mismatch with previous modules"
+ msgstr "%pB: скуп инструкција се разликује од претходних модула"
+
+-#: elf32-m32r.c:3300 elf32-nds32.c:6851
++#: elf32-m32r.c:3300 elf32-nds32.c:6846
+ #, c-format
+ msgid "private flags = %lx"
+ msgstr "приватне заставице = %lx"
+@@ -2764,12 +2800,12 @@ msgstr " [меморија=обично]"
+ msgid " [XGATE RAM offsetting]"
+ msgstr " [XGATE RAM померај]"
+
+-#: elf32-m68k.c:1157 elf32-m68k.c:1165 elf32-ppc.c:3582 elf32-ppc.c:3590
++#: elf32-m68k.c:1157 elf32-m68k.c:1165 elf32-ppc.c:3597 elf32-ppc.c:3605
+ #, c-format
+ msgid "%pB uses hard float, %pB uses soft float"
+ msgstr "„%pB“ користи хардверски покретни зарез, „%pB“ користи софтверски покретни зарез"
+
+-#: elf32-m68k.c:1280 elf32-m68k.c:1281 vms-alpha.c:7662 vms-alpha.c:7678
++#: elf32-m68k.c:1280 elf32-m68k.c:1281 vms-alpha.c:7906 vms-alpha.c:7922
+ msgid "unknown"
+ msgstr "непознато"
+
+@@ -2829,7 +2865,7 @@ msgstr "%pB: вероватно је преведено без „-fPIC“?"
+ msgid "literal relocation occurs for an external symbol"
+ msgstr "дошло је до дословног премештања спољног симбола"
+
+-#: elf32-mips.c:1824 elf32-score.c:572 elf32-score7.c:472 elf64-mips.c:3559
++#: elf32-mips.c:1824 elf32-score.c:563 elf32-score7.c:465 elf64-mips.c:3559
+ #: elfn32-mips.c:3375
+ msgid "32bits gp relative relocation occurs for an external symbol"
+ msgstr "дошло је до 32-битног гп релативног премештања спољног симбола"
+@@ -2887,92 +2923,92 @@ msgstr "грешка: „%pB“ користи модел „%s“ подата
+ msgid "error: %pB can use the upper region for data, but %pB assumes data is exclusively in lower memory"
+ msgstr "грешка: „%pB“ може да користи горњу област за податке, али „%pB“ подразумева да су подаци искључиво у доњој меморији"
+
+-#: elf32-nds32.c:3625
++#: elf32-nds32.c:3620
+ #, c-format
+ msgid "error: can't find symbol: %s"
+ msgstr "грешка: не могу да нађем симбол: %s"
+
+-#: elf32-nds32.c:5524
++#: elf32-nds32.c:5519
+ #, c-format
+ msgid "%pB: warning: %s unsupported in shared mode"
+ msgstr "%pB: упозорење: „%s“ није подржано у дељеном режиму"
+
+-#: elf32-nds32.c:5650
++#: elf32-nds32.c:5645
+ #, c-format
+ msgid "%pB: warning: unaligned access to GOT entry"
+ msgstr "%pB: упозорење: непоравнат приступ уносу „GOT“"
+
+-#: elf32-nds32.c:5691
++#: elf32-nds32.c:5686
+ #, c-format
+ msgid "%pB: warning: relocate SDA_BASE failed"
+ msgstr "%pB: упозорење: није успело премештање „SDA_BASE“"
+
+-#: elf32-nds32.c:5713
++#: elf32-nds32.c:5708
+ #, c-format
+ msgid "%pB(%pA): warning: unaligned small data access of type %d"
+ msgstr "%pB(%pA): упозорење: приступ непоравнатим малим подацима врсте „%d“"
+
+-#: elf32-nds32.c:6639
++#: elf32-nds32.c:6634
+ #, c-format
+ msgid "%pB: ISR vector size mismatch with previous modules, previous %u-byte, current %u-byte"
+ msgstr "%pB: величина вектора „ISR“ се разликује од претходних модула: претходна %u бајта; текућа %u бајта"
+
+-#: elf32-nds32.c:6687
++#: elf32-nds32.c:6682
+ #, c-format
+ msgid "%pB: warning: endian mismatch with previous modules"
+ msgstr "%pB: упозорење: крајњост се разликује од претходних модула"
+
+-#: elf32-nds32.c:6701
++#: elf32-nds32.c:6696
+ #, c-format
+ msgid "%pB: warning: older version of object file encountered, please recompile with current tool chain"
+ msgstr "%pB: упозорење: наишао сам на старије издање датотеке објекта, преведите поново са текућим ланцем алата"
+
+-#: elf32-nds32.c:6789
++#: elf32-nds32.c:6784
+ #, c-format
+ msgid "%pB: error: ABI mismatch with previous modules"
+ msgstr "%pB: грешка: „ABI“ се разликује од претходних модула"
+
+-#: elf32-nds32.c:6799
++#: elf32-nds32.c:6794
+ #, c-format
+ msgid "%pB: error: instruction set mismatch with previous modules"
+ msgstr "%pB: грешка: скуп инструкција се разликује од претходних модула"
+
+-#: elf32-nds32.c:6826
++#: elf32-nds32.c:6821
+ #, c-format
+ msgid "%pB: warning: incompatible elf-versions %s and %s"
+ msgstr "%pB: упозорење: елф издања %s и %s нису сагласна"
+
+-#: elf32-nds32.c:6857
++#: elf32-nds32.c:6852
+ #, c-format
+ msgid ": n1 instructions"
+ msgstr ": инструкције „n1“"
+
+-#: elf32-nds32.c:6860
++#: elf32-nds32.c:6855
+ #, c-format
+ msgid ": n1h instructions"
+ msgstr ": инструкције „n1h“"
+
+-#: elf32-nds32.c:9313
++#: elf32-nds32.c:9304
+ #, c-format
+ msgid "%pB: error: search_nds32_elf_blank reports wrong node"
+ msgstr "%pB: грешка: „search_nds32_elf_blank“ извештава о погрешном чвору"
+
+-#: elf32-nds32.c:9577
++#: elf32-nds32.c:9568
+ #, c-format
+ msgid "%pB: warning: %s points to unrecognized reloc at %#<PRIx64>"
+ msgstr "%pB: упозорење: „%s“ показује на непознато премештање на %#<PRIx64>"
+
+-#: elf32-nds32.c:12842
++#: elf32-nds32.c:12833
+ #, c-format
+ msgid "%pB: nested OMIT_FP in %pA"
+ msgstr "%pB: угнежђено „OMIT_FP“ у „%pA“"
+
+-#: elf32-nds32.c:12861
++#: elf32-nds32.c:12852
+ #, c-format
+ msgid "%pB: unmatched OMIT_FP in %pA"
+ msgstr "%pB: неодговарајуће „OMIT_FP“ у „%pA“"
+
+-#: elf32-nds32.c:13143 elfxx-mips.c:13407 reloc.c:8508
++#: elf32-nds32.c:13134 elfxx-mips.c:13426 reloc.c:8599
+ #, c-format
+ msgid "%X%P: %pB(%pA): relocation \"%pR\" goes out of range\n"
+ msgstr "%X%P: %pB(%pA): премештање „%pR“ иде ван опсега\n"
+@@ -3000,7 +3036,7 @@ msgstr "премештање је ван опсега"
+ msgid "dangerous relocation"
+ msgstr "опасно премештање"
+
+-#: elf32-nios2.c:5364
++#: elf32-nios2.c:5360
+ #, c-format
+ msgid "dynamic variable `%s' is zero size"
+ msgstr "динамичка променљива „%s“ је нулте величине"
+@@ -3030,128 +3066,128 @@ msgstr "%pB: сабирак треба да буде нула за „got“ п
+ msgid "%pB: gotoff relocation against dynamic symbol %s"
+ msgstr "%pB: „gotoff“ премештање наспрам динамичког симбола „%s“"
+
+-#: elf32-or1k.c:1554 elf64-alpha.c:4426 elf64-alpha.c:4570
++#: elf32-or1k.c:1551 elf32-or1k.c:1566 elf64-alpha.c:4427 elf64-alpha.c:4571
+ #, c-format
+ msgid "%pB: pc-relative relocation against dynamic symbol %s"
+ msgstr "%pB: „pc“-односно премештање наспрам динамичког симбола „%s“"
+
+-#: elf32-or1k.c:1568
++#: elf32-or1k.c:1580
+ #, c-format
+ msgid "%pB: non-pic relocation against symbol %s"
+ msgstr "%pB: „non-pic“ премештање наспрам симбола „%s“"
+
+-#: elf32-or1k.c:1652
++#: elf32-or1k.c:1664
+ #, c-format
+ msgid "%pB: support for local dynamic not implemented"
+ msgstr "%pB: подршка за локално динамичко није примењена"
+
+-#: elf32-or1k.c:1831
++#: elf32-or1k.c:1843
+ #, c-format
+ msgid "%pB: will not resolve runtime TLS relocation"
+ msgstr "%pB: нећу решити време покретања „TLS“ премештања"
+
+-#: elf32-or1k.c:2165
++#: elf32-or1k.c:2177
+ #, c-format
+ msgid "%pB: bad relocation section name `%s'"
+ msgstr "%pB: лош назив одељка премештања „%s“"
+
+-#: elf32-or1k.c:3279
++#: elf32-or1k.c:3291
+ #, c-format
+ msgid "%pB: %s flag mismatch with previous modules"
+ msgstr "%pB: „%s“ заставица се разликује од претходних модула"
+
+-#: elf32-ppc.c:987 elf64-ppc.c:1723
++#: elf32-ppc.c:993 elf64-ppc.c:1749
+ #, c-format
+ msgid "generic linker can't handle %s"
+ msgstr "општи повезивач не може да ради са „%s“"
+
+-#: elf32-ppc.c:1627
++#: elf32-ppc.c:1633
+ #, c-format
+ msgid "corrupt %s section in %pB"
+ msgstr "оштећен „%s“ одељак у „%pB“"
+
+-#: elf32-ppc.c:1646
++#: elf32-ppc.c:1652
+ #, c-format
+ msgid "unable to read in %s section from %pB"
+ msgstr "не могу да читам у одељку „%s“ из „%pB“"
+
+-#: elf32-ppc.c:1688
++#: elf32-ppc.c:1694
+ #, c-format
+ msgid "warning: unable to set size of %s section in %pB"
+ msgstr "упозорење: не могу да поставим величину одељка „%s“ у „%pB“"
+
+-#: elf32-ppc.c:1737
++#: elf32-ppc.c:1743
+ msgid "failed to allocate space for new APUinfo section"
+ msgstr "нисам успео да доделим простор за нови одељак „APUinfo“"
+
+-#: elf32-ppc.c:1756
++#: elf32-ppc.c:1762
+ msgid "failed to compute new APUinfo section"
+ msgstr "нисам успео да израчунам нови одељак „APUinfo“"
+
+-#: elf32-ppc.c:1759
++#: elf32-ppc.c:1765
+ msgid "failed to install new APUinfo section"
+ msgstr "нисам успео да инсталирам нови одељак „APUinfo“"
+
+-#: elf32-ppc.c:2858
++#: elf32-ppc.c:2873
+ #, c-format
+ msgid "%pB: relocation %s cannot be used when making a shared object"
+ msgstr "%pB: премештање „%s“ се не може користити приликом стварања дељеног објекта"
+
+-#: elf32-ppc.c:3598 elf32-ppc.c:3606
++#: elf32-ppc.c:3613 elf32-ppc.c:3621
+ #, c-format
+ msgid "%pB uses double-precision hard float, %pB uses single-precision hard float"
+ msgstr "„%pB“ користи хардверски покретни зарез двоструке тачности, „%pB“ користи хардверски покретни зарез једне тачности"
+
+-#: elf32-ppc.c:3628 elf32-ppc.c:3636
++#: elf32-ppc.c:3643 elf32-ppc.c:3651
+ #, c-format
+ msgid "%pB uses 64-bit long double, %pB uses 128-bit long double"
+ msgstr "„%pB“ користи 64-битни дуги дубл, „%pB“ користи 128-битни дуги дубл"
+
+-#: elf32-ppc.c:3644 elf32-ppc.c:3652
++#: elf32-ppc.c:3659 elf32-ppc.c:3667
+ #, c-format
+ msgid "%pB uses IBM long double, %pB uses IEEE long double"
+ msgstr "„%pB“ користи „IBM“ дуги дубл, „%pB“ користи „IEEE“ дуги дубл"
+
+-#: elf32-ppc.c:3719 elf32-ppc.c:3728
++#: elf32-ppc.c:3734 elf32-ppc.c:3743
+ #, c-format
+ msgid "%pB uses AltiVec vector ABI, %pB uses SPE vector ABI"
+ msgstr "„%pB“ користи „AltiVec“ вектор „ABI“, „%pB“ користи „SPE“ вектор „ABI“"
+
+-#: elf32-ppc.c:3757 elf32-ppc.c:3766
++#: elf32-ppc.c:3772 elf32-ppc.c:3781
+ #, c-format
+ msgid "%pB uses r3/r4 for small structure returns, %pB uses memory"
+ msgstr "„%pB“ користи „r3/r4“ за мале резултате структуре, „%pB“ користи меморију"
+
+-#: elf32-ppc.c:3830
++#: elf32-ppc.c:3845
+ #, c-format
+ msgid "%pB: compiled with -mrelocatable and linked with modules compiled normally"
+ msgstr "%pB: преведено са „-mrelocatable“ и повезано са модулима који су преведени уобичајеним путем"
+
+-#: elf32-ppc.c:3838
++#: elf32-ppc.c:3853
+ #, c-format
+ msgid "%pB: compiled normally and linked with modules compiled with -mrelocatable"
+ msgstr "%pB: преведено уобичајеним путем и повезано са модулима који су преведени са „-mrelocatable“"
+
+-#: elf32-ppc.c:3907
++#: elf32-ppc.c:3924
+ #, c-format
+ msgid "%pB(%pA+0x%lx): expected 16A style relocation on 0x%08x insn"
+ msgstr "%pB(%pA+0x%lx): очекивах премештање „16A“ стила на „0x%08x insn“"
+
+-#: elf32-ppc.c:3926
++#: elf32-ppc.c:3943
+ #, c-format
+ msgid "%pB(%pA+0x%lx): expected 16D style relocation on 0x%08x insn"
+ msgstr "%pB(%pA+0x%lx): очекивах премештање „16D“ стила на „0x%08x insn“"
+
+-#: elf32-ppc.c:4029
++#: elf32-ppc.c:4047
+ #, c-format
+ msgid "bss-plt forced due to %pB"
+ msgstr "„bss-plt“ је присиљено због „%pB“"
+
+-#: elf32-ppc.c:4031
++#: elf32-ppc.c:4049
+ msgid "bss-plt forced by profiling"
+ msgstr "„bss-plt“ је присиљено профилисањем"
+
+-#: elf32-ppc.c:4608 elf64-ppc.c:8317
++#: elf32-ppc.c:4626 elf64-ppc.c:8483
+ msgid "%H: warning: %s unexpected insn %#x.\n"
+ msgstr "%H: упозорење: „%s“ неочекивани улазни знак „%#x“.\n"
+
+@@ -3159,36 +3195,41 @@ msgstr "%H: упозорење: „%s“ неочекивани улазни з
+ #. could just mark this symbol to exclude it
+ #. from tls optimization but it's safer to skip
+ #. the entire optimization.
+-#: elf32-ppc.c:4638 elf64-ppc.c:8382
++#: elf32-ppc.c:4656 elf64-ppc.c:8548
+ #, c-format
+ msgid "%H arg lost __tls_get_addr, TLS optimization disabled\n"
+ msgstr "Аргумент „%H“ је изгубио „__tls_get_addr“, „TLS“ оптимизација је искључена\n"
+
+-#: elf32-ppc.c:5564 elf32-sh.c:3017 elf32-tilepro.c:2248 elfxx-sparc.c:2454
++#: elf32-ppc.c:5582 elf32-sh.c:3017 elf32-tilepro.c:2248 elfxx-sparc.c:2454
+ #: elfxx-tilegx.c:2494
+ #, c-format
+ msgid "%pB: dynamic relocation in read-only section `%pA'\n"
+ msgstr "%pB: динамичко премештање у одељку само за читање %pA\n"
+
+-#: elf32-ppc.c:7407
++#: elf32-ppc.c:7437
+ msgid "%P: %H: error: %s with unexpected instruction %x\n"
+ msgstr "%P: %H: грешка: „%s“ са неочекиваном инструкцијом „%x“\n"
+
+-#: elf32-ppc.c:7444
++#: elf32-ppc.c:7475
+ msgid "%H: fixup branch overflow\n"
+ msgstr "%H: прекорачење „fixup“ гране\n"
+
+-#: elf32-ppc.c:7484 elf32-ppc.c:7520
++#: elf32-ppc.c:7515 elf32-ppc.c:7553
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): error: %s with unexpected instruction %#x"
+ msgstr "%pB(%pA+%#<PRIx64>): грешка: „%s“ са неочекиваном инструкцијом „%#x“"
+
+-#: elf32-ppc.c:7584
++#: elf32-ppc.c:7617
+ #, c-format
+ msgid "%X%H: unsupported bss-plt -fPIC ifunc %s\n"
+ msgstr "%X%H: неподржано „bss-plt“ „-fPIC“ „ifunc“ „%s“\n"
+
+-#: elf32-ppc.c:7899
++#: elf32-ppc.c:7653
++#, c-format
++msgid "%pB: reloc %#x unsupported"
++msgstr "%pB: премештање „%#x“ није подржано"
++
++#: elf32-ppc.c:7938
+ #, c-format
+ msgid "%H: non-zero addend on %s reloc against `%s'\n"
+ msgstr "%H: не нулти сабирак на „%s“ премештању наспрам „%s“\n"
+@@ -3201,49 +3242,49 @@ msgstr "%H: не нулти сабирак на „%s“ премештању н
+ #. local won't have the +32k reloc addend trick marking
+ #. -fPIC code, so the linker won't know whether r30 is
+ #. _GLOBAL_OFFSET_TABLE_ or pointing into a .got2 section.
+-#: elf32-ppc.c:7931
++#: elf32-ppc.c:7970
+ #, c-format
+ msgid "%X%H: @local call to ifunc %s\n"
+ msgstr "%X%H: позив „@local“ за i-функцију „%s“\n"
+
+-#: elf32-ppc.c:8109
++#: elf32-ppc.c:8149
+ #, c-format
+ msgid "%H: relocation %s for indirect function %s unsupported\n"
+ msgstr "%H: „%s“ премештање за индиректну функцију „%s“ није подржано\n"
+
+-#: elf32-ppc.c:8441 elf32-ppc.c:8472 elf32-ppc.c:8563 elf32-ppc.c:8659
++#: elf32-ppc.c:8488 elf32-ppc.c:8519 elf32-ppc.c:8622 elf32-ppc.c:8722
+ #, c-format
+ msgid "%pB: the target (%s) of a %s relocation is in the wrong output section (%s)"
+ msgstr "%pB: мета (%s) премештања „%s“ је у погрешном излазном одељку (%s)"
+
+-#: elf32-ppc.c:8814 elf32-ppc.c:8832
++#: elf32-ppc.c:8900 elf32-ppc.c:8921
+ msgid "%X%P: %H: %s relocation unsupported for bss-plt\n"
+ msgstr "%X%P: %H: „%s“ премештање није подржано за „bss-plt“\n"
+
+-#: elf32-ppc.c:8913
++#: elf32-ppc.c:9003
+ #, c-format
+ msgid "%H: error: %s against `%s' not a multiple of %u\n"
+ msgstr "%H: грешка: „%s“ наспрам „%s“ није производ „%u“\n"
+
+-#: elf32-ppc.c:8942
++#: elf32-ppc.c:9032
+ #, c-format
+ msgid "%H: unresolvable %s relocation against symbol `%s'\n"
+ msgstr "%H: нерешиво „%s“ премештање наспрам симбола „%s“\n"
+
+-#: elf32-ppc.c:9023
++#: elf32-ppc.c:9114
+ #, c-format
+ msgid "%H: %s reloc against `%s': error %d\n"
+ msgstr "%H: „%s“ премештање наспрам „%s“: грешка %d\n"
+
+-#: elf32-ppc.c:9904
++#: elf32-ppc.c:9995
+ msgid "%X%P: text relocations and GNU indirect functions will result in a segfault at runtime\n"
+ msgstr "%X%P: премештање текста и ГНУ-ове индиректне функције ће резултирати неуспехом сегментације у време извршавања\n"
+
+-#: elf32-ppc.c:9908 elf64-ppc.c:17667
++#: elf32-ppc.c:9999 elf64-ppc.c:18133
+ msgid "%P: warning: text relocations and GNU indirect functions may result in a segfault at runtime\n"
+ msgstr "%P: упозорење: премештање текста и ГНУ-ове индиректне функције могу резултирати неуспехом сегментације у време извршавања\n"
+
+-#: elf32-ppc.c:9953
++#: elf32-ppc.c:10044
+ #, c-format
+ msgid "%s not defined in linker created %pA"
+ msgstr "„%s“ није дефинисано у повезивачу створеном „%pA“"
+@@ -3253,58 +3294,65 @@ msgstr "„%s“ није дефинисано у повезивачу ство
+ msgid "error: %pB: old incompatible object file detected"
+ msgstr "грешка: %pB: стара несагласна датотека објекта је откривена"
+
+-#: elf32-rl78.c:372
+-msgid "internal error: RL78 reloc stack overflow"
+-msgstr "унутрашња грешка: прекорачење „RL78“ премештања спремника"
++#: elf32-rl78.c:551
++msgid "RL78 reloc stack overflow/underflow"
++msgstr "прекорачење/поткорачење сремника „RL78“ премештања"
+
+-#: elf32-rl78.c:383
+-msgid "internal error: RL78 reloc stack underflow"
+-msgstr "унутрашња грешка: подкорачење „RL78“ премештања спремника"
++#: elf32-rl78.c:555
++msgid "RL78 reloc divide by zero"
++msgstr "„RL78“ премештање дели нулом"
+
+-#: elf32-rl78.c:1053
++#: elf32-rl78.c:1069
+ msgid "warning: RL78_SYM reloc with an unknown symbol"
+ msgstr "упозорење: „RL78_SYM“ премештање са непознатим симболом"
+
+-#: elf32-rl78.c:1084 elf32-rx.c:1461
+-#, c-format
+-msgid "%pB(%pA): error: call to undefined function '%s'"
+-msgstr "%pB(%pA): грешка: позив за недефинисану функцију „%s“"
++#: elf32-rl78.c:1115
++msgid "%H: %s out of range\n"
++msgstr "%H: „%s“ је ван опсега\n"
++
++#: elf32-rl78.c:1122
++msgid "%H: relocation type %u is not supported\n"
++msgstr "%H: врста премештања „%u“ није одржана\n"
+
+-#: elf32-rl78.c:1205
++#: elf32-rl78.c:1134
++msgid "%H: relocation %s returns an unrecognized value %x\n"
++msgstr "%H: премештање „%s“ даје непознату вредност „%x“\n"
++
++#: elf32-rl78.c:1220
+ #, c-format
+ msgid "RL78 ABI conflict: G10 file %pB cannot be linked with %s file %pB"
+ msgstr "„RL78 ABI“ сукоб: „G10“ датотека „%pB“ се не може увезати са „%s“ датотеком „%pB“"
+
+-#: elf32-rl78.c:1222
++#: elf32-rl78.c:1237
+ #, c-format
+ msgid "RL78 ABI conflict: cannot link %s file %pB with %s file %pB"
+ msgstr "„ABI RL78“ сукоб: не могу да повежем „%s“ датотеку „%pB“ са „%s“ датотеком „%pB“"
+
+-#: elf32-rl78.c:1231
++#: elf32-rl78.c:1246
+ msgid "RL78 merge conflict: cannot link 32-bit and 64-bit objects together"
+ msgstr "„RL78“ сукоб стапања: не могу да повежем заједно 32-битне и 64-битне објекте"
+
+-#: elf32-rl78.c:1235 elf32-rl78.c:1239
++#: elf32-rl78.c:1250 elf32-rl78.c:1254
+ #, c-format
+ msgid "- %pB is 64-bit, %pB is not"
+ msgstr "— „%pB“ је 64-битно, „%pB“ није"
+
+-#: elf32-rl78.c:1266
++#: elf32-rl78.c:1281
+ #, c-format
+ msgid " [64-bit doubles]"
+ msgstr " [doubles de 64 bits]"
+
+-#: elf32-rx.c:607
++#: elf32-rx.c:618
+ #, c-format
+ msgid "%pB:%pA: table entry %s outside table"
+ msgstr "%pB:%pA: унос табеле „%s“ је ван табеле"
+
+-#: elf32-rx.c:614
++#: elf32-rx.c:625
+ #, c-format
+ msgid "%pB:%pA: table entry %s not word-aligned within table"
+ msgstr "%pB:%pA: унос табеле „%s“ није са поравнањм речи унутар табеле"
+
+-#: elf32-rx.c:689
++#: elf32-rx.c:700
+ #, c-format
+ msgid "%pB:%pA: warning: deprecated Red Hat reloc %s detected against: %s"
+ msgstr "%pB:%pA: упозорење: застарело премештање Ред Хета „%s“ је откривено у: %s"
+@@ -3313,36 +3361,41 @@ msgstr "%pB:%pA: упозорење: застарело премештање Р
+ #. an absolute address is being computed. There are special cases
+ #. for relocs against symbols that are known to be referenced in
+ #. crt0.o before the PID base address register has been initialised.
+-#: elf32-rx.c:709
++#: elf32-rx.c:720
+ #, c-format
+ msgid "%pB(%pA): unsafe PID relocation %s at %#<PRIx64> (against %s in %s)"
+ msgstr "%pB(%pA): несигурно „PID“ премештање „%s“ на %#<PRIx64> (наспрам „%s“ у „%s“)"
+
+-#: elf32-rx.c:1293
++#: elf32-rx.c:1304
+ msgid "warning: RX_SYM reloc with an unknown symbol"
+ msgstr "упозорење: „RX_SYM“ премештање са непознатим симболом"
+
+-#: elf32-rx.c:3173
++#: elf32-rx.c:1472
++#, c-format
++msgid "%pB(%pA): error: call to undefined function '%s'"
++msgstr "%pB(%pA): грешка: позив за недефинисану функцију „%s“"
++
++#: elf32-rx.c:3184
+ #, c-format
+ msgid "there is a conflict merging the ELF header flags from %pB"
+ msgstr "сукоб стапања заставица „ELF“ заглавља из „%pB“"
+
+-#: elf32-rx.c:3176
++#: elf32-rx.c:3187
+ #, c-format
+ msgid " the input file's flags: %s"
+ msgstr " заставице улазне датотеке: %s"
+
+-#: elf32-rx.c:3178
++#: elf32-rx.c:3189
+ #, c-format
+ msgid " the output file's flags: %s"
+ msgstr " заставице излазне датотеке: %s"
+
+-#: elf32-rx.c:3785
++#: elf32-rx.c:3796
+ #, c-format
+ msgid "%pB:%pA: table %s missing corresponding %s"
+ msgstr "%pB:%pA: табели „%s“ недостаје одговарајуће „%s“"
+
+-#: elf32-rx.c:3793
++#: elf32-rx.c:3804
+ #, c-format
+ msgid "%pB:%pA: %s and %s must be in the same input section"
+ msgstr "%pB:%pA: „%s“ и „%s“ морају бити у истом улазном одељку"
+@@ -3352,35 +3405,35 @@ msgstr "%pB:%pA: „%s“ и „%s“ морају бити у истом ула
+ msgid "%pB(%pA+%#<PRIx64>): invalid instruction for TLS relocation %s"
+ msgstr "%pB(%pA+%#<PRIx64>): неисправна инструкција за „TLS“ премештање „%s“"
+
+-#: elf32-score.c:1524 elf32-score7.c:1385 elfxx-mips.c:3798
++#: elf32-score.c:1515 elf32-score7.c:1378 elfxx-mips.c:3798
+ msgid "not enough GOT space for local GOT entries"
+ msgstr "нема довољно „GOT“ простора за месне уносе „GOT“"
+
+-#: elf32-score.c:2756
++#: elf32-score.c:2747
+ msgid "address not word aligned"
+ msgstr "адреса није поравната по речи"
+
+-#: elf32-score.c:2837 elf32-score7.c:2642
++#: elf32-score.c:2828 elf32-score7.c:2635
+ #, c-format
+ msgid "%pB: malformed reloc detected for section %pA"
+ msgstr "%pB: откривено је лоше премештање за одељак „%pA“"
+
+-#: elf32-score.c:2891 elf32-score7.c:2696
++#: elf32-score.c:2882 elf32-score7.c:2689
+ #, c-format
+ msgid "%pB: CALL15 reloc at %#<PRIx64> not against global symbol"
+ msgstr "%pB: „CALL15“ премештање на %#<PRIx64> није наспрам општег симбола"
+
+-#: elf32-score.c:3999 elf32-score7.c:3804
++#: elf32-score.c:3990 elf32-score7.c:3797
+ #, c-format
+ msgid " [pic]"
+ msgstr " [пик]"
+
+-#: elf32-score.c:4003 elf32-score7.c:3808
++#: elf32-score.c:3994 elf32-score7.c:3801
+ #, c-format
+ msgid " [fix dep]"
+ msgstr " [фикс дуб]"
+
+-#: elf32-score.c:4050 elf32-score7.c:3855
++#: elf32-score.c:4041 elf32-score7.c:3848
+ #, c-format
+ msgid "%pB: warning: linking PIC files with non-PIC files"
+ msgstr "%pB: упозорење: повезујем „PIC“ датотеке са не-„PIC“ датотекама"
+@@ -3511,7 +3564,7 @@ msgstr "%pB: „%s“ се приступило и као „FDPIC“-у и ка
+ msgid "%pB: Function descriptor relocation with non-zero addend"
+ msgstr "%pB: Премештање описника функције са не-нултим сабирком"
+
+-#: elf32-sh.c:5721 elf64-alpha.c:4662
++#: elf32-sh.c:5721 elf64-alpha.c:4663
+ #, c-format
+ msgid "%pB: TLS local exec code cannot be linked into shared objects"
+ msgstr "%pB: „TLS“ месни извршни код не може бити повезан у дељеним објектима"
+@@ -3597,7 +3650,7 @@ msgstr "„%s“ у одељку преклапања"
+ msgid "overlay stub relocation overflow"
+ msgstr "прекорачење премештања окрајка прекривања"
+
+-#: elf32-spu.c:1991 elf64-ppc.c:14761
++#: elf32-spu.c:1991 elf64-ppc.c:15187
+ msgid "stubs don't match calculated size"
+ msgstr "окрајци не одговарају израчунатој величини"
+
+@@ -3744,8 +3797,8 @@ msgstr "упозорење: „%pB“ и „%pB“ имају различите
+ msgid "warning: %pB and %pB differ in whether code is compiled for DSBT"
+ msgstr "упозорење: „%pB“ и „%pB“ се разликују по томе да ли је код преведен за „DSBT“"
+
+-#: elf32-tilepro.c:3627 elfxx-tilegx.c:4017 elfxx-x86.c:1397
+-#: elfnn-aarch64.c:9711 elfnn-riscv.c:3253
++#: elf32-tilepro.c:3627 elfxx-tilegx.c:4017 elfxx-x86.c:2409
++#: elfnn-aarch64.c:9714 elfnn-loongarch.c:2971 elfnn-riscv.c:3269
+ #, c-format
+ msgid "discarded output section: `%pA'"
+ msgstr "одбачени одељак излаза: „%pA“"
+@@ -4017,56 +4070,56 @@ msgstr "грешка читања врсте процесора из лични
+ msgid "non-zero addend in @fptr reloc"
+ msgstr "не-нулти сабирак у „@fptr“ премештању"
+
+-#: elf32-xtensa.c:1002
++#: elf32-xtensa.c:1010
+ #, c-format
+ msgid "%pB(%pA): invalid property table"
+ msgstr "%pB(%pA): неисправна табела власништва"
+
+-#: elf32-xtensa.c:2734
++#: elf32-xtensa.c:2744
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): relocation offset out of range (size=%#<PRIx64>)"
+ msgstr "%pB(%pA+%#<PRIx64>): померај премештања је ван опсега (величина=%#<PRIx64>)"
+
+-#: elf32-xtensa.c:2817 elf32-xtensa.c:2940
++#: elf32-xtensa.c:2827 elf32-xtensa.c:2950
+ msgid "dynamic relocation in read-only section"
+ msgstr "динамичко премештање у одељку само за читање"
+
+-#: elf32-xtensa.c:2917
++#: elf32-xtensa.c:2927
+ msgid "TLS relocation invalid without dynamic sections"
+ msgstr "ТЛС премештање је неисправно без динамичких одељака"
+
+-#: elf32-xtensa.c:3130
++#: elf32-xtensa.c:3140
+ msgid "internal inconsistency in size of .got.loc section"
+ msgstr "унутрашња недоследност у величини одељка „.got.loc“"
+
+-#: elf32-xtensa.c:3436
++#: elf32-xtensa.c:3446
+ #, c-format
+ msgid "%pB: incompatible machine type; output is 0x%x; input is 0x%x"
+ msgstr "%pB: несагласна врста машине; излаз је 0x%x, а улаз 0x%x"
+
+-#: elf32-xtensa.c:4735 elf32-xtensa.c:4743
++#: elf32-xtensa.c:4745 elf32-xtensa.c:4753
+ msgid "attempt to convert L32R/CALLX to CALL failed"
+ msgstr "покушај претварања „L32R/CALLX“ у „CALL“ није успео"
+
+-#: elf32-xtensa.c:6571 elf32-xtensa.c:6650 elf32-xtensa.c:8076
++#: elf32-xtensa.c:6581 elf32-xtensa.c:6660 elf32-xtensa.c:8086
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): could not decode instruction; possible configuration mismatch"
+ msgstr "%pB(%pA+%#<PRIx64>): не могу да декодирам инструкцију; вероватно је подешавање погрешно"
+
+-#: elf32-xtensa.c:7817
++#: elf32-xtensa.c:7827
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): could not decode instruction for XTENSA_ASM_SIMPLIFY relocation; possible configuration mismatch"
+ msgstr "%pB(%pA+%#<PRIx64>): не могу да декодирам инструкцију за „XTENSA_ASM_SIMPLIFY“ премештање; вероватно је подешавање погрешно"
+
+-#: elf32-xtensa.c:9675
++#: elf32-xtensa.c:9685
+ msgid "invalid relocation address"
+ msgstr "неисправна адреса премештања"
+
+-#: elf32-xtensa.c:9766
++#: elf32-xtensa.c:9776
+ msgid "overflow after relaxation"
+ msgstr "прекорачење након опуштања"
+
+-#: elf32-xtensa.c:10912
++#: elf32-xtensa.c:10922
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): unexpected fix for %s relocation"
+ msgstr "%pB(%pA+%#<PRIx64>): неочекивана исправка за „%s“ премештање"
+@@ -4090,7 +4143,8 @@ msgstr "%pB: неподржана архитектура „%#x“"
+ msgid "GPDISP relocation did not find ldah and lda instructions"
+ msgstr "„GPDISP“ премештање није нашло инструкције „ldah“ и „lda“"
+
+-#: elf64-alpha.c:2002 elf64-alpha.c:2697 elflink.c:15091
++#: elf64-alpha.c:2002 elf64-alpha.c:2697 elflink.c:15304
++#: elfnn-loongarch.c:1161
+ #, c-format
+ msgid "%pB: dynamic relocation against `%pT' in read-only section `%pA'\n"
+ msgstr "%pB: премештање наспрам „%pT“ у одељку „%pA“ који је само за читање\n"
+@@ -4105,41 +4159,41 @@ msgstr "%pB: под-подеок „.got“ превазилази 64K (вели
+ msgid "%pB: %pA+%#<PRIx64>: warning: %s relocation against unexpected insn"
+ msgstr "%pB: %pA+%#<PRIx64>: упозорење: „%s“ премештање неочекиваног улазног знака"
+
+-#: elf64-alpha.c:4386 elf64-alpha.c:4399
++#: elf64-alpha.c:4387 elf64-alpha.c:4400
+ #, c-format
+ msgid "%pB: gp-relative relocation against dynamic symbol %s"
+ msgstr "%pB: „gp“-односно премештање наспрам динамичког симбола „%s“"
+
+-#: elf64-alpha.c:4455
++#: elf64-alpha.c:4456
+ #, c-format
+ msgid "%pB: change in gp: BRSGP %s"
+ msgstr "%pB: измена у „gp“-у: BRSGP %s"
+
+-#: elf64-alpha.c:4480 mach-o.c:616 elfnn-riscv.c:619
++#: elf64-alpha.c:4481 mach-o.c:616 elfnn-riscv.c:619
+ msgid "<unknown>"
+ msgstr "<непознато>"
+
+-#: elf64-alpha.c:4486
++#: elf64-alpha.c:4487
+ #, c-format
+ msgid "%pB: !samegp reloc against symbol without .prologue: %s"
+ msgstr "%pB: „!samegp“ премештање наспрам симбола без „.prologue“-а: %s"
+
+-#: elf64-alpha.c:4544
++#: elf64-alpha.c:4545
+ #, c-format
+ msgid "%pB: unhandled dynamic relocation against %s"
+ msgstr "%pB: необрађено динамичко премештање наспрам „%s“"
+
+-#: elf64-alpha.c:4579
++#: elf64-alpha.c:4580
+ #, c-format
+ msgid "%pB: pc-relative relocation against undefined weak symbol %s"
+ msgstr "%pB: „pc“-односно премештање наспрам недефинисаног слабог симбола „%s“"
+
+-#: elf64-alpha.c:4645
++#: elf64-alpha.c:4646
+ #, c-format
+ msgid "%pB: dtp-relative relocation against dynamic symbol %s"
+ msgstr "%pB: „dtp“-односно премештање наспрам динамичког симбола „%s“"
+
+-#: elf64-alpha.c:4670
++#: elf64-alpha.c:4671
+ #, c-format
+ msgid "%pB: tp-relative relocation against dynamic symbol %s"
+ msgstr "%pB: „tp“-односно премештање наспрам динамичког симбола „%s“"
+@@ -4173,96 +4227,96 @@ msgstr "%pB: не могу да опустим „br“ на %#<PRIx64> у од
+ msgid "@pltoff reloc against local symbol"
+ msgstr "„@pltoff“ премештање наспрам локалног симбола"
+
+-#: elf64-ia64-vms.c:3283 elfnn-ia64.c:3670
++#: elf64-ia64-vms.c:3277 elfnn-ia64.c:3670
+ #, c-format
+ msgid "%pB: short data segment overflowed (%#<PRIx64> >= 0x400000)"
+ msgstr "%pB: прекорачење сегмента кратких података (%#<PRIx64> >= 0x400000)"
+
+-#: elf64-ia64-vms.c:3293 elfnn-ia64.c:3680
++#: elf64-ia64-vms.c:3287 elfnn-ia64.c:3680
+ #, c-format
+ msgid "%pB: __gp does not cover short data segment"
+ msgstr "%pB: „__gp“ не покрива сегмент кратких података"
+
+-#: elf64-ia64-vms.c:3563 elfnn-ia64.c:3953
++#: elf64-ia64-vms.c:3557 elfnn-ia64.c:3953
+ #, c-format
+ msgid "%pB: non-pic code with imm relocation against dynamic symbol `%s'"
+ msgstr "%pB: не-„pic“ код са „imm“ премештањем наспрам динамичког симбола „%s“"
+
+-#: elf64-ia64-vms.c:3627 elfnn-ia64.c:4021
++#: elf64-ia64-vms.c:3621 elfnn-ia64.c:4021
+ #, c-format
+ msgid "%pB: @gprel relocation against dynamic symbol %s"
+ msgstr "%pB: „@gprel“ премештање наспрам динамичког симбола „%s“"
+
+-#: elf64-ia64-vms.c:3686 elfnn-ia64.c:4084
++#: elf64-ia64-vms.c:3680 elfnn-ia64.c:4084
+ #, c-format
+ msgid "%pB: linking non-pic code in a position independent executable"
+ msgstr "%pB: повезујем не-„pic“ код у извршном независном од положаја"
+
+-#: elf64-ia64-vms.c:3788 elfnn-ia64.c:4222
++#: elf64-ia64-vms.c:3782 elfnn-ia64.c:4222
+ #, c-format
+ msgid "%pB: @internal branch to dynamic symbol %s"
+ msgstr "%pB: „@internal“ грана ка динамичком симболу „%s“"
+
+-#: elf64-ia64-vms.c:3791 elfnn-ia64.c:4225
++#: elf64-ia64-vms.c:3785 elfnn-ia64.c:4225
+ #, c-format
+ msgid "%pB: speculation fixup to dynamic symbol %s"
+ msgstr "%pB: разматрам исправку динамичког симбола „%s“"
+
+-#: elf64-ia64-vms.c:3794 elfnn-ia64.c:4228
++#: elf64-ia64-vms.c:3788 elfnn-ia64.c:4228
+ #, c-format
+ msgid "%pB: @pcrel relocation against dynamic symbol %s"
+ msgstr "%pB: „@pcrel“ премештање наспрам динамичког симбола „%s“"
+
+-#: elf64-ia64-vms.c:3918 elfnn-ia64.c:4425
++#: elf64-ia64-vms.c:3912 elfnn-ia64.c:4425
+ msgid "unsupported reloc"
+ msgstr "неподржано премештање"
+
+-#: elf64-ia64-vms.c:3955 elfnn-ia64.c:4463
++#: elf64-ia64-vms.c:3949 elfnn-ia64.c:4463
+ #, c-format
+ msgid "%pB: missing TLS section for relocation %s against `%s' at %#<PRIx64> in section `%pA'."
+ msgstr "%pB: недостаје „TLS“ одељак за „%s“ премештање наспрам „%s“ на %#<PRIx64> у одељку „%pA“."
+
+-#: elf64-ia64-vms.c:3972 elfnn-ia64.c:4480
++#: elf64-ia64-vms.c:3966 elfnn-ia64.c:4480
+ #, c-format
+ msgid "%pB: Can't relax br (%s) to `%s' at %#<PRIx64> in section `%pA' with size %#<PRIx64> (> 0x1000000)."
+ msgstr "%pB: Не могу да опустим „br“ (%s) у „%s“ на %#<PRIx64> у одељку „%pA“ са величином %#<PRIx64> (> 0x1000000)."
+
+-#: elf64-ia64-vms.c:4268 elfnn-ia64.c:4741
++#: elf64-ia64-vms.c:4262 elfnn-ia64.c:4741
+ #, c-format
+ msgid "%pB: linking trap-on-NULL-dereference with non-trapping files"
+ msgstr "%pB: повезујем захват-на-НИШТАВНОЈ-дереференци са не-захватним датотекама"
+
+-#: elf64-ia64-vms.c:4277 elfnn-ia64.c:4750
++#: elf64-ia64-vms.c:4271 elfnn-ia64.c:4750
+ #, c-format
+ msgid "%pB: linking big-endian files with little-endian files"
+ msgstr "%pB: повезујем датотеке велике крајњости са датотекама мале крајњости"
+
+-#: elf64-ia64-vms.c:4286 elfnn-ia64.c:4759
++#: elf64-ia64-vms.c:4280 elfnn-ia64.c:4759
+ #, c-format
+ msgid "%pB: linking 64-bit files with 32-bit files"
+ msgstr "%pB: повезујем 64-битне датотеке са 32-битним датотекама"
+
+-#: elf64-ia64-vms.c:4295 elfnn-ia64.c:4768
++#: elf64-ia64-vms.c:4289 elfnn-ia64.c:4768
+ #, c-format
+ msgid "%pB: linking constant-gp files with non-constant-gp files"
+ msgstr "%pB: повезујем датотеке „константног-гп“-а са датотекама „не-константног-гп“-а"
+
+-#: elf64-ia64-vms.c:4305 elfnn-ia64.c:4778
++#: elf64-ia64-vms.c:4299 elfnn-ia64.c:4778
+ #, c-format
+ msgid "%pB: linking auto-pic files with non-auto-pic files"
+ msgstr "%pB: повезујем датотеке ауто-„pic“-а са датотекама не-ауто-„pic“"
+
+-#: elf64-ia64-vms.c:5152 elflink.c:5148
++#: elf64-ia64-vms.c:5146 elflink.c:5294
+ #, c-format
+ msgid "warning: alignment %u of common symbol `%s' in %pB is greater than the alignment (%u) of its section %pA"
+ msgstr "упозорење: „%u“ поравнање општег симбола „%s“ у „%pB“ је веће од поравнања (%u) његовог одељка „%pA“"
+
+-#: elf64-ia64-vms.c:5159 elflink.c:5155
++#: elf64-ia64-vms.c:5153 elflink.c:5301
+ #, c-format
+ msgid "warning: alignment %u of symbol `%s' in %pB is smaller than %u in %pB"
+ msgstr "упозорење: „%u“ поравнање симбола „%s“ у „%pB“ је мање од „%u“ у „%pB“"
+
+-#: elf64-ia64-vms.c:5175 elflink.c:5172
++#: elf64-ia64-vms.c:5169 elflink.c:5318
+ #, c-format
+ msgid "warning: size of symbol `%s' changed from %<PRIu64> in %pB to %<PRIu64> in %pB"
+ msgstr "упозорење: величина симбола „%s“ је измењена из „%<PRIx64>“ у „%pB“ у „%<PRIx64>“ у „%pB“"
+@@ -4333,66 +4387,66 @@ msgstr "одељак регистра има садржај\n"
+ msgid "internal inconsistency: remaining %lu != max %lu; please report this bug"
+ msgstr "унутрашња недоследност: преостаје %lu != max %lu; пријавите ову грешку"
+
+-#: elf64-ppc.c:1349
++#: elf64-ppc.c:1357
+ #, c-format
+ msgid "warning: %s should be used rather than %s"
+ msgstr "упозорење: „%s“ се треба користити уместо „%s“"
+
+-#: elf64-ppc.c:4153
++#: elf64-ppc.c:4281
+ #, c-format
+ msgid "symbol '%s' has invalid st_other for ABI version 1"
+ msgstr "симбол „%s“ има неисправан „st_other“ за АБИ издање 1"
+
+-#: elf64-ppc.c:4334
++#: elf64-ppc.c:4462
+ #, c-format
+ msgid "%pB .opd not allowed in ABI version %d"
+ msgstr "%pB: „.opd“ није допуштен у „ABI“ издање %d"
+
+-#: elf64-ppc.c:4906
++#: elf64-ppc.c:5055
+ #, c-format
+ msgid "%H: %s reloc unsupported in shared libraries and PIEs\n"
+ msgstr "%H: „%s“ премештање није подржано у дељеним библиотекама и „PIE“-има\n"
+
+-#: elf64-ppc.c:5316
++#: elf64-ppc.c:5476
+ #, c-format
+ msgid "%pB uses unknown e_flags 0x%lx"
+ msgstr "„%pB“ користи непознато „e_flags“ 0x%lx"
+
+-#: elf64-ppc.c:5324
++#: elf64-ppc.c:5484
+ #, c-format
+ msgid "%pB: ABI version %ld is not compatible with ABI version %ld output"
+ msgstr "%pB: „ABI“ издање %ld није сагласно са „ABI“ издања %ld"
+
+-#: elf64-ppc.c:5351
++#: elf64-ppc.c:5511
+ #, c-format
+ msgid " [abiv%ld]"
+ msgstr " [abiv%ld]"
+
+-#: elf64-ppc.c:6649
++#: elf64-ppc.c:6808
+ msgid "%P: copy reloc against `%pT' requires lazy plt linking; avoid setting LD_BIND_NOW=1 or upgrade gcc\n"
+ msgstr "%P: премештање умножавања наспрам „%pT“ захтева лењо „plt“ повезивање; избегавајте подешавање „LD_BIND_NOW=1“ или надоградите гцц\n"
+
+-#: elf64-ppc.c:6916
++#: elf64-ppc.c:7075
+ #, c-format
+ msgid "%pB: undefined symbol on R_PPC64_TOCSAVE relocation"
+ msgstr "%pB: неодређени симбол на „R_PPC64_TOCSAVE“ премештању"
+
+-#: elf64-ppc.c:7164
++#: elf64-ppc.c:7331
+ #, c-format
+ msgid "dynreloc miscount for %pB, section %pA"
+ msgstr "грешка бројања динамичког премештања за „%pB“, одељак „%pA“"
+
+-#: elf64-ppc.c:7253
++#: elf64-ppc.c:7420
+ #, c-format
+ msgid "%pB: .opd is not a regular array of opd entries"
+ msgstr "%pB: „.opd“ није регуларан низ уноса операнда"
+
+-#: elf64-ppc.c:7263
++#: elf64-ppc.c:7430
+ #, c-format
+ msgid "%pB: unexpected reloc type %u in .opd section"
+ msgstr "%pB: неочекивана врста премештања „%u“ у „.opd“ одељку"
+
+-#: elf64-ppc.c:7285
++#: elf64-ppc.c:7452
+ #, c-format
+ msgid "%pB: undefined sym `%s' in .opd section"
+ msgstr "%pB: неодређени симбол „%s“ у „.opd“ одељку"
+@@ -4404,81 +4458,81 @@ msgstr "%pB: неодређени симбол „%s“ у „.opd“ одељк
+ #. __glink_PLTresolve save of r2 is incompatible with code
+ #. making tail calls, because the tail call might go via the
+ #. resolver and thus overwrite the proper saved r2.
+-#: elf64-ppc.c:7779
++#: elf64-ppc.c:7953
+ msgid "warning: --plt-localentry is incompatible with power10 pc-relative code"
+ msgstr "упозорење: „--plt-localentry“ је несагласно са „power10 pc-relative“ кодом"
+
+-#: elf64-ppc.c:7787
++#: elf64-ppc.c:7961
+ msgid "warning: --plt-localentry is especially dangerous without ld.so support to detect ABI violations"
+ msgstr "упозорење: „--plt-localentry“ је нарочито опасно без „ld.so“ подршке за откривање „ABI“ преступа"
+
+-#: elf64-ppc.c:8111
++#: elf64-ppc.c:8277
+ msgid "%H __tls_get_addr lost arg, TLS optimization disabled\n"
+ msgstr "„%H“ „__tls_get_addr“ је изгубио аргумент, ТЛС оптимизација је искључена\n"
+
+-#: elf64-ppc.c:8546 elf64-ppc.c:9259
++#: elf64-ppc.c:8712 elf64-ppc.c:9425
+ #, c-format
+ msgid "%s defined on removed toc entry"
+ msgstr "„%s“ је дефинисано на уклоњеном уносу табеле садржаја"
+
+-#: elf64-ppc.c:9216
++#: elf64-ppc.c:9382
+ #, c-format
+ msgid "%H: %s references optimized away TOC entry\n"
+ msgstr "%H: „%s“ упућује на оптимизацијом одстрањени унос табеле садржаја\n"
+
+-#: elf64-ppc.c:9437
++#: elf64-ppc.c:9603
+ #, c-format
+ msgid "%H: got/toc optimization is not supported for %s instruction\n"
+ msgstr "%H: оптимизација табеле садржаја није подржана за инструкцију „%s“\n"
+
+-#: elf64-ppc.c:10282
++#: elf64-ppc.c:10474
+ #, c-format
+ msgid "warning: discarding dynamic section %s"
+ msgstr "упозорење: одбацујем динамички одељак „%s“"
+
+-#: elf64-ppc.c:11433
++#: elf64-ppc.c:11616
+ msgid "%P: cannot find opd entry toc for `%pT'\n"
+ msgstr "%P: не могу да нађем табелу садржаја уноса операнда за „%pT“\n"
+
+-#: elf64-ppc.c:11481 elf64-ppc.c:12030
++#: elf64-ppc.c:11664 elf64-ppc.c:12189
+ msgid "%F%P: Could not assign group %pA target %pA to an output section. Retry without --enable-non-contiguous-regions.\n"
+ msgstr "%F%P: Не могу да доделим групе „%pA“ мету „%pA“ излазном одељку. Покушајте без „--enable-non-contiguous-regions“.\n"
+
+-#: elf64-ppc.c:11542
++#: elf64-ppc.c:11724
+ #, c-format
+ msgid "long branch stub `%s' offset overflow"
+ msgstr "прекорачење помераја дугог окрајка гране „%s“"
+
+-#: elf64-ppc.c:11569
++#: elf64-ppc.c:11751
+ #, c-format
+ msgid "can't find branch stub `%s'"
+ msgstr "не могу да нађем окрајак гране „%s“"
+
+-#: elf64-ppc.c:11633 elf64-ppc.c:11898 elf64-ppc.c:14202
++#: elf64-ppc.c:11815 elf64-ppc.c:12067 elf64-ppc.c:14574
+ #, c-format
+ msgid "%P: linkage table error against `%pT'\n"
+ msgstr "%P: грешка табеле повезивања наспрам „%pT“\n"
+
+-#: elf64-ppc.c:12102
++#: elf64-ppc.c:12263
+ #, c-format
+ msgid "can't build branch stub `%s'"
+ msgstr "не могу да изградим окрајак гране „%s“"
+
+-#: elf64-ppc.c:13114
++#: elf64-ppc.c:13270
+ #, c-format
+ msgid "%pB section %pA exceeds stub group size"
+ msgstr "„%pB“ одељак „%pA“ превазилази величину групе окрајка"
+
+-#: elf64-ppc.c:14381
++#: elf64-ppc.c:14756
+ msgid "__tls_get_addr call offset overflow"
+ msgstr "прекорачење помераја „__tls_get_addr“ позива"
+
+-#: elf64-ppc.c:14720 elf64-ppc.c:14739
++#: elf64-ppc.c:15095 elf64-ppc.c:15114
+ #, c-format
+ msgid "%s offset too large for .eh_frame sdata4 encoding"
+ msgstr "„%s“ померај је превелик за „.eh_frame sdata4“ кодирање"
+
+-#: elf64-ppc.c:14771
++#: elf64-ppc.c:15195
+ #, c-format
+ msgid "linker stubs in %u group\n"
+ msgid_plural "linker stubs in %u groups\n"
+@@ -4486,83 +4540,65 @@ msgstr[0] "окрајци повезивача у %u групи\n"
+ msgstr[1] "окрајци повезивача у %u групе\n"
+ msgstr[2] "окрајци повезивача у %u група\n"
+
+-#: elf64-ppc.c:14778
++#: elf64-ppc.c:15202
+ #, c-format
+ msgid ""
+ "%s branch %lu\n"
+-" branch toc adj %lu\n"
+-" branch notoc %lu\n"
+-" branch both %lu\n"
+ " long branch %lu\n"
+-" long toc adj %lu\n"
+-" long notoc %lu\n"
+-" long both %lu\n"
+ " plt call %lu\n"
+-" plt call save %lu\n"
+-" plt call notoc %lu\n"
+-" plt call both %lu\n"
+ " global entry %lu"
+ msgstr ""
+-"%s грана %lu\n"
+-" грана садр. порав. %lu\n"
+-" грана не-садр. %lu\n"
+-" грана оба %lu\n"
+-" дуго грана %lu\n"
+-" дуго садр. порав. %lu\n"
+-" дуго не-садр. %lu\n"
+-" дуго оба %lu\n"
+-" плт позив %lu\n"
+-" плт позив сачувај %lu\n"
+-" плт позив не-садр. %lu\n"
+-" плт позив оба %lu\n"
+-" општи унос %lu"
+-
+-#: elf64-ppc.c:15178
++"%s грана %lu\n"
++" дуга грана %lu\n"
++" „plt“ озив %lu\n"
++" општи унос %lu"
++
++#: elf64-ppc.c:15584
+ #, c-format
+ msgid "%H: %s used with TLS symbol `%pT'\n"
+ msgstr "%H: „%s“ је коришћено са „TLS“ симболом „%pT“\n"
+
+-#: elf64-ppc.c:15180
++#: elf64-ppc.c:15586
+ #, c-format
+ msgid "%H: %s used with non-TLS symbol `%pT'\n"
+ msgstr "%H: „%s“ је коришћено са не-„TLS“ симболом „%pT“\n"
+
+-#: elf64-ppc.c:15936
++#: elf64-ppc.c:16370
+ #, c-format
+ msgid "%H: call to `%pT' lacks nop, can't restore toc; (plt call stub)\n"
+ msgstr "%H: позиву за „%pT“ недостаје „nop“, не могу да вратим табелу садржаја; (plt call stub)\n"
+
+-#: elf64-ppc.c:15942
++#: elf64-ppc.c:16376
+ #, c-format
+ msgid "%H: call to `%pT' lacks nop, can't restore toc; (toc save/adjust stub)\n"
+ msgstr "%H: позиву за „%pT“ недостаје „nop“, не могу да вратим табелу садржаја; (toc save/adjust stub)\n"
+
+-#: elf64-ppc.c:16845
++#: elf64-ppc.c:17290
+ #, c-format
+ msgid "%H: %s for indirect function `%pT' unsupported\n"
+ msgstr "%H: „%s“ за индиректну функцију „%pT“ није подржано\n"
+
+-#: elf64-ppc.c:16930
++#: elf64-ppc.c:17382
+ #, c-format
+ msgid "%X%P: %pB: %s against %pT is not supported by glibc as a dynamic relocation\n"
+ msgstr "%X%P: %pB: „%s“ наспрам „%pT“ није подржано „glibc“-ом као динамичко премештање\n"
+
+-#: elf64-ppc.c:16985
++#: elf64-ppc.c:17437
+ #, c-format
+ msgid "%P: %pB: %s is not supported for `%pT'\n"
+ msgstr "%P: %pB: „%s“ није подржано за „%pT“\n"
+
+-#: elf64-ppc.c:17233
++#: elf64-ppc.c:17698
+ #, c-format
+ msgid "%H: error: %s not a multiple of %u\n"
+ msgstr "%H: грешка: „%s“ није производ „%u“\n"
+
+-#: elf64-ppc.c:17256
++#: elf64-ppc.c:17721
+ #, c-format
+ msgid "%H: unresolvable %s against `%pT'\n"
+ msgstr "%H: „%s“ је нерешиво наспрам „%pT“\n"
+
+-#: elf64-ppc.c:17400
++#: elf64-ppc.c:17866
+ #, c-format
+ msgid "%H: %s against `%pT': error %d\n"
+ msgstr "%H: „%s“ наспрам „%pT“: грешка %d\n"
+@@ -4597,101 +4633,101 @@ msgstr "симбол „%s“ има другачије врсте: „%s“ у
+ msgid "%pB: linking UltraSPARC specific with HAL specific code"
+ msgstr "%pB: повезујем код специфичан „UltraSPARC“-у са кодом специфичним „HAL“-у"
+
+-#: elf64-x86-64.c:1415
++#: elf64-x86-64.c:1400
+ msgid "hidden symbol "
+ msgstr "скривени симбол "
+
+-#: elf64-x86-64.c:1418
++#: elf64-x86-64.c:1403
+ msgid "internal symbol "
+ msgstr "унутрашњи симбол "
+
+-#: elf64-x86-64.c:1421 elf64-x86-64.c:1425
++#: elf64-x86-64.c:1406 elf64-x86-64.c:1410
+ msgid "protected symbol "
+ msgstr "заштићени симбол "
+
+-#: elf64-x86-64.c:1427
++#: elf64-x86-64.c:1412
+ msgid "symbol "
+ msgstr "симбол "
+
+-#: elf64-x86-64.c:1433
++#: elf64-x86-64.c:1418
+ msgid "undefined "
+ msgstr "неодређено "
+
+-#: elf64-x86-64.c:1443
++#: elf64-x86-64.c:1428
+ msgid "a shared object"
+ msgstr "дељени објекат"
+
+-#: elf64-x86-64.c:1445
++#: elf64-x86-64.c:1430
+ msgid "; recompile with -fPIC"
+ msgstr "; поново преведите са „-fPIC“"
+
+-#: elf64-x86-64.c:1450
++#: elf64-x86-64.c:1435
+ msgid "a PIE object"
+ msgstr "„PIE“ објекат"
+
+-#: elf64-x86-64.c:1452
++#: elf64-x86-64.c:1437
+ msgid "a PDE object"
+ msgstr "„PDE“ објекат"
+
+-#: elf64-x86-64.c:1454
++#: elf64-x86-64.c:1439
+ msgid "; recompile with -fPIE"
+ msgstr "; поново преведите са „-fPIE“"
+
+-#: elf64-x86-64.c:1458
++#: elf64-x86-64.c:1443
+ #, c-format
+ msgid "%pB: relocation %s against %s%s`%s' can not be used when making %s%s"
+ msgstr "%pB: премештање „%s“ наспрам „%s%s“ „%s“ се не може користити приликом стварања „%s%s“"
+
+-#: elf64-x86-64.c:1966
++#: elf64-x86-64.c:1948
+ #, c-format
+ msgid "%pB: relocation %s against symbol `%s' isn't supported in x32 mode"
+ msgstr "%pB: „%s“ премештање наспрам симбола „%s“ није подржано у режиму x32"
+
+-#: elf64-x86-64.c:2122
++#: elf64-x86-64.c:2092
+ #, c-format
+ msgid "%pB: '%s' accessed both as normal and thread local symbol"
+ msgstr "%pB: „%s“ се приступило и као нормалном и као симболу локалне нити"
+
+-#: elf64-x86-64.c:2747 elfnn-aarch64.c:5542 elfnn-riscv.c:2124
++#: elf64-x86-64.c:2727 elfnn-aarch64.c:5545 elfnn-riscv.c:2140
+ #, c-format
+ msgid "%pB: relocation %s against STT_GNU_IFUNC symbol `%s' has non-zero addend: %<PRId64>"
+ msgstr "%pB: премештање „%s“ наспрам „STT_GNU_IFUNC“ симбола „%s“ има не-нулти сабирак: %<PRId64>"
+
+-#: elf64-x86-64.c:3003
++#: elf64-x86-64.c:2989
+ #, c-format
+ msgid "%pB: relocation R_X86_64_GOTOFF64 against undefined %s `%s' can not be used when making a shared object"
+ msgstr "%pB: премештање „R_X86_64_GOTOFF64“ наспрам недефинисаног %s „%s“ се не може користити када се ствара дељени објекат"
+
+-#: elf64-x86-64.c:3017
++#: elf64-x86-64.c:3003
+ #, c-format
+ msgid "%pB: relocation R_X86_64_GOTOFF64 against protected %s `%s' can not be used when making a shared object"
+ msgstr "%pB: премештање „R_X86_64_GOTOFF64“ наспрам заштићеног %s „%s“ се не може користити када се ствара дељени објекат"
+
+-#: elf64-x86-64.c:3297
++#: elf64-x86-64.c:3296
+ #, c-format
+ msgid "%pB: addend %s%#x in relocation %s against symbol `%s' at %#<PRIx64> in section `%pA' is out of range"
+ msgstr "%pB: сабирак %s%#x у премештању „%s“ наспрам симбола „%s“ на %#<PRIx64> у одељку „%pA“ је ван опсега"
+
+-#: elf64-x86-64.c:3437 elflink.c:13453
++#: elf64-x86-64.c:3439 elflink.c:13654
+ msgid "%F%P: corrupt input: %pB\n"
+ msgstr "%F%P: оштећени унос: %pB\n"
+
+-#: elf64-x86-64.c:4123
++#: elf64-x86-64.c:4125
+ #, c-format
+ msgid " failed to convert GOTPCREL relocation against '%s'; relink with --no-relax\n"
+ msgstr " нисам успео да претворим „GOTPCREL“ премештање за „%s“; поново повежите са „--no-relax“\n"
+
+-#: elf64-x86-64.c:4284
++#: elf64-x86-64.c:4286
+ #, c-format
+ msgid "%F%pB: PC-relative offset overflow in PLT entry for `%s'\n"
+ msgstr "%F%pB: прекорачење „PC“-односног помераја у „PLT“ уносу за „%s“\n"
+
+-#: elf64-x86-64.c:4352
++#: elf64-x86-64.c:4354
+ #, c-format
+ msgid "%F%pB: branch displacement overflow in PLT entry for `%s'\n"
+ msgstr "%F%pB: прекорачење размештаја гране у „PLT“ уносу за „%s“\n"
+
+-#: elf64-x86-64.c:4405
++#: elf64-x86-64.c:4407
+ #, c-format
+ msgid "%F%pB: PC-relative offset overflow in GOT PLT entry for `%s'\n"
+ msgstr "%F%pB: прекорачење „PC“-односног помераја у „GOT PLT“ уносу за „%s“\n"
+@@ -4701,306 +4737,310 @@ msgstr "%F%pB: прекорачење „PC“-односног помераја
+ msgid "warning: %pB has a section extending past end of file"
+ msgstr "упозорење: „%pB“ има одељак који се шири преко краја датотеке"
+
+-#: elfcode.h:775
++#: elfcode.h:776
+ #, c-format
+ msgid "warning: %pB has a corrupt string table index - ignoring"
+ msgstr "упозорење: „%pB“ има оштећен индекс табеле ниске — занемарујем"
+
+-#: elfcode.h:819
++#: elfcode.h:820
+ #, c-format
+ msgid "warning: %pB has a program header with invalid alignment"
+ msgstr "упозорење: „%pB“ има заглавље програма са неисправним поравнањем"
+
+-#: elfcode.h:1244
++#: elfcode.h:1245
+ #, c-format
+ msgid "%pB: version count (%<PRId64>) does not match symbol count (%ld)"
+ msgstr "%pB: број издања (%<PRId64>) не одговара броју симбола (%ld)"
+
+-#: elfcore.h:308
++#: elfcore.h:300
+ #, c-format
+-msgid "warning: %pB is truncated: expected core file size >= %<PRIu64>, found: %<PRIu64>"
+-msgstr "упозорење: „%pB“ је скраћено: очекивах величину датотеке језгра >= %<PRIx64>, нађох: %<PRIx64>"
++msgid "warning: %pB has a segment extending past end of file"
++msgstr "упозорење: „%pB“ има подеок који се шири преко краја датотеке"
+
+-#: elflink.c:1384
++#: elflink.c:1406
+ #, c-format
+ msgid "%s: TLS definition in %pB section %pA mismatches non-TLS definition in %pB section %pA"
+ msgstr "%s: „TLS“ дефиниција у „%pB“ одељак „%pA“ не одговара не-„TLS“ дефиницији у „%pB“ одељак „%pA“"
+
+-#: elflink.c:1390
++#: elflink.c:1412
+ #, c-format
+ msgid "%s: TLS reference in %pB mismatches non-TLS reference in %pB"
+ msgstr "%s: „TLS“ упута у „%pB“ не одговара не-„TLS“ упути у „%pB“"
+
+-#: elflink.c:1396
++#: elflink.c:1418
+ #, c-format
+ msgid "%s: TLS definition in %pB section %pA mismatches non-TLS reference in %pB"
+ msgstr "%s: „TLS“ дефиниција у „%pB“ одељак „%pA“ не одговара не-„TLS“ упути у „%pB“"
+
+-#: elflink.c:1402
++#: elflink.c:1424
+ #, c-format
+ msgid "%s: TLS reference in %pB mismatches non-TLS definition in %pB section %pA"
+ msgstr "%s: „TLS“ упута у „%pB“ не одговара не-„TLS“ дефиницији у „%pB“ одељак „%pA“"
+
+-#: elflink.c:2114
++#: elflink.c:2136
+ #, c-format
+ msgid "%pB: unexpected redefinition of indirect versioned symbol `%s'"
+ msgstr "%pB: неочекивано поновно дефинисање индиректно верзионисаног симбола „%s“"
+
+-#: elflink.c:2496
++#: elflink.c:2597
+ #, c-format
+ msgid "%pB: version node not found for symbol %s"
+ msgstr "%pB: нисам нашао чвор издања за симбол „%s“"
+
+-#: elflink.c:2587
++#: elflink.c:2688
+ #, c-format
+ msgid "%pB: bad reloc symbol index (%#<PRIx64> >= %#lx) for offset %#<PRIx64> in section `%pA'"
+ msgstr "%pB: лош индекс симбола премештања (%#<PRIx64> >= %#lx) за померај %#<PRIx64> у одељку „%pA“"
+
+-#: elflink.c:2599
++#: elflink.c:2700
+ #, c-format
+ msgid "%pB: non-zero symbol index (%#<PRIx64>) for offset %#<PRIx64> in section `%pA' when the object file has no symbol table"
+ msgstr "%pB: не-нулти индекс симбола (%#<PRIx64>) за померај %#<PRIx64> у одељку „%pA“ када датотека објекта нема табелу симбола"
+
+-#: elflink.c:2788
++#: elflink.c:2911
+ #, c-format
+ msgid "%pB: relocation size mismatch in %pB section %pA"
+ msgstr "%pB: величина премештања не одговара у „%pB“ одељак „%pA“"
+
+-#: elflink.c:3117
++#: elflink.c:3240
+ #, c-format
+ msgid "warning: type and size of dynamic symbol `%s' are not defined"
+ msgstr "упозорење: врста и величина динамичког симбола „%s“ нису дефинисане"
+
+-#: elflink.c:3177
++#: elflink.c:3300
+ msgid "%P: copy reloc against protected `%pT' is dangerous\n"
+ msgstr "%P: умножи премештање наспрам заштићеног „%pT“ је опасно\n"
+
+-#: elflink.c:4117
++#: elflink.c:4262
+ #, c-format
+ msgid "alternate ELF machine code found (%d) in %pB, expecting %d"
+ msgstr "нађох измењени „ELF“ машински код (%d) у „%pB“, очекивах „%d“"
+
+-#: elflink.c:4600
++#: elflink.c:4745
+ #, c-format
+ msgid "%pB: invalid version offset %lx (max %lx)"
+ msgstr "%pB: неисправан померај издања %lx (најв. %lx)"
+
+-#: elflink.c:4668
++#: elflink.c:4813
+ #, c-format
+ msgid "%pB: %s local symbol at index %lu (>= sh_info of %lu)"
+ msgstr "%pB: „%s“ локални симбол у индексу %lu (>= sh_info %lu)"
+
+-#: elflink.c:4816
++#: elflink.c:4961
+ #, c-format
+ msgid "%pB: not enough version information"
+ msgstr "%pB: нема довољно података о издању"
+
+-#: elflink.c:4854
++#: elflink.c:4999
+ #, c-format
+ msgid "%pB: %s: invalid version %u (max %d)"
+ msgstr "%pB: %s: неисправно издање %u (најв. %d)"
+
+-#: elflink.c:4891
++#: elflink.c:5036
+ #, c-format
+ msgid "%pB: %s: invalid needed version %d"
+ msgstr "%pB: %s: неисправно потребно издање %d"
+
+-#: elflink.c:5309
++#: elflink.c:5455
+ #, c-format
+ msgid "%pB: undefined reference to symbol '%s'"
+ msgstr "%pB: недефинисана упута ка симболу „%s“"
+
+-#: elflink.c:6375
++#: elflink.c:6523
+ #, c-format
+ msgid "%pB: stack size specified and %s set"
+ msgstr "%pB: величина спремника је наведена и „%s“ подешена"
+
+-#: elflink.c:6379
++#: elflink.c:6527
+ #, c-format
+ msgid "%pB: %s not absolute"
+ msgstr "%pB: „%s“ није апсолутно"
+
+-#: elflink.c:6576
++#: elflink.c:6739
+ #, c-format
+ msgid "%s: undefined version: %s"
+ msgstr "%s: недефинисано издање: %s"
+
+-#: elflink.c:7148
++#: elflink.c:7303
+ #, c-format
+ msgid "%pB: .preinit_array section is not allowed in DSO"
+ msgstr "%pB: одељак „.preinit_array“ није дозвољен у „DSO“-у"
+
+-#: elflink.c:8740
++#: elflink.c:8895
+ #, c-format
+ msgid "undefined %s reference in complex symbol: %s"
+ msgstr "недефинисана „%s“ упута у сложеном симболу: %s"
+
+-#: elflink.c:8903 elflink.c:8911
++#: elflink.c:9058 elflink.c:9066
+ msgid "division by zero"
+ msgstr "дељење нулом"
+
+-#: elflink.c:8925
++#: elflink.c:9080
+ #, c-format
+ msgid "unknown operator '%c' in complex symbol"
+ msgstr "непознат оператор „%c“ у сложеном симболу"
+
+ #. PR 21524: Let the user know if a symbol was removed by garbage collection.
+-#: elflink.c:9263
++#: elflink.c:9418
+ #, c-format
+ msgid "%pB:%pA: error: relocation references symbol %s which was removed by garbage collection"
+ msgstr "%pB:%pA: грешка: симбол упута премештања „%s“ који је уклоњен скупљањем отпада"
+
+-#: elflink.c:9266
++#: elflink.c:9421
+ #, c-format
+ msgid "%pB:%pA: error: try relinking with --gc-keep-exported enabled"
+ msgstr "%pB:%pA: грешка: покушајте поновно повезивање са укљученим „--gc-keep-exported“"
+
+-#: elflink.c:9511 elflink.c:9529 elflink.c:9568 elflink.c:9586
++#: elflink.c:9666 elflink.c:9684 elflink.c:9723 elflink.c:9741
+ #, c-format
+ msgid "%pB: unable to sort relocs - they are in more than one size"
+ msgstr "%pB: не могу да поређам премештања — имају више од једне величине"
+
+ #. The section size is not divisible by either -
+ #. something is wrong.
+-#: elflink.c:9545 elflink.c:9602
++#: elflink.c:9700 elflink.c:9757
+ #, c-format
+ msgid "%pB: unable to sort relocs - they are of an unknown size"
+ msgstr "%pB: не могу да поређам премештања — непознате су величине"
+
+-#: elflink.c:9654
++#: elflink.c:9809
+ msgid "not enough memory to sort relocations"
+ msgstr "нема довољно меморије за ређање премештања"
+
+-#: elflink.c:9998
++#: elflink.c:10149
+ #, c-format
+ msgid "%pB: too many sections: %d (>= %d)"
+ msgstr "%pB: превише одељака: %d (>= %d)"
+
+-#: elflink.c:10274
++#: elflink.c:10425
+ #, c-format
+ msgid "%pB: internal symbol `%s' in %pB is referenced by DSO"
+ msgstr "%pB: на унутрашњи симбол „%s“ у „%pB“ упућује „DSO“"
+
+-#: elflink.c:10277
++#: elflink.c:10428
+ #, c-format
+ msgid "%pB: hidden symbol `%s' in %pB is referenced by DSO"
+ msgstr "%pB: на скривени симбол „%s“ у „%pB“ упућује „DSO“"
+
+-#: elflink.c:10280
++#: elflink.c:10431
+ #, c-format
+ msgid "%pB: local symbol `%s' in %pB is referenced by DSO"
+ msgstr "%pB: на локални симбол „%s“ у „%pB“ упућује „DSO“"
+
+-#: elflink.c:10366
++#: elflink.c:10517
+ #, c-format
+ msgid "%pB: could not find output section %pA for input section %pA"
+ msgstr "%pB: не могу да нађем излазни одељак „%pA“ за улазни одељак „%pA“"
+
+-#: elflink.c:10520
++#: elflink.c:10671
+ #, c-format
+ msgid "%pB: protected symbol `%s' isn't defined"
+ msgstr "%pB: заштићени симбол „%s“ није дефинисан"
+
+-#: elflink.c:10523
++#: elflink.c:10674
+ #, c-format
+ msgid "%pB: internal symbol `%s' isn't defined"
+ msgstr "%pB: унутрашњи симбол „%s“ није дефинисан"
+
+-#: elflink.c:10526
++#: elflink.c:10677
+ #, c-format
+ msgid "%pB: hidden symbol `%s' isn't defined"
+ msgstr "%pB: скривени симбол „%s“ није дефинисан"
+
+-#: elflink.c:10558
++#: elflink.c:10709
+ #, c-format
+ msgid "%pB: no symbol version section for versioned symbol `%s'"
+ msgstr "%pB: нема одељка издања симбола за верзионисани симбол „%s“"
+
+-#: elflink.c:10957
++#: elflink.c:11108
+ #, c-format
+ msgid "warning: --enable-non-contiguous-regions discards section `%s' from '%s'\n"
+ msgstr "упозорење: „--enable-non-contiguous-regions“ одбацује одељак „%s“ из „%s“\n"
+
+-#: elflink.c:11211
+-#, c-format
+-msgid "error: %pB: size of section %pA is not multiple of address size"
+-msgstr "грешка: %pB: величина одељка „%pA“ није производ величине адресе"
+-
+-#: elflink.c:11256
++#: elflink.c:11384
+ #, c-format
+ msgid "error: %pB contains a reloc (%#<PRIx64>) for section %pA that references a non-existent global symbol"
+ msgstr "грешка: „%pB“ садржи премештање (%#<PRIx64>) за одељак „%pA“ који упућује на не-постојећи општи симбол"
+
+-#: elflink.c:11977
++#: elflink.c:11844
++#, c-format
++msgid "error: %pB: size of section %pA is not multiple of address size"
++msgstr "грешка: %pB: величина одељка „%pA“ није производ величине адресе"
++
++#: elflink.c:12121
+ #, c-format
+ msgid "%pB: no symbol found for import library"
+ msgstr "%pB: нисам нашао никакав симбол за увозну библиотеку"
+
+-#: elflink.c:12620
++#: elflink.c:12696
++msgid "%F%P: %pB: failed to finish relative relocations\n"
++msgstr "%F%P: %pB: нисам успео да довршим релативна премештања\n"
++
++#: elflink.c:12773
+ #, c-format
+ msgid "%pB: file class %s incompatible with %s"
+ msgstr "%pB: класа датотеке „%s“ није сагласна са „%s“"
+
+-#: elflink.c:12870
++#: elflink.c:13023
+ #, c-format
+ msgid "%pB: failed to generate import library"
+ msgstr "%pB: нисам успео да направим увозну библиотеку"
+
+-#: elflink.c:12996
++#: elflink.c:13191
+ #, c-format
+ msgid "warning: %s section has zero size"
+ msgstr "упозорење: одељак „%s“ је нулте величине"
+
+-#: elflink.c:13044
++#: elflink.c:13239
+ #, c-format
+ msgid "warning: section '%s' is being made into a note"
+ msgstr "упозорење: одељак „%s“ је претворен у белешку"
+
+-#: elflink.c:13137
++#: elflink.c:13333
+ msgid "%P%X: read-only segment has dynamic relocations\n"
+ msgstr "%P%X: одељак само за читање има динамичка премештања\n"
+
+-#: elflink.c:13140
++#: elflink.c:13336
+ msgid "%P: warning: creating DT_TEXTREL in a shared object\n"
+ msgstr "%P: упозорење: стварам „DT_TEXTREL“ у дељеном објекту\n"
+
+-#: elflink.c:13143
++#: elflink.c:13339
+ msgid "%P: warning: creating DT_TEXTREL in a PDE\n"
+ msgstr "%P: упозорење: стварам „DT_TEXTREL“ у „PDE“\n"
+
+-#: elflink.c:13146
++#: elflink.c:13342
+ msgid "%P: warning: creating DT_TEXTREL in a PIE\n"
+ msgstr "%P: упозорење: стварам „DT_TEXTREL“ у „PIE“\n"
+
+-#: elflink.c:13279
++#: elflink.c:13475
+ msgid "%P%X: can not read symbols: %E\n"
+ msgstr "%P%X: не може да чита симболе: %E\n"
+
+-#: elflink.c:13699
++#: elflink.c:13900
+ msgid "%F%P: %pB(%pA): error: need linked-to section for --gc-sections\n"
+ msgstr "%F%P: %pB(%pA): грешка: потребан је повезан-на одељак за „--gc-sections“\n"
+
+-#: elflink.c:14165
++#: elflink.c:14378
+ #, c-format
+ msgid "%pB: %pA+%#<PRIx64>: no symbol found for INHERIT"
+ msgstr "%pB: %pA+%#<PRIx64>: нисам нашао никакав симбол за „INHERIT“"
+
+-#: elflink.c:14206
++#: elflink.c:14419
+ #, c-format
+ msgid "%pB: section '%pA': corrupt VTENTRY entry"
+ msgstr "%pB: одељак „%pA“: оштећен „VTENTRY“ унос"
+
+-#: elflink.c:14349
++#: elflink.c:14562
+ #, c-format
+ msgid "unrecognized INPUT_SECTION_FLAG %s\n"
+ msgstr "непознато „INPUT_SECTION_FLAG %s“\n"
+
+-#: elflink.c:15097
++#: elflink.c:15310
+ #, c-format
+ msgid "%P: %pB: warning: relocation against `%s' in read-only section `%pA'\n"
+ msgstr "%P: %pB: упозорење: премештање наспрам „%s“ у одељку „%pA“ који је само за читање\n"
+
+-#: elflink.c:15186
++#: elflink.c:15399
+ msgid "%P: warning: GNU indirect functions with DT_TEXTREL may result in a segfault at runtime; recompile with %s\n"
+ msgstr "%P: упозорење: ГНУ-ове индиректне функције са „DT_TEXTREL“ могу резултирати неуспехом сегментације у време извршавања; поново преведите са „%s“\n"
+
+@@ -5009,20 +5049,11 @@ msgstr "%P: упозорење: ГНУ-ове индиректне функци
+ msgid "%pB: warning: Weak TLS is implementation defined and may not work as expected"
+ msgstr "%pB: упозорење: слабо „TLS“ је дефинисана примена и можда неће радити као што се очекује"
+
+-#: elfxx-aarch64.c:738 elfnn-aarch64.c:9909 elfnn-aarch64.c:9916
++#: elfxx-aarch64.c:738 elfnn-aarch64.c:9914 elfnn-aarch64.c:9921
+ #, c-format
+ msgid "%pB: warning: BTI turned on by -z force-bti when all inputs do not have BTI in NOTE section."
+ msgstr "%pB: упозорење: „BTI“ је укључено „-z force-bti“-јем када сви уноси немају „BTI“ у „NOTE“ одељку."
+
+-#: elfxx-aarch64.c:758 elfxx-x86.c:2695
+-msgid "%F%P: failed to create GNU property section\n"
+-msgstr "%F%P: нисам успео да направим одељак ГНУ својства\n"
+-
+-#: elfxx-aarch64.c:762 elfxx-x86.c:2700
+-#, c-format
+-msgid "%F%pA: failed to align section\n"
+-msgstr "%F%pA: нисам успео да поравнам одељак\n"
+-
+ #: elfxx-aarch64.c:812
+ #, c-format
+ msgid "error: %pB: <corrupt AArch64 used size: 0x%x>"
+@@ -5150,309 +5181,335 @@ msgstr "%pB: „%pA“ померај %<PRId64> из „%pA“ иза опсег
+ msgid "%pB: `%pA' start VMA of %#<PRIx64> outside the 32-bit range supported; consider using `-Ttext-segment=...'"
+ msgstr "%pB: „%pA“ почетак „VMA“ од %#<PRIx64> ван 32-битног опсега је подржано; користите „-Ttext-segment=...“"
+
+-#: elfxx-mips.c:13316 reloc.c:8430
++#: elfxx-mips.c:13335 reloc.c:8521
+ #, c-format
+ msgid "%X%P: %pB(%pA): error: relocation for offset %V has no value\n"
+ msgstr "%X%P: %pB(%pA): грешка: премештање за померај „%V“ нема вредност\n"
+
+-#: elfxx-mips.c:13417 reloc.c:8518
++#: elfxx-mips.c:13436 reloc.c:8609
+ #, c-format
+ msgid "%X%P: %pB(%pA): relocation \"%pR\" is not supported\n"
+ msgstr "%X%P: %pB(%pA): премештање „%pR“ није подржано\n"
+
+-#: elfxx-mips.c:13426 reloc.c:8527
++#: elfxx-mips.c:13445 reloc.c:8618
+ #, c-format
+ msgid "%X%P: %pB(%pA): relocation \"%pR\" returns an unrecognized value %x\n"
+ msgstr "%X%P: %pB(%pA): премештање „%pR“ је вратило непознату вредност „%x“\n"
+
+-#: elfxx-mips.c:14611
++#: elfxx-mips.c:14627
+ #, c-format
+ msgid "%pB: unknown architecture %s"
+ msgstr "%pB: непозната архитектура „%s“"
+
+-#: elfxx-mips.c:15145
++#: elfxx-mips.c:15161
+ #, c-format
+ msgid "%pB: illegal section name `%pA'"
+ msgstr "%pB: неисправан назив одељка „%pA“"
+
+-#: elfxx-mips.c:15422
++#: elfxx-mips.c:15438
+ #, c-format
+ msgid "%pB: warning: linking abicalls files with non-abicalls files"
+ msgstr "%pB: упозорење: повезујем датотеке абипозива са датотекама не-абипозива"
+
+-#: elfxx-mips.c:15439
++#: elfxx-mips.c:15455
+ #, c-format
+ msgid "%pB: linking 32-bit code with 64-bit code"
+ msgstr "%pB: повезујем 32-битни код са 64-битним кодом"
+
+-#: elfxx-mips.c:15471 elfxx-mips.c:15537 elfxx-mips.c:15552
++#: elfxx-mips.c:15487 elfxx-mips.c:15553 elfxx-mips.c:15568
+ #, c-format
+ msgid "%pB: linking %s module with previous %s modules"
+ msgstr "%pB: повезујем „%s“ модул са претходним „%s“ модулима"
+
+-#: elfxx-mips.c:15495
++#: elfxx-mips.c:15511
+ #, c-format
+ msgid "%pB: ABI mismatch: linking %s module with previous %s modules"
+ msgstr "%pB: „ABI“ не одговара: повезујем „%s“ модул са претходним „%s“ модулима"
+
+-#: elfxx-mips.c:15520
++#: elfxx-mips.c:15536
+ #, c-format
+ msgid "%pB: ASE mismatch: linking %s module with previous %s modules"
+ msgstr "%pB: „ASE“ не одговара: повезујем „%s“ модул са претходним „%s“ модулима"
+
+-#: elfxx-mips.c:15654
++#: elfxx-mips.c:15670
+ #, c-format
+ msgid "warning: %pB uses unknown floating point ABI %d (set by %pB), %pB uses unknown floating point ABI %d"
+ msgstr "упозорење: „%pB“ користи непознату „ABI“ тачку покретног зареза „%d“ (подешено са „%pB“), „%pB“ користи непознату „ABI“ тачку покретног зареза „%d“"
+
+-#: elfxx-mips.c:15660
++#: elfxx-mips.c:15676
+ #, c-format
+ msgid "warning: %pB uses unknown floating point ABI %d (set by %pB), %pB uses %s"
+ msgstr "упозорење: „%pB“ користи непознату „ABI“ тачку покретног зареза „%d“ (подешено са „%pB“), „%pB“ користи „%s“"
+
+-#: elfxx-mips.c:15666
++#: elfxx-mips.c:15682
+ #, c-format
+ msgid "warning: %pB uses %s (set by %pB), %pB uses unknown floating point ABI %d"
+ msgstr "упозорење: „%pB“ користи „%s“ (подешено са „%pB“), „%pB“ користи непознату „ABI“ тачку покретног зареза „%d“"
+
+-#: elfxx-mips.c:15680
++#: elfxx-mips.c:15696
+ #, c-format
+ msgid "warning: %pB uses %s (set by %pB), %pB uses %s"
+ msgstr "упозорење: „%pB“ користи „%s“ (подешено са „%pB“), „%pB“ користи „%s“"
+
+-#: elfxx-mips.c:15699
++#: elfxx-mips.c:15715
+ #, c-format
+ msgid "warning: %pB uses %s (set by %pB), %pB uses unknown MSA ABI %d"
+ msgstr "упозорење: „%pB“ користи „%s“ (подешено са „%pB“), „%pB“ користи непознато „MSA ABI“ „%d“"
+
+-#: elfxx-mips.c:15711
++#: elfxx-mips.c:15727
+ #, c-format
+ msgid "warning: %pB uses unknown MSA ABI %d (set by %pB), %pB uses %s"
+ msgstr "упозорење: „%pB“ користи непознато „MSA ABI“ „%d“ (подешено са „%pB“), „%pB“ користи „%s“"
+
+-#: elfxx-mips.c:15720
++#: elfxx-mips.c:15736
+ #, c-format
+ msgid "warning: %pB uses unknown MSA ABI %d (set by %pB), %pB uses unknown MSA ABI %d"
+ msgstr "упозорење: „%pB“ користи непознато „MSA ABI“ „%d“ (подешено са „%pB“), „%pB“ користи непознато „MSA ABI %d“"
+
+-#: elfxx-mips.c:15782
++#: elfxx-mips.c:15798
+ #, c-format
+ msgid "%pB: endianness incompatible with that of the selected emulation"
+ msgstr "%pB: крајњост није сагласна са оном изабране емулације"
+
+-#: elfxx-mips.c:15796
++#: elfxx-mips.c:15812
+ #, c-format
+ msgid "%pB: ABI is incompatible with that of the selected emulation"
+ msgstr "%pB: „ABI“ није сагласна са оном изабране емулације"
+
+-#: elfxx-mips.c:15849
++#: elfxx-mips.c:15865
+ #, c-format
+ msgid "%pB: warning: inconsistent ISA between e_flags and .MIPS.abiflags"
+ msgstr "%pB: упозорење: недоследно ISA између „e_flags“ и „.MIPS.abiflags“"
+
+-#: elfxx-mips.c:15854
++#: elfxx-mips.c:15870
+ #, c-format
+ msgid "%pB: warning: inconsistent FP ABI between .gnu.attributes and .MIPS.abiflags"
+ msgstr "%pB: упозорење: недоследно „FP ABI“ између „.gnu.attributes“ и „.MIPS.abiflags“"
+
+-#: elfxx-mips.c:15858
++#: elfxx-mips.c:15874
+ #, c-format
+ msgid "%pB: warning: inconsistent ASEs between e_flags and .MIPS.abiflags"
+ msgstr "%pB: упозорење: недоследно „ASE“ између „e_flags“ и „.MIPS.abiflags“"
+
+-#: elfxx-mips.c:15865
++#: elfxx-mips.c:15881
+ #, c-format
+ msgid "%pB: warning: inconsistent ISA extensions between e_flags and .MIPS.abiflags"
+ msgstr "%pB: упозорење: недоследна ISA проширења између „e_flags“ и „.MIPS.abiflags“"
+
+-#: elfxx-mips.c:15869
++#: elfxx-mips.c:15885
+ #, c-format
+ msgid "%pB: warning: unexpected flag in the flags2 field of .MIPS.abiflags (0x%lx)"
+ msgstr "%pB: упозорење: неочекивана заставица у „flags2“ пољу „.MIPS.abiflags“-а (0x%lx)"
+
+-#: elfxx-mips.c:16060
++#: elfxx-mips.c:16076
+ msgid "-mips32r2 -mfp64 (12 callee-saved)"
+ msgstr "-mips32r2 -mfp64 (12 позиваоца-сачувано)"
+
+-#: elfxx-mips.c:16122 elfxx-mips.c:16133
++#: elfxx-mips.c:16138 elfxx-mips.c:16149
+ msgid "None"
+ msgstr "Ништа"
+
+-#: elfxx-mips.c:16124 elfxx-mips.c:16193
++#: elfxx-mips.c:16140 elfxx-mips.c:16209
+ msgid "Unknown"
+ msgstr "Непознато"
+
+-#: elfxx-mips.c:16204
++#: elfxx-mips.c:16220
+ #, c-format
+ msgid "Hard or soft float\n"
+ msgstr "Хардверски или софтверски покретни зарез\n"
+
+-#: elfxx-mips.c:16207
++#: elfxx-mips.c:16223
+ #, c-format
+ msgid "Hard float (double precision)\n"
+ msgstr "Хардверски покретни зарез (двострука тачност)\n"
+
+-#: elfxx-mips.c:16210
++#: elfxx-mips.c:16226
+ #, c-format
+ msgid "Hard float (single precision)\n"
+ msgstr "Хардверски покретни зарез (једнострука тачност)\n"
+
+-#: elfxx-mips.c:16213
++#: elfxx-mips.c:16229
+ #, c-format
+ msgid "Soft float\n"
+ msgstr "Софтверски покретни зарез\n"
+
+-#: elfxx-mips.c:16216
++#: elfxx-mips.c:16232
+ #, c-format
+ msgid "Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"
+ msgstr "Хардверски покретни зарез („MIPS32r2“ 64-бита „FPU 12 callee-saved“)\n"
+
+-#: elfxx-mips.c:16219
++#: elfxx-mips.c:16235
+ #, c-format
+ msgid "Hard float (32-bit CPU, Any FPU)\n"
+ msgstr "Хардверски покретни зарез (32-битни процесор, било који „FPU“)\n"
+
+-#: elfxx-mips.c:16222
++#: elfxx-mips.c:16238
+ #, c-format
+ msgid "Hard float (32-bit CPU, 64-bit FPU)\n"
+ msgstr "Хардверски покретни зарез (32-битни процесор, 64-битни „FPU“)\n"
+
+-#: elfxx-mips.c:16225
++#: elfxx-mips.c:16241
+ #, c-format
+ msgid "Hard float compat (32-bit CPU, 64-bit FPU)\n"
+ msgstr "Хардверско покретном зарезу сагласно (32-битни процесор, 64-битни „FPU“)\n"
+
+-#: elfxx-mips.c:16257
++#: elfxx-mips.c:16273
+ #, c-format
+ msgid " [abi=O32]"
+ msgstr " [аби=O32]"
+
+-#: elfxx-mips.c:16259
++#: elfxx-mips.c:16275
+ #, c-format
+ msgid " [abi=O64]"
+ msgstr " [аби=O64]"
+
+-#: elfxx-mips.c:16261
++#: elfxx-mips.c:16277
+ #, c-format
+ msgid " [abi=EABI32]"
+ msgstr " [аби=EABI32]"
+
+-#: elfxx-mips.c:16263
++#: elfxx-mips.c:16279
+ #, c-format
+ msgid " [abi=EABI64]"
+ msgstr " [аби=EABI64]"
+
+-#: elfxx-mips.c:16265
++#: elfxx-mips.c:16281
+ #, c-format
+ msgid " [abi unknown]"
+ msgstr " [аби није познато]"
+
+-#: elfxx-mips.c:16267
++#: elfxx-mips.c:16283
+ #, c-format
+ msgid " [abi=N32]"
+ msgstr " [аби=N32]"
+
+-#: elfxx-mips.c:16269
++#: elfxx-mips.c:16285
+ #, c-format
+ msgid " [abi=64]"
+ msgstr " [аби=64]"
+
+-#: elfxx-mips.c:16271
++#: elfxx-mips.c:16287
+ #, c-format
+ msgid " [no abi set]"
+ msgstr " [аби није подешено]"
+
+-#: elfxx-mips.c:16296
++#: elfxx-mips.c:16312
+ #, c-format
+ msgid " [unknown ISA]"
+ msgstr " [непознато ИСА]"
+
+-#: elfxx-mips.c:16316
++#: elfxx-mips.c:16332
+ #, c-format
+ msgid " [not 32bitmode]"
+ msgstr " [није 32-битни режим]"
+
+-#: elfxx-riscv.c:1383
++#: elfxx-riscv.c:1563
+ #, c-format
+ msgid "x ISA extension `%s' must be set with the versions"
+ msgstr "x ISA проширење „%s“ мора бити постављено са издањима"
+
+-#: elfxx-riscv.c:1387
++#: elfxx-riscv.c:1569
+ #, c-format
+ msgid "cannot find default versions of the ISA extension `%s'"
+ msgstr "не могу да нађем основна издања за ISA проширење „%s“"
+
+-#: elfxx-riscv.c:1461
++#: elfxx-riscv.c:1669
+ #, c-format
+-msgid "-march=%s: expect number after `%dp'"
+-msgstr "-march=%s: очекујем број након „%dp“"
++msgid "%s: first ISA extension must be `e', `i' or `g'"
++msgstr "%s: прво ISA проширење мора бити „e“, „i“ или „g“"
+
+-#: elfxx-riscv.c:1544
++#: elfxx-riscv.c:1698
+ #, c-format
+-msgid "-march=%s: rv%de is not a valid base ISA"
+-msgstr "-march=%s: „rv%de“ није исправна база ISA"
++msgid "%s: unknown standard ISA extension `%c'"
++msgstr "%s: непознато стандардно ISA проширење „%c“"
+
+-#: elfxx-riscv.c:1573
++#: elfxx-riscv.c:1708
+ #, c-format
+-msgid "-march=%s: first ISA extension must be `e', `i' or `g'"
+-msgstr "-march=%s: прво ISA проширење мора бити „e“, „i“ или „g“"
++msgid "%s: standard ISA extension `%c' is not in canonical order"
++msgstr "%s: стандардно ISA проширење „%c“ није у канонском поретку"
+
+-#: elfxx-riscv.c:1600
++#: elfxx-riscv.c:1759
+ #, c-format
+-msgid "-march=%s: unknown standard and prefixed ISA extension `%s'"
+-msgstr "-march=%s: непознато стандардно и са префиксом ISA проширење „%s“"
++msgid "%s: unknown prefix class for the ISA extension `%s'"
++msgstr "%s: непозната класа префикса за ISA проширење „%s“"
+
+-#: elfxx-riscv.c:1604
++#: elfxx-riscv.c:1795
+ #, c-format
+-msgid "-march=%s: standard ISA extension `%c' is not in canonical order"
+-msgstr "-march=%s: стандардно ISA проширење „%c“ није у канонском поретку"
++msgid "%s: invalid prefixed ISA extension `%s' ends with <number>p"
++msgstr "%s: неисправно са префиксом ISA проширење „%s“ се завршава са <број>p"
+
+-#: elfxx-riscv.c:1654
++#: elfxx-riscv.c:1815
+ #, c-format
+-msgid "-march=%s: unknown prefix class for the ISA extension `%s'"
+-msgstr "-march=%s: непозната класа префикса за ISA проширење „%s“"
++msgid "%s: unknown prefixed ISA extension `%s'"
++msgstr "%s: непознато са префиксом ISA проширење „%s“"
+
+-#: elfxx-riscv.c:1688
++#: elfxx-riscv.c:1826
+ #, c-format
+-msgid "-march=%s: unknown prefixed ISA extension `%s'"
+-msgstr "-march=%s: непознато са префиксом ISA проширење „%s“"
++msgid "%s: duplicate prefixed ISA extension `%s'"
++msgstr "%s: двоструко са префиксом ISA проширење „%s“"
+
+-#: elfxx-riscv.c:1699
++#: elfxx-riscv.c:1836
+ #, c-format
+-msgid "-march=%s: duplicate prefixed ISA extension `%s'"
+-msgstr "-march=%s: двоструко са префиксом ISA проширење „%s“"
++msgid "%s: prefixed ISA extension `%s' is not in expected order. It must come before `%s'"
++msgstr "%s: са префиксом ISA проширење „%s“ није у очекиваном поретку. Мора бити пре „%s“"
+
+-#: elfxx-riscv.c:1709
++#: elfxx-riscv.c:1852
+ #, c-format
+-msgid "-march=%s: prefixed ISA extension `%s' is not in expected order. It must come before `%s'"
+-msgstr "-march=%s: са префиксом ISA проширење „%s“ није у очекиваном поретку. Мора бити пре „%s“"
++msgid "%s: prefixed ISA extension must separate with _"
++msgstr "%s: са префиксом ISA проширење се мора раздвојити са „_“"
++
++#: elfxx-riscv.c:1891
++#, c-format
++msgid "rv%d does not support the `e' extension"
++msgstr "„rv%d“ не подржава проширење „e“"
++
++#: elfxx-riscv.c:1898
++#, c-format
++msgid "rv%d does not support the `q' extension"
++msgstr "„rv%d“ не подржава проширење „q“"
++
++#: elfxx-riscv.c:1905
++msgid "rv32e does not support the `f' extension"
++msgstr "„rv32e“ не подржава проширење „f“"
+
+-#: elfxx-riscv.c:1725
++#: elfxx-riscv.c:1912
++msgid "`zfinx' is conflict with the `f/d/q' extension"
++msgstr "„zfinx“ је у сукобу са проширењем „f/d/q“"
++
++#: elfxx-riscv.c:1933
++msgid "zvl*b extensions need to enable either `v' or `zve' extension"
++msgstr "„zvl*b“ проширења треба да укључе или „v“ или „zve“ проширење"
++
++#: elfxx-riscv.c:1995
+ #, c-format
+-msgid "-march=%s: prefixed ISA extension must separate with _"
+-msgstr "-march=%s: са префиксом ISA проширење се мора раздвојити са „_“"
++msgid "%s: ISA string cannot contain uppercase letters"
++msgstr "%s: ISA ниска не може садржати велика слова"
+
+-#: elfxx-riscv.c:1773
++#: elfxx-riscv.c:2023
+ #, c-format
+-msgid "-march=%s: ISA string cannot contain uppercase letters"
+-msgstr "-march=%s: ISA ниска не може садржати велика слова"
++msgid "%s: ISA string must begin with rv32 or rv64"
++msgstr "%s: ISA ниска мора почети са „rv32“ или „rv64“"
+
+-#: elfxx-riscv.c:1799
++#: elfxx-riscv.c:2259
+ #, c-format
+-msgid "-march=%s: ISA string must begin with rv32 or rv64"
+-msgstr "-march=%s: ISA ниска мора почети са „rv32“ или „rv64“"
++msgid "invalid ISA extension ends with <number>p in .option arch `%s'"
++msgstr "неисправно ISA проширење се завршава са <број>p у „.option“ архитектури „%s“"
+
+-#: elfxx-riscv.c:1832
++#: elfxx-riscv.c:2282
+ #, c-format
+-msgid "-march=%s: rv32e does not support the `f' extension"
+-msgstr "-march=%s: „rv32e“ не подржава проширење „f“"
++msgid "unknown ISA extension `%s' in .option arch `%s'"
++msgstr "непознато ISA проширење „%s“ у „.option“ архитектури „%s“"
+
+-#: elfxx-riscv.c:1840
++#: elfxx-riscv.c:2293
+ #, c-format
+-msgid "-march=%s: rv32 does not support the `q' extension"
+-msgstr "-march=%s: „rv32“ не подржава проширење „q“"
++msgid "cannot + or - base extension `%s' in .option arch `%s'"
++msgstr "не могу да + или - основно проширење „%s“ у „.option“ архитектури „%s“"
++
++#: elfxx-riscv.c:2413
++msgid "internal: unreachable INSN_CLASS_*"
++msgstr "унутрашње: недостижна „INSN_CLASS_*“"
+
+-#: elfxx-sparc.c:3021 elfnn-aarch64.c:5526
++#: elfxx-sparc.c:3021 elfnn-aarch64.c:5529
+ #, c-format
+ msgid "%pB: relocation %s against STT_GNU_IFUNC symbol `%s' isn't handled by %s"
+ msgstr "%pB: премештање „%s“ наспрам „STT_GNU_IFUNC“ симбола „%s“ „%s“ не може да одради"
+@@ -5462,95 +5519,118 @@ msgstr "%pB: премештање „%s“ наспрам „STT_GNU_IFUNC“ с
+ msgid "%pB: cannot link together %s and %s objects"
+ msgstr "%pB: не могу да повежем заједно објекте „%s“ и „%s“"
+
+-#: elfxx-x86.c:980
++#: elfxx-x86.c:1026
++#, c-format
++msgid "%F%P: %pB: failed to allocate relative reloc record\n"
++msgstr "%F%P: %pB: нисам успео да доделим запис релативног премештања\n"
++
++#: elfxx-x86.c:1368
++#, c-format
++msgid "%F%P: %pB: failed to allocate 64-bit DT_RELR bitmap\n"
++msgstr "%F%P: %pB: нисам успео да доделим 64-битну „DT_RELR“ битмапу\n"
++
++#: elfxx-x86.c:1404
++#, c-format
++msgid "%F%P: %pB: failed to allocate 32-bit DT_RELR bitmap\n"
++msgstr "%F%P: %pB: нисам успео да доделим 32-битну „DT_RELR“ битмапу\n"
++
++#: elfxx-x86.c:1707
++#, c-format
++msgid "%F%P: %pB: size of compact relative reloc section is changed: new (%lu) != old (%lu)\n"
++msgstr "%F%P: %pB: величина сажетог одељка релативног премештања је измењено: нова (%lu) != стара (%lu)\n"
++
++#: elfxx-x86.c:1729
++#, c-format
++msgid "%F%P: %pB: failed to allocate compact relative reloc section\n"
++msgstr "%F%P: %pB: нисам успео да доделим сажети одељак релативног премештања\n"
++
++#: elfxx-x86.c:1987
+ #, c-format
+ msgid "%F%P: %pB: relocation %s against absolute symbol `%s' in section `%pA' is disallowed\n"
+ msgstr "%F%P: %pB: премештај „%s“ наспрам апсолутног симбола „%s“ у одељку „%pA“ је искључен\n"
+
+-#: elfxx-x86.c:1062
++#: elfxx-x86.c:2069
+ msgid "%P: %pB: warning: relocation in read-only section `%pA'\n"
+ msgstr "%P: %pB: упозорење: премештање у одељку „%pA“ који је само за читање\n"
+
+-#: elfxx-x86.c:1782
+-#, c-format
+-msgid "%pB: %s (offset: 0x%s, info: 0x%s, addend: 0x%s) against '%s' for section '%pA' in %pB\n"
+-msgstr "%pB: %s (померај: 0x%s, инфо: 0x%s, сабирак: 0x%s) за „%s“ за одељак „%pA“ у „%pB“\n"
++#: elfxx-x86.c:2785
++msgid "%pB: %s (offset: 0x%v, info: 0x%v, addend: 0x%v) against '%s' for section '%pA' in %pB\n"
++msgstr "%pB: %s (померај: 0x%v, инфо: 0x%v, сабирак: 0x%v) за „%s“ за одељак „%pA“ у „%pB“\n"
+
+-#: elfxx-x86.c:1789
+-#, c-format
+-msgid "%pB: %s (offset: 0x%s, info: 0x%s) against '%s' for section '%pA' in %pB\n"
+-msgstr "%pB: %s (померај: 0x%s, инфо: 0x%s) за „%s“ за одељак „%pA“ у „%pB“\n"
++#: elfxx-x86.c:2791
++msgid "%pB: %s (offset: 0x%v, info: 0x%v) against '%s' for section '%pA' in %pB\n"
++msgstr "%pB: %s (померај: 0x%v, инфо: 0x%v) за „%s“ за одељак „%pA“ у „%pB“\n"
+
+-#: elfxx-x86.c:2367
++#: elfxx-x86.c:3388
+ #, c-format
+ msgid "error: %pB: <corrupt x86 property (0x%x) size: 0x%x>"
+ msgstr "грешка: %pB: <оштећено x86 својство (0x%x) величине: 0x%x>"
+
+-#: elfxx-x86.c:2714
++#: elfxx-x86.c:3735
+ msgid "%P: %pB: warning: missing %s\n"
+ msgstr "%P: %pB: упозорење: недостаје „%s“\n"
+
+-#: elfxx-x86.c:2715
++#: elfxx-x86.c:3736
+ msgid "%X%P: %pB: error: missing %s\n"
+ msgstr "%X%P: %pB: грешка: недостаје „%s“\n"
+
+-#: elfxx-x86.c:2778
++#: elfxx-x86.c:3799
+ msgid "IBT and SHSTK properties"
+ msgstr "„IBT“ и „SHSTK“ својства"
+
+-#: elfxx-x86.c:2780
++#: elfxx-x86.c:3801
+ msgid "IBT property"
+ msgstr "„IBT“ својство"
+
+-#: elfxx-x86.c:2782
++#: elfxx-x86.c:3803
+ msgid "SHSTK property"
+ msgstr "„SHSTK“ својство"
+
+-#: elfxx-x86.c:2787
++#: elfxx-x86.c:3808
+ msgid "LAM_U48 property"
+ msgstr "„LAM_U48“ property"
+
+-#: elfxx-x86.c:2792
++#: elfxx-x86.c:3813
+ msgid "LAM_U57 property"
+ msgstr "„LAM_U57“ својство"
+
+-#: elfxx-x86.c:2936
++#: elfxx-x86.c:3957
+ msgid "%F%P: failed to create VxWorks dynamic sections\n"
+ msgstr "%F%P: нисам успео да створим „VxWorks“ динамичке одељке\n"
+
+-#: elfxx-x86.c:2945
++#: elfxx-x86.c:3966
+ msgid "%F%P: failed to create GOT sections\n"
+ msgstr "%F%P: нисам успео да направим „GOT“ одељке\n"
+
+-#: elfxx-x86.c:2963
++#: elfxx-x86.c:3984
+ msgid "%F%P: failed to create ifunc sections\n"
+ msgstr "%F%P: нисам успео да направим „ifunc“ одељке\n"
+
+-#: elfxx-x86.c:3000
++#: elfxx-x86.c:4021
+ msgid "%F%P: failed to create GOT PLT section\n"
+ msgstr "%F%P: нисам успео да направим „GOT PLT“ одељак\n"
+
+-#: elfxx-x86.c:3019
++#: elfxx-x86.c:4040
+ msgid "%F%P: failed to create IBT-enabled PLT section\n"
+ msgstr "%F%P: нисам успео да направим „IBT“-ом укључен „PLT“ одељак\n"
+
+-#: elfxx-x86.c:3033
++#: elfxx-x86.c:4054
+ msgid "%F%P: failed to create BND PLT section\n"
+ msgstr "%F%P: нисам успео да направим „BND PLT“ одељак\n"
+
+-#: elfxx-x86.c:3053
++#: elfxx-x86.c:4074
+ msgid "%F%P: failed to create PLT .eh_frame section\n"
+ msgstr "%F%P: нисам успео да направим „PLT .eh_frame“ одељак\n"
+
+-#: elfxx-x86.c:3066
++#: elfxx-x86.c:4087
+ msgid "%F%P: failed to create GOT PLT .eh_frame section\n"
+ msgstr "%F%P: нисам успео да направим „GOT .eh_frame“ одељак\n"
+
+-#: elfxx-x86.c:3080
++#: elfxx-x86.c:4101
+ msgid "%F%P: failed to create the second PLT .eh_frame section\n"
+ msgstr "%F%P: нисам успео да направим други „PLT .eh_frame“ одељак\n"
+
+-#: elfxx-x86.c:3122
++#: elfxx-x86.c:4143
+ msgid "%X%P: attempted static link of dynamic object `%pB'\n"
+ msgstr "%X%P: покушах статичку везу динамичког објекта „%pB“\n"
+
+@@ -5624,76 +5704,76 @@ msgstr "Застарело „%s“ је позвано у „%s“ %d. ред
+ msgid "Deprecated %s called\n"
+ msgstr "Застарело „%s“ је позвано\n"
+
+-#: linker.c:1706
++#: linker.c:1708
+ #, c-format
+ msgid "%pB: indirect symbol `%s' to `%s' is a loop"
+ msgstr "%pB: индиректни симбол „%s“ ка „%s“ је петља"
+
+-#: linker.c:2577
++#: linker.c:2579
+ #, c-format
+ msgid "attempt to do relocatable link with %s input and %s output"
+ msgstr "покушавам да одрадим преместиву везу са „%s“ улазом и „%s“ излазом"
+
+-#: linker.c:2861
++#: linker.c:2863
+ #, c-format
+ msgid "%pB: ignoring duplicate section `%pA'\n"
+ msgstr "%pB: занемарујем удвостручени одељак „%pA“\n"
+
+-#: linker.c:2871 linker.c:2881
++#: linker.c:2873 linker.c:2883
+ #, c-format
+ msgid "%pB: duplicate section `%pA' has different size\n"
+ msgstr "%pB: удвостручени одељак „%pA“ има другачију величину\n"
+
+-#: linker.c:2890 linker.c:2896
++#: linker.c:2892 linker.c:2898
+ #, c-format
+ msgid "%pB: could not read contents of section `%pA'\n"
+ msgstr "%pB: не могу да прочитам садржај одељка „%pA“\n"
+
+-#: linker.c:2901
++#: linker.c:2903
+ #, c-format
+ msgid "%pB: duplicate section `%pA' has different contents\n"
+ msgstr "%pB: удвостручени одељак „%pA“ има другачији садржај\n"
+
+-#: linker.c:3419
++#: linker.c:3421
+ #, c-format
+ msgid "%pB: compiled for a big endian system and target is little endian"
+ msgstr "%pB: преведено за систем велике крајности а циљ је мала крајност"
+
+-#: linker.c:3422
++#: linker.c:3424
+ #, c-format
+ msgid "%pB: compiled for a little endian system and target is big endian"
+ msgstr "%pB: преведено за систем мале крајности а циљ је велика крајност"
+
+-#: mach-o-arm.c:172
++#: mach-o-arm.c:169 mach-o-arm.c:301
+ msgid "malformed mach-o ARM reloc pair: reloc is first reloc"
+ msgstr "лош „mach-o ARM“ пар премештања: премештање је прво премештање"
+
+-#: mach-o-arm.c:188
++#: mach-o-arm.c:185
+ #, c-format
+ msgid "malformed mach-o ARM reloc pair: invalid length: %d"
+ msgstr "лош „mach-o ARM“ пар премештања: неисправна дужина: %d"
+
+-#: mach-o-arm.c:203
++#: mach-o-arm.c:200
+ #, c-format
+ msgid "malformed mach-o ARM sectdiff reloc: invalid length: %d"
+ msgstr "лош „mach-o ARM“ сектор разлика премештања: неисправна дужина: %d"
+
+-#: mach-o-arm.c:218
++#: mach-o-arm.c:215
+ #, c-format
+ msgid "malformed mach-o ARM local sectdiff reloc: invalid length: %d"
+ msgstr "лош „mach-o ARM“ локални сектор разлика премештања: неисправна дужина: %d"
+
+-#: mach-o-arm.c:233
++#: mach-o-arm.c:230
+ #, c-format
+ msgid "malformed mach-o ARM half sectdiff reloc: invalid length: %d"
+ msgstr "лош „mach-o ARM“ полусектор разлика премештања: неисправна дужина: %d"
+
+-#: mach-o-arm.c:265
++#: mach-o-arm.c:262
+ #, c-format
+ msgid "malformed mach-o ARM vanilla reloc: invalid length: %d (pcrel: %d)"
+ msgstr "лоше „mach-o ARM“ ванила премештање: неисправна дужина: %d (pcrel: %d)"
+
+-#: mach-o-arm.c:329
++#: mach-o-arm.c:332
+ #, c-format
+ msgid "malformed mach-o ARM reloc: unknown reloc type: %d"
+ msgstr "лоше „mach-o ARM“ премештање: непозната врста премештања: %d"
+@@ -5797,13 +5877,13 @@ msgstr "не могу да прикажем непознату наредбу у
+
+ #: mach-o.c:3659
+ #, c-format
+-msgid "bfd_mach_o_read_section_32: overlarge alignment value: %#lx, using 32 instead"
+-msgstr "bfd_mach_o_read_section_32: превелика вредност поравања: %#lx, користим 32 уместо тога"
++msgid "bfd_mach_o_read_section_32: overlarge alignment value: %#lx"
++msgstr "bfd_mach_o_read_section_32: превелика вредност поравања: %#lx"
+
+ #: mach-o.c:3702
+ #, c-format
+-msgid "bfd_mach_o_read_section_64: overlarge alignment value: %#lx, using 32 instead"
+-msgstr "bfd_mach_o_read_section_64: превелика вредност поравања: %#lx, користим 32 уместо тога"
++msgid "bfd_mach_o_read_section_64: overlarge alignment value: %#lx"
++msgstr "bfd_mach_o_read_section_64: превелика вредност поравања: %#lx"
+
+ #: mach-o.c:3753
+ #, c-format
+@@ -5845,132 +5925,137 @@ msgstr "непозната вредност поретка бајта загла
+ msgid "%pB: access beyond end of merged section (%<PRId64>)"
+ msgstr "%pB: приступ иза краја стопљеног одељка (%<PRId64>)"
+
+-#: mmo.c:475
++#: mmo.c:472
+ #, c-format
+ msgid "%pB: no core to allocate section name %s"
+ msgstr "%pB: нема језгра за додељивање назива одељка „%s“"
+
+-#: mmo.c:540
++#: mmo.c:537
+ #, c-format
+ msgid "%pB: no core to allocate a symbol %d bytes long"
+ msgstr "%pB: нема језгра за додељивање симбола дугог %d бајта"
+
+-#: mmo.c:951
++#: mmo.c:960
+ #, c-format
+ msgid "%pB: attempt to emit contents at non-multiple-of-4 address %#<PRIx64>"
+ msgstr "%pB: покушах да емитујем садржај на адреси која није производ 4 „%#<PRIx64>“"
+
+-#: mmo.c:1247
++#: mmo.c:1256
+ #, c-format
+ msgid "%pB: invalid mmo file: initialization value for $255 is not `Main'\n"
+ msgstr "%pB: неисправна „mmo“ датотека: вредност покретања за $255 није „Main“\n"
+
+-#: mmo.c:1394
++#: mmo.c:1403
+ #, c-format
+ msgid "%pB: unsupported wide character sequence 0x%02X 0x%02X after symbol name starting with `%s'\n"
+ msgstr "%pB: неподржан широки низ знака 0x%02X 0x%02X након назива симбола који почиње са „%s“\n"
+
+-#: mmo.c:1627
++#: mmo.c:1419
++#, c-format
++msgid "%pB: symbol name exceeds given max length of %d"
++msgstr "%pB: назив симбола премашује дату највећу дужину од %d"
++
++#: mmo.c:1646
+ #, c-format
+ msgid "%pB: invalid mmo file: unsupported lopcode `%d'\n"
+ msgstr "%pB: неисправна „mmo“ датотека: лопкод „%d“ није подржан\n"
+
+-#: mmo.c:1638
++#: mmo.c:1657
+ #, c-format
+ msgid "%pB: invalid mmo file: expected YZ = 1 got YZ = %d for lop_quote\n"
+ msgstr "%pB: неисправна „mmo“ датотека: очекивах YZ = 1 добих YZ = %d за „lop_quote“\n"
+
+-#: mmo.c:1678
++#: mmo.c:1701
+ #, c-format
+ msgid "%pB: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_loc\n"
+ msgstr "%pB: неисправна „mmo“ датотека: очекивах z = 1 или z = 2, добих z = %d за „lop_loc“\n"
+
+-#: mmo.c:1729
++#: mmo.c:1752
+ #, c-format
+ msgid "%pB: invalid mmo file: expected z = 1 or z = 2, got z = %d for lop_fixo\n"
+ msgstr "%pB: неисправна „mmo“ датотека: очекивах z = 1 или z = 2, добих z = %d за „lop_fixo“\n"
+
+-#: mmo.c:1770
++#: mmo.c:1801
+ #, c-format
+ msgid "%pB: invalid mmo file: expected y = 0, got y = %d for lop_fixrx\n"
+ msgstr "%pB: неисправна „mmo“ датотека: очекивах y = 0 добих y = %d за „lop_fixrx“\n"
+
+-#: mmo.c:1781
++#: mmo.c:1812
+ #, c-format
+ msgid "%pB: invalid mmo file: expected z = 16 or z = 24, got z = %d for lop_fixrx\n"
+ msgstr "%pB: неисправна „mmo“ датотека: очекивах z = 16 или z = 24, добих z = %d за „lop_fixrx“\n"
+
+-#: mmo.c:1806
++#: mmo.c:1837
+ #, c-format
+ msgid "%pB: invalid mmo file: leading byte of operand word must be 0 or 1, got %d for lop_fixrx\n"
+ msgstr "%pB: неисправна „mmo“ датотека: водећи бајт речи операнда мора бити 0 или 1, добих %d за „lop_fixrx“\n"
+
+-#: mmo.c:1831
++#: mmo.c:1866
+ #, c-format
+ msgid "%pB: cannot allocate file name for file number %d, %d bytes\n"
+ msgstr "%pB: не могу да доделим назив датотеке за број датотеке %d, %d бајта\n"
+
+-#: mmo.c:1853
++#: mmo.c:1888
+ #, c-format
+ msgid "%pB: invalid mmo file: file number %d `%s', was already entered as `%s'\n"
+ msgstr "%pB: неисправна „mmo“ датотека: број датотеке %d „%s“, је већ унешен као „%s“\n"
+
+-#: mmo.c:1867
++#: mmo.c:1902
+ #, c-format
+ msgid "%pB: invalid mmo file: file name for number %d was not specified before use\n"
+ msgstr "%pB: неисправна „mmo“ датотека: назив датотеке за број %d није наведен пре употребе\n"
+
+-#: mmo.c:1974
++#: mmo.c:2014
+ #, c-format
+ msgid "%pB: invalid mmo file: fields y and z of lop_stab non-zero, y: %d, z: %d\n"
+ msgstr "%pB: неисправна „mmo“ датотека: поље y и z „lop_stab“-а није нула, y: %d, z: %d\n"
+
+-#: mmo.c:2011
++#: mmo.c:2051
+ #, c-format
+ msgid "%pB: invalid mmo file: lop_end not last item in file\n"
+ msgstr "%pB: неисправна „mmo“ датотека: „lop_end“ није последња ставка у датотеци\n"
+
+-#: mmo.c:2025
++#: mmo.c:2065
+ #, c-format
+ msgid "%pB: invalid mmo file: YZ of lop_end (%ld) not equal to the number of tetras to the preceding lop_stab (%ld)\n"
+ msgstr "%pB: неисправна „mmo“ датотека: YZ „lop_end“-а (%ld) није једнако са бројем тетраса до претходног „lop_stab“-а (%ld)\n"
+
+-#: mmo.c:2734
++#: mmo.c:2778
+ #, c-format
+ msgid "%pB: invalid symbol table: duplicate symbol `%s'\n"
+ msgstr "%pB: неисправна табела симбола: удвостручени симбол „%s“\n"
+
+-#: mmo.c:2978
++#: mmo.c:3022
+ #, c-format
+ msgid "%pB: bad symbol definition: `Main' set to %s rather than the start address %s\n"
+ msgstr "%pB: лоша дефиниција симбола: „Main“ је постављено на „%s“ уместо почетне адресе „%s“\n"
+
+-#: mmo.c:3077
++#: mmo.c:3121
+ #, c-format
+ msgid "%pB: warning: symbol table too large for mmo, larger than 65535 32-bit words: %d. Only `Main' will be emitted.\n"
+ msgstr "%pB: упозорење: табела симбола је превише велика за „mmo“, већа од 65535 32-битних речи: %d. Само „Main“ биће дато.\n"
+
+-#: mmo.c:3123
++#: mmo.c:3167
+ #, c-format
+ msgid "%pB: internal error, symbol table changed size from %d to %d words\n"
+ msgstr "%pB: унутрашња грешка, табела симбола је изменила величину из %d у %d речи\n"
+
+-#: mmo.c:3176
++#: mmo.c:3220
+ #, c-format
+ msgid "%pB: internal error, internal register section %pA had contents\n"
+ msgstr "%pB: унутрашња грешка, унутрашњи одељак регистра „%pA“ има садржај\n"
+
+-#: mmo.c:3227
++#: mmo.c:3271
+ #, c-format
+ msgid "%pB: no initialized registers; section length 0\n"
+ msgstr "%pB: нема покренутих регистара; дужина одељка 0\n"
+
+-#: mmo.c:3234
++#: mmo.c:3278
+ #, c-format
+ msgid "%pB: too many initialized registers; section length %<PRId64>"
+ msgstr "%pB: превише покренутих регистара; дужина одељка %<PRId64>"
+
+-#: mmo.c:3239
++#: mmo.c:3283
+ #, c-format
+ msgid "%pB: invalid start address for initialized registers of length %<PRId64>: %#<PRIx64>"
+ msgstr "%pB: неисправна почетна адреса за покренуте регистре дужине %<PRId64>: %#<PRIx64>"
+@@ -5980,7 +6065,7 @@ msgstr "%pB: неисправна почетна адреса за покрен
+ msgid "unhandled OSF/1 core file section type %d"
+ msgstr "не могу да радим са врстом одељка %d датотеке OSF/1 језгра"
+
+-#: pdp11.c:1590
++#: pdp11.c:1589
+ #, c-format
+ msgid "%pB: symbol indicates overlay (not supported)"
+ msgstr "%pB: симбол означава прекорачење (није подржано)"
+@@ -6052,47 +6137,47 @@ msgstr ""
+ "Излаз за „%s“\n"
+
+ #. XXX code yet to be written.
+-#: peicode.h:796
++#: peicode.h:806
+ #, c-format
+ msgid "%pB: unhandled import type; %x"
+ msgstr "%pB: необрадива врста увоза; %x"
+
+-#: peicode.h:802
++#: peicode.h:812
+ #, c-format
+ msgid "%pB: unrecognized import type; %x"
+ msgstr "%pB: непозната врста увоза; %x"
+
+-#: peicode.h:817
++#: peicode.h:827
+ #, c-format
+ msgid "%pB: unrecognized import name type; %x"
+ msgstr "%pB: непознат назив врсте увоза; %x"
+
+-#: peicode.h:1225
++#: peicode.h:1241
+ #, c-format
+ msgid "%pB: unrecognised machine type (0x%x) in Import Library Format archive"
+ msgstr "%pB: непозната врста машине (0x%x) у архиви записа библиотеке увоза"
+
+-#: peicode.h:1238
++#: peicode.h:1254
+ #, c-format
+ msgid "%pB: recognised but unhandled machine type (0x%x) in Import Library Format archive"
+ msgstr "%pB: позната али необрадива врста машине (0x%x) у архиви записа библиотеке увоза"
+
+-#: peicode.h:1256
++#: peicode.h:1272
+ #, c-format
+ msgid "%pB: size field is zero in Import Library Format header"
+ msgstr "%pB: поље величине је нула у заглављу записа библиотеке увоза"
+
+-#: peicode.h:1282
++#: peicode.h:1298
+ #, c-format
+ msgid "%pB: string not null terminated in ILF object file"
+ msgstr "%pB: ниска се не завршава нулом у датотеци „ILF“ објекта"
+
+-#: peicode.h:1338
++#: peicode.h:1354
+ #, c-format
+ msgid "%pB: error: debug data ends beyond end of debug directory"
+ msgstr "%pB: грешка: подаци прочишћавања се завршавају изван краја директоријума прочишћавања"
+
+-#: plugin.c:236
++#: plugin.c:246
+ msgid "plugin framework: out of file descriptors. Try using fewer objects/archives\n"
+ msgstr "радни оквир прикључка: нема више описника датотека. Покушајте да користите мање објеката/архива\n"
+
+@@ -6149,17 +6234,17 @@ msgstr "Одељак партиције[%d] = 0x%.8lx (%ld)\n"
+ msgid "Partition[%d] length = 0x%.8lx (%ld)\n"
+ msgstr "Дужина партиције[%d] = 0x%.8lx (%ld)\n"
+
+-#: reloc.c:8329
++#: reloc.c:8420
+ msgid "INPUT_SECTION_FLAGS are not supported"
+ msgstr "„INPUT_SECTION_FLAGS“ није подржано"
+
+-#: reloc.c:8589
++#: reloc.c:8680
+ #, c-format
+ msgid "%pB: unrecognized relocation type %#x in section `%pA'"
+ msgstr "%pB: непозната врста премештања %#x у одељку „%pA“"
+
+ #. PR 21803: Suggest the most likely cause of this error.
+-#: reloc.c:8593
++#: reloc.c:8684
+ #, c-format
+ msgid "is this version of the linker - %s - out of date ?"
+ msgstr "да није ово издање повезивача – %s – мало застарело ?"
+@@ -6369,291 +6454,291 @@ msgstr "„%s“ није примењено"
+ msgid "unknown line command %d"
+ msgstr "непозната редна наредба „%d“"
+
+-#: vms-alpha.c:5186 vms-alpha.c:5204 vms-alpha.c:5219 vms-alpha.c:5235
+-#: vms-alpha.c:5248 vms-alpha.c:5260 vms-alpha.c:5273
++#: vms-alpha.c:5183 vms-alpha.c:5201 vms-alpha.c:5216 vms-alpha.c:5232
++#: vms-alpha.c:5245 vms-alpha.c:5257 vms-alpha.c:5270
+ #, c-format
+ msgid "unknown reloc %s + %s"
+ msgstr "непознато премештање „%s + %s“"
+
+-#: vms-alpha.c:5328
++#: vms-alpha.c:5325
+ #, c-format
+ msgid "unknown reloc %s"
+ msgstr "непознато премештање „%s“"
+
+-#: vms-alpha.c:5342
++#: vms-alpha.c:5339
+ msgid "invalid section index in ETIR"
+ msgstr "неисправан индекс одељка у „ETIR“-у"
+
+-#: vms-alpha.c:5351
++#: vms-alpha.c:5348
+ msgid "relocation for non-REL psect"
+ msgstr "премештање за не-„REL“ п-одељак"
+
+-#: vms-alpha.c:5400
++#: vms-alpha.c:5397
+ #, c-format
+ msgid "unknown symbol in command %s"
+ msgstr "непознати симбол у наредби „%s“"
+
+-#: vms-alpha.c:5814
++#: vms-alpha.c:5811
+ #, c-format
+ msgid "reloc (%d) is *UNKNOWN*"
+ msgstr "премештање (%d) је *НЕПОЗНАТО*"
+
+-#: vms-alpha.c:5930
++#: vms-alpha.c:5927
+ #, c-format
+ msgid " EMH %u (len=%u): "
+ msgstr " EMH %u (дужина=%u): "
+
+-#: vms-alpha.c:5935
++#: vms-alpha.c:5932
+ #, c-format
+ msgid " Error: The length is less than the length of an EMH record\n"
+ msgstr " Грешка: дужина је мања од дужине „EMH“ снимка\n"
+
+-#: vms-alpha.c:5952
++#: vms-alpha.c:5949
+ #, c-format
+ msgid " Error: The record length is less than the size of an EMH_MHD record\n"
+ msgstr " Грешка: дужина снимка је мања од величине „EMH_MHD“ снимка\n"
+
+-#: vms-alpha.c:5955
++#: vms-alpha.c:5952
+ #, c-format
+ msgid "Module header\n"
+ msgstr "Заглавље модула\n"
+
+-#: vms-alpha.c:5956
++#: vms-alpha.c:5953
+ #, c-format
+ msgid " structure level: %u\n"
+ msgstr " ниво структуре : %u\n"
+
+-#: vms-alpha.c:5957
++#: vms-alpha.c:5954
+ #, c-format
+ msgid " max record size: %u\n"
+ msgstr " најв. величина бележења: %u\n"
+
+-#: vms-alpha.c:5963
++#: vms-alpha.c:5960
+ #, c-format
+ msgid " Error: The module name is missing\n"
+ msgstr " Грешка: Назив модула недостаје\n"
+
+-#: vms-alpha.c:5969
++#: vms-alpha.c:5966
+ #, c-format
+ msgid " Error: The module name is too long\n"
+ msgstr " Грешка: Назив модула је предуг\n"
+
+-#: vms-alpha.c:5972
++#: vms-alpha.c:5969
+ #, c-format
+ msgid " module name : %.*s\n"
+ msgstr " назив модула : %.*s\n"
+
+-#: vms-alpha.c:5976
++#: vms-alpha.c:5973
+ #, c-format
+ msgid " Error: The module version is missing\n"
+ msgstr " Грешка: Издање модула недостаје\n"
+
+-#: vms-alpha.c:5982
++#: vms-alpha.c:5979
+ #, c-format
+ msgid " Error: The module version is too long\n"
+ msgstr " Грешка: Издање модула је предуго\n"
+
+-#: vms-alpha.c:5985
++#: vms-alpha.c:5982
+ #, c-format
+ msgid " module version : %.*s\n"
+ msgstr " издање модула : %.*s\n"
+
+-#: vms-alpha.c:5988
++#: vms-alpha.c:5985
+ #, c-format
+ msgid " Error: The compile date is truncated\n"
+ msgstr " Грешка: Датум превођења је скраћен\n"
+
+-#: vms-alpha.c:5990
++#: vms-alpha.c:5987
+ #, c-format
+ msgid " compile date : %.17s\n"
+ msgstr " датум превођења : %.17s\n"
+
+-#: vms-alpha.c:5995
++#: vms-alpha.c:5992
+ #, c-format
+ msgid "Language Processor Name\n"
+ msgstr "Назив језика процесора\n"
+
+-#: vms-alpha.c:5996
++#: vms-alpha.c:5993
+ #, c-format
+ msgid " language name: %.*s\n"
+ msgstr " назив језика: %.*s\n"
+
+-#: vms-alpha.c:6000
++#: vms-alpha.c:5997
+ #, c-format
+ msgid "Source Files Header\n"
+ msgstr "Заглавље датотека извора\n"
+
+-#: vms-alpha.c:6001
++#: vms-alpha.c:5998
+ #, c-format
+ msgid " file: %.*s\n"
+ msgstr " датотека: %.*s\n"
+
+-#: vms-alpha.c:6005
++#: vms-alpha.c:6002
+ #, c-format
+ msgid "Title Text Header\n"
+ msgstr "Заглавље текста наслова\n"
+
+-#: vms-alpha.c:6006
++#: vms-alpha.c:6003
+ #, c-format
+ msgid " title: %.*s\n"
+ msgstr " наслов: %.*s\n"
+
+-#: vms-alpha.c:6010
++#: vms-alpha.c:6007
+ #, c-format
+ msgid "Copyright Header\n"
+ msgstr "Заглавље ауторских права\n"
+
+-#: vms-alpha.c:6011
++#: vms-alpha.c:6008
+ #, c-format
+ msgid " copyright: %.*s\n"
+ msgstr " ауторска права: %.*s\n"
+
+-#: vms-alpha.c:6015
++#: vms-alpha.c:6012
+ #, c-format
+ msgid "unhandled emh subtype %u\n"
+ msgstr "необрадива emh подврста „%u“\n"
+
+-#: vms-alpha.c:6025
++#: vms-alpha.c:6022
+ #, c-format
+ msgid " EEOM (len=%u):\n"
+ msgstr " EEOM (дужина=%u):\n"
+
+-#: vms-alpha.c:6030
++#: vms-alpha.c:6027
+ #, c-format
+ msgid " Error: The length is less than the length of an EEOM record\n"
+ msgstr " Грешка: дужина је мања од дужине „EEOM“ снимка\n"
+
+-#: vms-alpha.c:6034
++#: vms-alpha.c:6031
+ #, c-format
+ msgid " number of cond linkage pairs: %u\n"
+ msgstr " број „cond“ парова повезивања: %u\n"
+
+-#: vms-alpha.c:6036
++#: vms-alpha.c:6033
+ #, c-format
+ msgid " completion code: %u\n"
+ msgstr " довршавање кода: %u\n"
+
+-#: vms-alpha.c:6040
++#: vms-alpha.c:6037
+ #, c-format
+ msgid " transfer addr flags: 0x%02x\n"
+ msgstr " заставице адресе преноса: 0x%02x\n"
+
+-#: vms-alpha.c:6041
++#: vms-alpha.c:6038
+ #, c-format
+ msgid " transfer addr psect: %u\n"
+ msgstr " п-одељак адресе преноса : %u\n"
+
+-#: vms-alpha.c:6043
++#: vms-alpha.c:6040
+ #, c-format
+ msgid " transfer address : 0x%08x\n"
+ msgstr " адреса преноса : 0x%08x\n"
+
+-#: vms-alpha.c:6052
++#: vms-alpha.c:6049
+ msgid " WEAK"
+ msgstr " WEAK"
+
+-#: vms-alpha.c:6054
++#: vms-alpha.c:6051
+ msgid " DEF"
+ msgstr " DEF"
+
+-#: vms-alpha.c:6056
++#: vms-alpha.c:6053
+ msgid " UNI"
+ msgstr " UNI"
+
+-#: vms-alpha.c:6058 vms-alpha.c:6079
++#: vms-alpha.c:6055 vms-alpha.c:6076
+ msgid " REL"
+ msgstr " REL"
+
+-#: vms-alpha.c:6060
++#: vms-alpha.c:6057
+ msgid " COMM"
+ msgstr " COMM"
+
+-#: vms-alpha.c:6062
++#: vms-alpha.c:6059
+ msgid " VECEP"
+ msgstr " VECEP"
+
+-#: vms-alpha.c:6064
++#: vms-alpha.c:6061
+ msgid " NORM"
+ msgstr " NORM"
+
+-#: vms-alpha.c:6066
++#: vms-alpha.c:6063
+ msgid " QVAL"
+ msgstr " QVAL"
+
+-#: vms-alpha.c:6073
++#: vms-alpha.c:6070
+ msgid " PIC"
+ msgstr " PIC"
+
+-#: vms-alpha.c:6075
++#: vms-alpha.c:6072
+ msgid " LIB"
+ msgstr " LIB"
+
+-#: vms-alpha.c:6077
++#: vms-alpha.c:6074
+ msgid " OVR"
+ msgstr " OVR"
+
+-#: vms-alpha.c:6081
++#: vms-alpha.c:6078
+ msgid " GBL"
+ msgstr " GBL"
+
+-#: vms-alpha.c:6083
++#: vms-alpha.c:6080
+ msgid " SHR"
+ msgstr " SHR"
+
+-#: vms-alpha.c:6085
++#: vms-alpha.c:6082
+ msgid " EXE"
+ msgstr " EXE"
+
+-#: vms-alpha.c:6087
++#: vms-alpha.c:6084
+ msgid " RD"
+ msgstr " RD"
+
+-#: vms-alpha.c:6089
++#: vms-alpha.c:6086
+ msgid " WRT"
+ msgstr " WRT"
+
+-#: vms-alpha.c:6091
++#: vms-alpha.c:6088
+ msgid " VEC"
+ msgstr " VEC"
+
+-#: vms-alpha.c:6093
++#: vms-alpha.c:6090
+ msgid " NOMOD"
+ msgstr " NOMOD"
+
+-#: vms-alpha.c:6095
++#: vms-alpha.c:6092
+ msgid " COM"
+ msgstr " COM"
+
+-#: vms-alpha.c:6097
++#: vms-alpha.c:6094
+ msgid " 64B"
+ msgstr " 64B"
+
+-#: vms-alpha.c:6106
++#: vms-alpha.c:6103
+ #, c-format
+ msgid " EGSD (len=%u):\n"
+ msgstr " EGSD (дужина=%u):\n"
+
+-#: vms-alpha.c:6119
++#: vms-alpha.c:6118
+ #, c-format
+ msgid " EGSD entry %2u (type: %u, len: %u): "
+-msgstr " „EGSD“ унос „%2u“ (врстаype: %u, дужина: %u): "
++msgstr " „EGSD“ унос „%2u“ (врста: %u, дужина: %u): "
+
+-#: vms-alpha.c:6125 vms-alpha.c:6376
++#: vms-alpha.c:6124 vms-alpha.c:6419
+ #, c-format
+-msgid " Error: length larger than remaining space in record\n"
+-msgstr " Грешка: дужина је већа од преосталог простора у снимку\n"
++msgid " Erroneous length\n"
++msgstr " Погрешна дужина\n"
+
+ #: vms-alpha.c:6137
+ #, c-format
+ msgid "PSC - Program section definition\n"
+ msgstr "PSC — Дефиниција одељка програма\n"
+
+-#: vms-alpha.c:6138 vms-alpha.c:6155
++#: vms-alpha.c:6138 vms-alpha.c:6158
+ #, c-format
+ msgid " alignment : 2**%u\n"
+ msgstr " поравнање : 2**%u\n"
+
+-#: vms-alpha.c:6139 vms-alpha.c:6156
++#: vms-alpha.c:6139 vms-alpha.c:6159
+ #, c-format
+ msgid " flags : 0x%04x"
+ msgstr " заставице : 0x%04x"
+@@ -6663,1110 +6748,1110 @@ msgstr " заставице : 0x%04x"
+ msgid " alloc (len): %u (0x%08x)\n"
+ msgstr " додела (дужина): %u (0x%08x)\n"
+
+-#: vms-alpha.c:6144 vms-alpha.c:6201 vms-alpha.c:6250
++#: vms-alpha.c:6145 vms-alpha.c:6211 vms-alpha.c:6279
+ #, c-format
+ msgid " name : %.*s\n"
+ msgstr " назив : %.*s\n"
+
+-#: vms-alpha.c:6154
++#: vms-alpha.c:6157
+ #, c-format
+ msgid "SPSC - Shared Image Program section def\n"
+ msgstr "SPSC — Дефиниција одељка програма дељене слике\n"
+
+-#: vms-alpha.c:6160
++#: vms-alpha.c:6163
+ #, c-format
+ msgid " alloc (len) : %u (0x%08x)\n"
+ msgstr " додела (дужина) : %u (0x%08x)\n"
+
+-#: vms-alpha.c:6161
++#: vms-alpha.c:6164
+ #, c-format
+ msgid " image offset : 0x%08x\n"
+ msgstr " померај слике: 0x%08x\n"
+
+-#: vms-alpha.c:6163
++#: vms-alpha.c:6166
+ #, c-format
+ msgid " symvec offset : 0x%08x\n"
+ msgstr " померај симвек-а : 0x%08x\n"
+
+-#: vms-alpha.c:6165
++#: vms-alpha.c:6169
+ #, c-format
+ msgid " name : %.*s\n"
+ msgstr " назив : %.*s\n"
+
+-#: vms-alpha.c:6178
++#: vms-alpha.c:6185
+ #, c-format
+ msgid "SYM - Global symbol definition\n"
+ msgstr "SYM — Дефиниција општег симбола\n"
+
+-#: vms-alpha.c:6179 vms-alpha.c:6239 vms-alpha.c:6260 vms-alpha.c:6279
++#: vms-alpha.c:6186 vms-alpha.c:6267 vms-alpha.c:6291 vms-alpha.c:6314
+ #, c-format
+ msgid " flags: 0x%04x"
+ msgstr " заставице : 0x%04x"
+
+-#: vms-alpha.c:6182
++#: vms-alpha.c:6189
+ #, c-format
+ msgid " psect offset: 0x%08x\n"
+ msgstr " померај п-одељка: 0x%08x\n"
+
+-#: vms-alpha.c:6186
++#: vms-alpha.c:6193
+ #, c-format
+ msgid " code address: 0x%08x\n"
+ msgstr " адреса кода: 0x%08x\n"
+
+-#: vms-alpha.c:6188
++#: vms-alpha.c:6195
+ #, c-format
+ msgid " psect index for entry point : %u\n"
+ msgstr " индекс п-одељка за тачку уноса: %u\n"
+
+-#: vms-alpha.c:6191 vms-alpha.c:6267 vms-alpha.c:6286
++#: vms-alpha.c:6198 vms-alpha.c:6298 vms-alpha.c:6321
+ #, c-format
+ msgid " psect index : %u\n"
+ msgstr " индекс п-одељка : %u\n"
+
+-#: vms-alpha.c:6193 vms-alpha.c:6269 vms-alpha.c:6288
++#: vms-alpha.c:6201 vms-alpha.c:6301 vms-alpha.c:6324
+ #, c-format
+ msgid " name : %.*s\n"
+ msgstr " назив : %.*s\n"
+
+-#: vms-alpha.c:6200
++#: vms-alpha.c:6209
+ #, c-format
+ msgid "SYM - Global symbol reference\n"
+ msgstr "SYM — Упута општег симбола\n"
+
+-#: vms-alpha.c:6212
++#: vms-alpha.c:6224
+ #, c-format
+ msgid "IDC - Ident Consistency check\n"
+ msgstr "IDC — Провера доследности увлачења\n"
+
+-#: vms-alpha.c:6213
++#: vms-alpha.c:6225
+ #, c-format
+ msgid " flags : 0x%08x"
+ msgstr " заставице : 0x%08x"
+
+-#: vms-alpha.c:6217
++#: vms-alpha.c:6229
+ #, c-format
+ msgid " id match : %x\n"
+ msgstr " подударање ид-а : %x\n"
+
+-#: vms-alpha.c:6219
++#: vms-alpha.c:6231
+ #, c-format
+ msgid " error severity: %x\n"
+ msgstr " озбиљност грешке: %x\n"
+
+-#: vms-alpha.c:6222
++#: vms-alpha.c:6235
+ #, c-format
+ msgid " entity name : %.*s\n"
+ msgstr " назив ентитета : %.*s\n"
+
+-#: vms-alpha.c:6224
++#: vms-alpha.c:6241
+ #, c-format
+ msgid " object name : %.*s\n"
+ msgstr " назив објекта : %.*s\n"
+
+-#: vms-alpha.c:6227
++#: vms-alpha.c:6250
+ #, c-format
+ msgid " binary ident : 0x%08x\n"
+ msgstr " увлачење бинарног : 0x%08x\n"
+
+-#: vms-alpha.c:6230
++#: vms-alpha.c:6254
+ #, c-format
+ msgid " ascii ident : %.*s\n"
+ msgstr " аскри увлачење : %.*s\n"
+
+-#: vms-alpha.c:6238
++#: vms-alpha.c:6266
+ #, c-format
+ msgid "SYMG - Universal symbol definition\n"
+ msgstr "SYMG — Дефиниција универзалног симбола\n"
+
+-#: vms-alpha.c:6242
++#: vms-alpha.c:6270
+ #, c-format
+ msgid " symbol vector offset: 0x%08x\n"
+ msgstr " померај вектора симбола: 0x%08x\n"
+
+-#: vms-alpha.c:6244
++#: vms-alpha.c:6272
+ #, c-format
+ msgid " entry point: 0x%08x\n"
+ msgstr " тачка уноса: 0x%08x\n"
+
+-#: vms-alpha.c:6246
++#: vms-alpha.c:6274
+ #, c-format
+ msgid " proc descr : 0x%08x\n"
+ msgstr " описник процеса : 0x%08x\n"
+
+-#: vms-alpha.c:6248
++#: vms-alpha.c:6276
+ #, c-format
+ msgid " psect index: %u\n"
+ msgstr " индекс п-одељка: %u\n"
+
+-#: vms-alpha.c:6259
++#: vms-alpha.c:6290
+ #, c-format
+ msgid "SYMV - Vectored symbol definition\n"
+ msgstr "SYMV — Дефиниција векторисаног симбола\n"
+
+-#: vms-alpha.c:6263
++#: vms-alpha.c:6294
+ #, c-format
+ msgid " vector : 0x%08x\n"
+ msgstr " вектор : 0x%08x\n"
+
+-#: vms-alpha.c:6265 vms-alpha.c:6284
++#: vms-alpha.c:6296 vms-alpha.c:6319
+ #, c-format
+ msgid " psect offset: %u\n"
+ msgstr " померај п-одељка: %u\n"
+
+-#: vms-alpha.c:6278
++#: vms-alpha.c:6313
+ #, c-format
+ msgid "SYMM - Global symbol definition with version\n"
+ msgstr "SYMM — Општа дефиниција симбола са верзијом\n"
+
+-#: vms-alpha.c:6282
++#: vms-alpha.c:6317
+ #, c-format
+ msgid " version mask: 0x%08x\n"
+ msgstr " маска верзије: 0x%08x\n"
+
+-#: vms-alpha.c:6293
++#: vms-alpha.c:6330
+ #, c-format
+ msgid "unhandled egsd entry type %u\n"
+ msgstr "необрадив „egsd“ унос врсте %u\n"
+
+-#: vms-alpha.c:6328
++#: vms-alpha.c:6369
+ #, c-format
+ msgid " linkage index: %u, replacement insn: 0x%08x\n"
+ msgstr " индекс повезивања: %u, инструкција премештања: 0x%08x\n"
+
+-#: vms-alpha.c:6332
++#: vms-alpha.c:6373
+ #, c-format
+ msgid " psect idx 1: %u, offset 1: 0x%08x %08x\n"
+ msgstr " индекс п-одељка 1: %u, померај 1: 0x%08x %08x\n"
+
+-#: vms-alpha.c:6337
++#: vms-alpha.c:6378
+ #, c-format
+ msgid " psect idx 2: %u, offset 2: 0x%08x %08x\n"
+ msgstr " индекс п-одељка 2: %u, померај 2: 0x%08x %08x\n"
+
+-#: vms-alpha.c:6343
++#: vms-alpha.c:6384
+ #, c-format
+ msgid " psect idx 3: %u, offset 3: 0x%08x %08x\n"
+ msgstr " индекс п-одељка 3: %u, померај 3: 0x%08x %08x\n"
+
+-#: vms-alpha.c:6348
++#: vms-alpha.c:6389
+ #, c-format
+ msgid " global name: %.*s\n"
+ msgstr " општи назив: %.*s\n"
+
+-#: vms-alpha.c:6359
++#: vms-alpha.c:6401
+ #, c-format
+-msgid " %s (len=%u+%u):\n"
+-msgstr " %s (дужина=%u+%u):\n"
++msgid " %s (len=%u):\n"
++msgstr " %s (дужина=%u):\n"
+
+-#: vms-alpha.c:6381
++#: vms-alpha.c:6424
+ #, c-format
+-msgid " (type: %3u, size: 4+%3u): "
+-msgstr " (врста: %3u, величина: 4+%3u): "
++msgid " (type: %3u, size: %3u): "
++msgstr " (врста: %3u, величина: %3u): "
+
+-#: vms-alpha.c:6385
++#: vms-alpha.c:6430
+ #, c-format
+ msgid "STA_GBL (stack global) %.*s\n"
+ msgstr "STA_GBL (општост спремника) %.*s\n"
+
+-#: vms-alpha.c:6389
++#: vms-alpha.c:6434
+ #, c-format
+-msgid "STA_LW (stack longword) 0x%08x\n"
+-msgstr "STA_LW (дуга реч спремника) 0x%08x\n"
++msgid "STA_LW (stack longword)"
++msgstr "STA_LW (дуга реч спремника)"
+
+-#: vms-alpha.c:6393
++#: vms-alpha.c:6440
+ #, c-format
+-msgid "STA_QW (stack quadword) 0x%08x %08x\n"
+-msgstr "STA_QW (четворореч спремника) 0x%08x %08x\n"
++msgid "STA_QW (stack quadword)"
++msgstr "STA_QW (четворострука реч спремника)"
+
+-#: vms-alpha.c:6398
++#: vms-alpha.c:6447
+ #, c-format
+ msgid "STA_PQ (stack psect base + offset)\n"
+ msgstr "STA_PQ (основа п-одељка спремника + померај)\n"
+
+-#: vms-alpha.c:6400
++#: vms-alpha.c:6450
+ #, c-format
+ msgid " psect: %u, offset: 0x%08x %08x\n"
+ msgstr " п-одељак: %u, померај: 0x%08x %08x\n"
+
+-#: vms-alpha.c:6406
++#: vms-alpha.c:6456
+ #, c-format
+ msgid "STA_LI (stack literal)\n"
+ msgstr "STA_LI (дословност спремника)\n"
+
+-#: vms-alpha.c:6409
++#: vms-alpha.c:6459
+ #, c-format
+ msgid "STA_MOD (stack module)\n"
+ msgstr "STA_MOD (модул спремника)\n"
+
+-#: vms-alpha.c:6412
++#: vms-alpha.c:6462
+ #, c-format
+ msgid "STA_CKARG (compare procedure argument)\n"
+ msgstr "STA_CKARG (аргумент поступка поређења)\n"
+
+-#: vms-alpha.c:6416
++#: vms-alpha.c:6466
+ #, c-format
+ msgid "STO_B (store byte)\n"
+ msgstr "STO_B (смешта бајт)\n"
+
+-#: vms-alpha.c:6419
++#: vms-alpha.c:6469
+ #, c-format
+ msgid "STO_W (store word)\n"
+ msgstr "STO_W (смешта реч)\n"
+
+-#: vms-alpha.c:6422
++#: vms-alpha.c:6472
+ #, c-format
+ msgid "STO_LW (store longword)\n"
+ msgstr "STO_LW (смешта дугу реч)\n"
+
+-#: vms-alpha.c:6425
++#: vms-alpha.c:6475
+ #, c-format
+ msgid "STO_QW (store quadword)\n"
+ msgstr "STO_QW (смешта четворореч)\n"
+
+-#: vms-alpha.c:6431
++#: vms-alpha.c:6482
+ #, c-format
+ msgid "STO_IMMR (store immediate repeat) %u bytes\n"
+ msgstr "STO_IMMR (смешта моментално понављање) %u бајта\n"
+
+-#: vms-alpha.c:6438
++#: vms-alpha.c:6491
+ #, c-format
+ msgid "STO_GBL (store global) %.*s\n"
+ msgstr "STO_GBL (смешта опште) %.*s\n"
+
+-#: vms-alpha.c:6442
++#: vms-alpha.c:6496
+ #, c-format
+ msgid "STO_CA (store code address) %.*s\n"
+ msgstr "STO_CA (смешта адресу кода) %.*s\n"
+
+-#: vms-alpha.c:6446
++#: vms-alpha.c:6500
+ #, c-format
+ msgid "STO_RB (store relative branch)\n"
+ msgstr "STO_RB (смешта релативну грану)\n"
+
+-#: vms-alpha.c:6449
++#: vms-alpha.c:6503
+ #, c-format
+ msgid "STO_AB (store absolute branch)\n"
+ msgstr "STO_AB (смешта апсолутну грану)\n"
+
+-#: vms-alpha.c:6452
++#: vms-alpha.c:6506
+ #, c-format
+ msgid "STO_OFF (store offset to psect)\n"
+ msgstr "STO_OFF (смешта померај у п-одељак)\n"
+
+-#: vms-alpha.c:6458
++#: vms-alpha.c:6513
+ #, c-format
+ msgid "STO_IMM (store immediate) %u bytes\n"
+ msgstr "STO_IMM (смешта моментално) %u бајта\n"
+
+-#: vms-alpha.c:6465
++#: vms-alpha.c:6522
+ #, c-format
+ msgid "STO_GBL_LW (store global longword) %.*s\n"
+ msgstr "STO_GBL_LW (смешта општу дугу реч) %.*s\n"
+
+-#: vms-alpha.c:6469
++#: vms-alpha.c:6526
+ #, c-format
+ msgid "STO_OFF (store LP with procedure signature)\n"
+ msgstr "STO_OFF (смешта ЛП са потписом поступка)\n"
+
+-#: vms-alpha.c:6472
++#: vms-alpha.c:6529
+ #, c-format
+ msgid "STO_BR_GBL (store branch global) *todo*\n"
+ msgstr "STO_BR_GBL (смешта општост гране) *урадити*\n"
+
+-#: vms-alpha.c:6475
++#: vms-alpha.c:6532
+ #, c-format
+ msgid "STO_BR_PS (store branch psect + offset) *todo*\n"
+ msgstr "STO_BR_PS (смешта п-одељак + померај гране) *урадити*\n"
+
+-#: vms-alpha.c:6479
++#: vms-alpha.c:6536
+ #, c-format
+ msgid "OPR_NOP (no-operation)\n"
+ msgstr "OPR_NOP (без радње)\n"
+
+-#: vms-alpha.c:6482
++#: vms-alpha.c:6539
+ #, c-format
+ msgid "OPR_ADD (add)\n"
+ msgstr "OPR_ADD (збраја)\n"
+
+-#: vms-alpha.c:6485
++#: vms-alpha.c:6542
+ #, c-format
+ msgid "OPR_SUB (subtract)\n"
+ msgstr "OPR_SUB (одузима)\n"
+
+-#: vms-alpha.c:6488
++#: vms-alpha.c:6545
+ #, c-format
+ msgid "OPR_MUL (multiply)\n"
+ msgstr "OPR_MUL (множи)\n"
+
+-#: vms-alpha.c:6491
++#: vms-alpha.c:6548
+ #, c-format
+ msgid "OPR_DIV (divide)\n"
+ msgstr "OPR_DIV (дели)\n"
+
+-#: vms-alpha.c:6494
++#: vms-alpha.c:6551
+ #, c-format
+ msgid "OPR_AND (logical and)\n"
+ msgstr "OPR_AND (логичко И)\n"
+
+-#: vms-alpha.c:6497
++#: vms-alpha.c:6554
+ #, c-format
+ msgid "OPR_IOR (logical inclusive or)\n"
+ msgstr "OPR_IOR (логичко укључиво ИЛИ)\n"
+
+-#: vms-alpha.c:6500
++#: vms-alpha.c:6557
+ #, c-format
+ msgid "OPR_EOR (logical exclusive or)\n"
+ msgstr "OPR_EOR (логичко искључиво ИЛИ)\n"
+
+-#: vms-alpha.c:6503
++#: vms-alpha.c:6560
+ #, c-format
+ msgid "OPR_NEG (negate)\n"
+ msgstr "OPR_NEG (негација)\n"
+
+-#: vms-alpha.c:6506
++#: vms-alpha.c:6563
+ #, c-format
+ msgid "OPR_COM (complement)\n"
+ msgstr "OPR_COM (комплемент)\n"
+
+-#: vms-alpha.c:6509
++#: vms-alpha.c:6566
+ #, c-format
+ msgid "OPR_INSV (insert field)\n"
+ msgstr "OPR_INSV (умеће поље)\n"
+
+-#: vms-alpha.c:6512
++#: vms-alpha.c:6569
+ #, c-format
+ msgid "OPR_ASH (arithmetic shift)\n"
+ msgstr "OPR_ASH (аритметички помак)\n"
+
+-#: vms-alpha.c:6515
++#: vms-alpha.c:6572
+ #, c-format
+ msgid "OPR_USH (unsigned shift)\n"
+ msgstr "OPR_USH (помак без знака)\n"
+
+-#: vms-alpha.c:6518
++#: vms-alpha.c:6575
+ #, c-format
+ msgid "OPR_ROT (rotate)\n"
+ msgstr "OPR_ROT (окреће)\n"
+
+-#: vms-alpha.c:6521
++#: vms-alpha.c:6578
+ #, c-format
+ msgid "OPR_SEL (select)\n"
+ msgstr "OPR_SEL (бира)\n"
+
+-#: vms-alpha.c:6524
++#: vms-alpha.c:6581
+ #, c-format
+ msgid "OPR_REDEF (redefine symbol to curr location)\n"
+ msgstr "OPR_REDEF (поново дефинише симбол текуће локације)\n"
+
+-#: vms-alpha.c:6527
++#: vms-alpha.c:6584
+ #, c-format
+ msgid "OPR_REDEF (define a literal)\n"
+ msgstr "OPR_REDEF (дефинише дословност)\n"
+
+-#: vms-alpha.c:6531
++#: vms-alpha.c:6588
+ #, c-format
+ msgid "STC_LP (store cond linkage pair)\n"
+ msgstr "STC_LP (смешта пар повезивања услова)\n"
+
+-#: vms-alpha.c:6535
++#: vms-alpha.c:6592
+ #, c-format
+ msgid "STC_LP_PSB (store cond linkage pair + signature)\n"
+ msgstr "STC_LP_PSB (смешта пар повезивања услова + потпис)\n"
+
+-#: vms-alpha.c:6537
++#: vms-alpha.c:6596
+ #, c-format
+ msgid " linkage index: %u, procedure: %.*s\n"
+ msgstr " индекс повезивања: %u, поступак: %.*s\n"
+
+-#: vms-alpha.c:6540
++#: vms-alpha.c:6603
+ #, c-format
+ msgid " signature: %.*s\n"
+ msgstr " потпис: %.*s\n"
+
+-#: vms-alpha.c:6543
++#: vms-alpha.c:6609
+ #, c-format
+ msgid "STC_GBL (store cond global)\n"
+ msgstr "STC_GBL (смешта општост услова)\n"
+
+-#: vms-alpha.c:6545
++#: vms-alpha.c:6612
+ #, c-format
+ msgid " linkage index: %u, global: %.*s\n"
+ msgstr " индекс повезивања: %u, опште: %.*s\n"
+
+-#: vms-alpha.c:6549
++#: vms-alpha.c:6617
+ #, c-format
+ msgid "STC_GCA (store cond code address)\n"
+ msgstr "STC_GCA (смешта адресу кода услова)\n"
+
+-#: vms-alpha.c:6551
++#: vms-alpha.c:6620
+ #, c-format
+ msgid " linkage index: %u, procedure name: %.*s\n"
+ msgstr " индекс повезивања: %u, назив поступка: %.*s\n"
+
+-#: vms-alpha.c:6555
++#: vms-alpha.c:6625
+ #, c-format
+ msgid "STC_PS (store cond psect + offset)\n"
+ msgstr "STC_PS (смешта п-одељак + померај услова)\n"
+
+-#: vms-alpha.c:6558
++#: vms-alpha.c:6629
+ #, c-format
+ msgid " linkage index: %u, psect: %u, offset: 0x%08x %08x\n"
+ msgstr " индекс повезивања: %u, п-одељак: %u, померај: 0x%08x %08x\n"
+
+-#: vms-alpha.c:6565
++#: vms-alpha.c:6636
+ #, c-format
+ msgid "STC_NOP_GBL (store cond NOP at global addr)\n"
+ msgstr "STC_NOP_GBL (смешта „NOP“ услова на општој адреси)\n"
+
+-#: vms-alpha.c:6569
++#: vms-alpha.c:6640
+ #, c-format
+ msgid "STC_NOP_PS (store cond NOP at psect + offset)\n"
+ msgstr "STC_NOP_PS (смешта „NOP“ услова на п-одељку + померај)\n"
+
+-#: vms-alpha.c:6573
++#: vms-alpha.c:6644
+ #, c-format
+ msgid "STC_BSR_GBL (store cond BSR at global addr)\n"
+ msgstr "STC_BSR_GBL (смешта „BSR“ услова на општој адреси)\n"
+
+-#: vms-alpha.c:6577
++#: vms-alpha.c:6648
+ #, c-format
+ msgid "STC_BSR_PS (store cond BSR at psect + offset)\n"
+ msgstr "STC_BSR_PS (смешта „BSR“ услова на п-одељку + померај)\n"
+
+-#: vms-alpha.c:6581
++#: vms-alpha.c:6652
+ #, c-format
+ msgid "STC_LDA_GBL (store cond LDA at global addr)\n"
+ msgstr "STC_LDA_GBL (смешта „LDA“ услова на општој адреси)\n"
+
+-#: vms-alpha.c:6585
++#: vms-alpha.c:6656
+ #, c-format
+ msgid "STC_LDA_PS (store cond LDA at psect + offset)\n"
+ msgstr "STC_LDA_PS (смешта „LDA“ услова на п-одељку + померај)\n"
+
+-#: vms-alpha.c:6589
++#: vms-alpha.c:6660
+ #, c-format
+ msgid "STC_BOH_GBL (store cond BOH at global addr)\n"
+ msgstr "STC_BOH_GBL (смешта „BOH“ услова на општој адреси)\n"
+
+-#: vms-alpha.c:6593
++#: vms-alpha.c:6664
+ #, c-format
+ msgid "STC_BOH_PS (store cond BOH at psect + offset)\n"
+ msgstr "STC_BOH_PS (смешта „BOH“ услова на п-одељку + померај)\n"
+
+-#: vms-alpha.c:6598
++#: vms-alpha.c:6669
+ #, c-format
+ msgid "STC_NBH_GBL (store cond or hint at global addr)\n"
+ msgstr "STC_NBH_GBL (смешта услов или најаву на општој адреси)\n"
+
+-#: vms-alpha.c:6602
++#: vms-alpha.c:6673
+ #, c-format
+ msgid "STC_NBH_PS (store cond or hint at psect + offset)\n"
+ msgstr "STC_NBH_PS (смешта услов или најаву на п-одељку + померај)\n"
+
+-#: vms-alpha.c:6606
++#: vms-alpha.c:6677
+ #, c-format
+ msgid "CTL_SETRB (set relocation base)\n"
+ msgstr "CTL_SETRB (поставља основу премештања)\n"
+
+-#: vms-alpha.c:6612
++#: vms-alpha.c:6683
+ #, c-format
+ msgid "CTL_AUGRB (augment relocation base) %u\n"
+ msgstr "CTL_AUGRB (повећава основу премештања) %u\n"
+
+-#: vms-alpha.c:6616
++#: vms-alpha.c:6688
+ #, c-format
+ msgid "CTL_DFLOC (define location)\n"
+ msgstr "CTL_DFLOC (дефинише место)\n"
+
+-#: vms-alpha.c:6619
++#: vms-alpha.c:6691
+ #, c-format
+ msgid "CTL_STLOC (set location)\n"
+ msgstr "CTL_STLOC (поставља место)\n"
+
+-#: vms-alpha.c:6622
++#: vms-alpha.c:6694
+ #, c-format
+ msgid "CTL_STKDL (stack defined location)\n"
+ msgstr "CTL_STKDL (спремником дефинисано место)\n"
+
+-#: vms-alpha.c:6625 vms-alpha.c:7049 vms-alpha.c:7175
++#: vms-alpha.c:6697 vms-alpha.c:7140 vms-alpha.c:7301
+ #, c-format
+ msgid "*unhandled*\n"
+ msgstr "*необрадиво*\n"
+
+-#: vms-alpha.c:6655 vms-alpha.c:6694
++#: vms-alpha.c:6727 vms-alpha.c:6766
+ #, c-format
+ msgid "cannot read GST record length\n"
+ msgstr "не могу да читам дужину „GST“ записа\n"
+
+ #. Ill-formed.
+-#: vms-alpha.c:6676
++#: vms-alpha.c:6748
+ #, c-format
+ msgid "cannot find EMH in first GST record\n"
+ msgstr "не могу да нађем „EMH“ у првом „GST“ запису\n"
+
+-#: vms-alpha.c:6702
++#: vms-alpha.c:6774
+ #, c-format
+ msgid "cannot read GST record header\n"
+ msgstr "не могу да прочитам заглавље „GST“ записа\n"
+
+-#: vms-alpha.c:6715
++#: vms-alpha.c:6787
+ #, c-format
+ msgid " corrupted GST\n"
+ msgstr " оштећено „GST“\n"
+
+-#: vms-alpha.c:6723
++#: vms-alpha.c:6795
+ #, c-format
+ msgid "cannot read GST record\n"
+ msgstr "не могу да читам „GST“ запис\n"
+
+-#: vms-alpha.c:6752
++#: vms-alpha.c:6824
+ #, c-format
+ msgid " unhandled EOBJ record type %u\n"
+ msgstr " необрадив „EOBJ“ унос врсте %u\n"
+
+-#: vms-alpha.c:6776
++#: vms-alpha.c:6849
+ #, c-format
+ msgid " bitcount: %u, base addr: 0x%08x\n"
+ msgstr " број бита: %u, основна адреса: 0x%08x\n"
+
+-#: vms-alpha.c:6790
++#: vms-alpha.c:6863
+ #, c-format
+ msgid " bitmap: 0x%08x (count: %u):\n"
+ msgstr " мапа бита: 0x%08x (укупно: %u):\n"
+
+-#: vms-alpha.c:6797
++#: vms-alpha.c:6870
+ #, c-format
+ msgid " %08x"
+ msgstr " %08x"
+
+-#: vms-alpha.c:6823
++#: vms-alpha.c:6897
+ #, c-format
+ msgid " image %u (%u entries)\n"
+ msgstr " слика %u (%u уноса)\n"
+
+-#: vms-alpha.c:6829
++#: vms-alpha.c:6903
+ #, c-format
+ msgid " offset: 0x%08x, val: 0x%08x\n"
+ msgstr " померај: 0x%08x, вредност: 0x%08x\n"
+
+-#: vms-alpha.c:6851
++#: vms-alpha.c:6926
+ #, c-format
+ msgid " image %u (%u entries), offsets:\n"
+ msgstr " слика %u (%u уноса), померај:\n"
+
+-#: vms-alpha.c:6858
++#: vms-alpha.c:6933
+ #, c-format
+ msgid " 0x%08x"
+ msgstr " 0x%08x"
+
+ #. 64 bits.
+-#: vms-alpha.c:6980
++#: vms-alpha.c:7059
+ #, c-format
+ msgid "64 bits *unhandled*\n"
+ msgstr "64 бита *није подржано*\n"
+
+-#: vms-alpha.c:6985
++#: vms-alpha.c:7064
+ #, c-format
+ msgid "class: %u, dtype: %u, length: %u, pointer: 0x%08x\n"
+ msgstr "класа: %u, д-врста: %u, дужина: %u, показивач: 0x%08x\n"
+
+-#: vms-alpha.c:6996
++#: vms-alpha.c:7075
+ #, c-format
+ msgid "non-contiguous array of %s\n"
+ msgstr "низ „%s“ није непрекидан\n"
+
+-#: vms-alpha.c:7001
++#: vms-alpha.c:7082
+ #, c-format
+ msgid "dimct: %u, aflags: 0x%02x, digits: %u, scale: %u\n"
+ msgstr "димцт: %u, а-заставице: 0x%02x, цифре: %u, размера: %u\n"
+
+-#: vms-alpha.c:7006
++#: vms-alpha.c:7087
+ #, c-format
+ msgid "arsize: %u, a0: 0x%08x\n"
+ msgstr "ар-величина: %u, a0: 0x%08x\n"
+
+-#: vms-alpha.c:7010
++#: vms-alpha.c:7091
+ #, c-format
+ msgid "Strides:\n"
+ msgstr "Кораци:\n"
+
+-#: vms-alpha.c:7020
++#: vms-alpha.c:7105
+ #, c-format
+ msgid "Bounds:\n"
+ msgstr "Границе:\n"
+
+-#: vms-alpha.c:7026
++#: vms-alpha.c:7112
+ #, c-format
+ msgid "[%u]: Lower: %u, upper: %u\n"
+ msgstr "[%u]: Доња: %u, горња: %u\n"
+
+-#: vms-alpha.c:7038
++#: vms-alpha.c:7126
+ #, c-format
+ msgid "unaligned bit-string of %s\n"
+ msgstr "ниска бита „%s“ није поравната\n"
+
+-#: vms-alpha.c:7043
++#: vms-alpha.c:7133
+ #, c-format
+ msgid "base: %u, pos: %u\n"
+ msgstr "основа: %u, положај: %u\n"
+
+-#: vms-alpha.c:7064
++#: vms-alpha.c:7159
+ #, c-format
+ msgid "vflags: 0x%02x, value: 0x%08x "
+ msgstr "в-заставице: 0x%02x, вредност: 0x%08x "
+
+-#: vms-alpha.c:7070
++#: vms-alpha.c:7166
+ #, c-format
+ msgid "(no value)\n"
+ msgstr "(без вредности)\n"
+
+-#: vms-alpha.c:7073
++#: vms-alpha.c:7169
+ #, c-format
+ msgid "(not active)\n"
+ msgstr "(није активно)\n"
+
+-#: vms-alpha.c:7076
++#: vms-alpha.c:7172
+ #, c-format
+ msgid "(not allocated)\n"
+ msgstr "(није додељено)\n"
+
+-#: vms-alpha.c:7079
++#: vms-alpha.c:7175
+ #, c-format
+ msgid "(descriptor)\n"
+ msgstr "(описник)\n"
+
+-#: vms-alpha.c:7083
++#: vms-alpha.c:7180
+ #, c-format
+ msgid "(trailing value)\n"
+ msgstr "(пратећа вредност)\n"
+
+-#: vms-alpha.c:7086
++#: vms-alpha.c:7183
+ #, c-format
+ msgid "(value spec follows)\n"
+ msgstr "(спецификација следеће вредности)\n"
+
+-#: vms-alpha.c:7089
++#: vms-alpha.c:7186
+ #, c-format
+ msgid "(at bit offset %u)\n"
+ msgstr "(померај бита %u)\n"
+
+-#: vms-alpha.c:7093
++#: vms-alpha.c:7190
+ #, c-format
+ msgid "(reg: %u, disp: %u, indir: %u, kind: "
+ msgstr "(регистар: %u, размештај: %u, индиректно: %u, врста: "
+
+-#: vms-alpha.c:7100
++#: vms-alpha.c:7197
+ msgid "literal"
+ msgstr "дословност"
+
+-#: vms-alpha.c:7103
++#: vms-alpha.c:7200
+ msgid "address"
+ msgstr "адреса"
+
+-#: vms-alpha.c:7106
++#: vms-alpha.c:7203
+ msgid "desc"
+ msgstr "опис"
+
+-#: vms-alpha.c:7109
++#: vms-alpha.c:7206
+ msgid "reg"
+ msgstr "рег"
+
+-#: vms-alpha.c:7126
++#: vms-alpha.c:7227
+ #, c-format
+ msgid "len: %2u, kind: %2u "
+ msgstr "дужина: %2u, врста: %2u "
+
+-#: vms-alpha.c:7132
++#: vms-alpha.c:7235
+ #, c-format
+ msgid "atomic, type=0x%02x %s\n"
+ msgstr "атомски, врста=0x%02x %s\n"
+
+-#: vms-alpha.c:7136
++#: vms-alpha.c:7240
+ #, c-format
+ msgid "indirect, defined at 0x%08x\n"
+ msgstr "непосредно, одређено на 0x%08x\n"
+
+-#: vms-alpha.c:7140
++#: vms-alpha.c:7244
+ #, c-format
+ msgid "typed pointer\n"
+ msgstr "укуцани показивач\n"
+
+-#: vms-alpha.c:7144
++#: vms-alpha.c:7248
+ #, c-format
+ msgid "pointer\n"
+ msgstr "показивач\n"
+
+-#: vms-alpha.c:7152
++#: vms-alpha.c:7259
+ #, c-format
+ msgid "array, dim: %u, bitmap: "
+ msgstr "низ, величина: %u, битмапа: "
+
+-#: vms-alpha.c:7159
++#: vms-alpha.c:7274
+ #, c-format
+ msgid "array descriptor:\n"
+ msgstr "описник низа:\n"
+
+-#: vms-alpha.c:7166
++#: vms-alpha.c:7285
+ #, c-format
+ msgid "type spec for element:\n"
+ msgstr "одредба врсте за елемент:\n"
+
+-#: vms-alpha.c:7168
++#: vms-alpha.c:7287
+ #, c-format
+ msgid "type spec for subscript %u:\n"
+ msgstr "одредба врсте за подскрипту „%u“:\n"
+
+-#: vms-alpha.c:7186
++#: vms-alpha.c:7312
+ #, c-format
+ msgid "Debug symbol table:\n"
+ msgstr "Табела симбола прочишћавања:\n"
+
+-#: vms-alpha.c:7197
++#: vms-alpha.c:7323
+ #, c-format
+ msgid "cannot read DST header\n"
+ msgstr "не могу да читам „GST“ заглавље\n"
+
+-#: vms-alpha.c:7203
++#: vms-alpha.c:7329
+ #, c-format
+ msgid " type: %3u, len: %3u (at 0x%08x): "
+ msgstr " врста: %3u, дужина: %3u (при 0x%08x): "
+
+-#: vms-alpha.c:7217
++#: vms-alpha.c:7346
+ #, c-format
+ msgid "cannot read DST symbol\n"
+ msgstr "не могу да читам „DST“ симбол\n"
+
+-#: vms-alpha.c:7260
++#: vms-alpha.c:7390
+ #, c-format
+ msgid "standard data: %s\n"
+ msgstr "стандардни подаци: %s\n"
+
+-#: vms-alpha.c:7263 vms-alpha.c:7351
++#: vms-alpha.c:7393 vms-alpha.c:7516
+ #, c-format
+ msgid " name: %.*s\n"
+ msgstr " назив: %.*s\n"
+
+-#: vms-alpha.c:7270
++#: vms-alpha.c:7400
+ #, c-format
+ msgid "modbeg\n"
+ msgstr "почетак модула\n"
+
+-#: vms-alpha.c:7272
++#: vms-alpha.c:7404
+ #, c-format
+ msgid " flags: %d, language: %u, major: %u, minor: %u\n"
+ msgstr " заставице: %d, језик: %u, већи: %u, мањи: %u\n"
+
+-#: vms-alpha.c:7278 vms-alpha.c:7552
++#: vms-alpha.c:7414 vms-alpha.c:7780
+ #, c-format
+ msgid " module name: %.*s\n"
+ msgstr " назив модула : %.*s\n"
+
+-#: vms-alpha.c:7281
++#: vms-alpha.c:7421
+ #, c-format
+ msgid " compiler : %.*s\n"
+ msgstr " преводилац : %.*s\n"
+
+-#: vms-alpha.c:7286
++#: vms-alpha.c:7428
+ #, c-format
+ msgid "modend\n"
+ msgstr "крај модула\n"
+
+-#: vms-alpha.c:7293
++#: vms-alpha.c:7435
+ msgid "rtnbeg\n"
+ msgstr "почетак рутине\n"
+
+-#: vms-alpha.c:7295
++#: vms-alpha.c:7439
+ #, c-format
+ msgid " flags: %u, address: 0x%08x, pd-address: 0x%08x\n"
+ msgstr " заставице: %u, адреса: 0x%08x, пд-адреса: 0x%08x\n"
+
+-#: vms-alpha.c:7300
++#: vms-alpha.c:7448
+ #, c-format
+ msgid " routine name: %.*s\n"
+ msgstr " назив рутине : %.*s\n"
+
+-#: vms-alpha.c:7308
++#: vms-alpha.c:7459
+ #, c-format
+ msgid "rtnend: size 0x%08x\n"
+ msgstr "крај рутине: величина 0x%08x\n"
+
+-#: vms-alpha.c:7316
++#: vms-alpha.c:7469
+ #, c-format
+ msgid "prolog: bkpt address 0x%08x\n"
+ msgstr "пролог: бкпт адреса 0x%08x\n"
+
+-#: vms-alpha.c:7325
++#: vms-alpha.c:7479
+ #, c-format
+ msgid "epilog: flags: %u, count: %u\n"
+ msgstr "епилог: заставице: %u, број: %u\n"
+
+-#: vms-alpha.c:7335
++#: vms-alpha.c:7494
+ #, c-format
+ msgid "blkbeg: address: 0x%08x, name: %.*s\n"
+ msgstr "блк почетак: адреса: 0x%08x, назив: %.*s\n"
+
+-#: vms-alpha.c:7344
++#: vms-alpha.c:7506
+ #, c-format
+ msgid "blkend: size: 0x%08x\n"
+ msgstr "блк крај: величина: 0x%08x\n"
+
+-#: vms-alpha.c:7350
++#: vms-alpha.c:7512
+ #, c-format
+ msgid "typspec (len: %u)\n"
+ msgstr "одредба врсте (дужина: %u)\n"
+
+-#: vms-alpha.c:7357
++#: vms-alpha.c:7528
+ #, c-format
+ msgid "septyp, name: %.*s\n"
+ msgstr "врста поставке, назив: %.*s\n"
+
+-#: vms-alpha.c:7366
++#: vms-alpha.c:7544
+ #, c-format
+ msgid "recbeg: name: %.*s\n"
+ msgstr "почетак записа: назив: %.*s\n"
+
+-#: vms-alpha.c:7368
++#: vms-alpha.c:7548
+ #, c-format
+ msgid " len: %u bits\n"
+ msgstr " дужина: %u бита\n"
+
+-#: vms-alpha.c:7373
++#: vms-alpha.c:7554
+ #, c-format
+ msgid "recend\n"
+ msgstr "крај записа\n"
+
+-#: vms-alpha.c:7377
++#: vms-alpha.c:7559
+ #, c-format
+ msgid "enumbeg, len: %u, name: %.*s\n"
+ msgstr "почетак бројања, дужина: %u, назив: %.*s\n"
+
+-#: vms-alpha.c:7381
++#: vms-alpha.c:7565
+ #, c-format
+ msgid "enumelt, name: %.*s\n"
+ msgstr "елементи бројања, назив: %.*s\n"
+
+-#: vms-alpha.c:7385
++#: vms-alpha.c:7571
+ #, c-format
+ msgid "enumend\n"
+ msgstr "крај бројања\n"
+
+-#: vms-alpha.c:7390
++#: vms-alpha.c:7578
+ #, c-format
+ msgid "label, name: %.*s\n"
+ msgstr "натпис, назив: %.*s\n"
+
+-#: vms-alpha.c:7392
++#: vms-alpha.c:7581
+ #, c-format
+ msgid " address: 0x%08x\n"
+ msgstr " адреса: 0x%08x\n"
+
+-#: vms-alpha.c:7402
++#: vms-alpha.c:7593
+ #, c-format
+ msgid "discontiguous range (nbr: %u)\n"
+ msgstr "непрекидни опсег (бр.: %u)\n"
+
+-#: vms-alpha.c:7405
++#: vms-alpha.c:7600
+ #, c-format
+ msgid " address: 0x%08x, size: %u\n"
+ msgstr " адреса: 0x%08x, величина: %u\n"
+
+-#: vms-alpha.c:7415
++#: vms-alpha.c:7611
+ #, c-format
+ msgid "line num (len: %u)\n"
+ msgstr "број реда (дужина: %u)\n"
+
+-#: vms-alpha.c:7432
++#: vms-alpha.c:7630
+ #, c-format
+ msgid "delta_pc_w %u\n"
+ msgstr "delta_pc_w %u\n"
+
+-#: vms-alpha.c:7439
++#: vms-alpha.c:7639
+ #, c-format
+ msgid "incr_linum(b): +%u\n"
+ msgstr "incr_linum(b): +%u\n"
+
+-#: vms-alpha.c:7445
++#: vms-alpha.c:7647
+ #, c-format
+ msgid "incr_linum_w: +%u\n"
+ msgstr "incr_linum_w: +%u\n"
+
+-#: vms-alpha.c:7451
++#: vms-alpha.c:7655
+ #, c-format
+ msgid "incr_linum_l: +%u\n"
+ msgstr "incr_linum_l: +%u\n"
+
+-#: vms-alpha.c:7457
++#: vms-alpha.c:7663
+ #, c-format
+ msgid "set_line_num(w) %u\n"
+ msgstr "set_line_num(w) %u\n"
+
+-#: vms-alpha.c:7462
++#: vms-alpha.c:7670
+ #, c-format
+ msgid "set_line_num_b %u\n"
+ msgstr "set_line_num_b %u\n"
+
+-#: vms-alpha.c:7467
++#: vms-alpha.c:7677
+ #, c-format
+ msgid "set_line_num_l %u\n"
+ msgstr "set_line_num_l %u\n"
+
+-#: vms-alpha.c:7472
++#: vms-alpha.c:7684
+ #, c-format
+ msgid "set_abs_pc: 0x%08x\n"
+ msgstr "set_abs_pc: 0x%08x\n"
+
+-#: vms-alpha.c:7476
++#: vms-alpha.c:7690
+ #, c-format
+ msgid "delta_pc_l: +0x%08x\n"
+ msgstr "delta_pc_l: +0x%08x\n"
+
+-#: vms-alpha.c:7481
++#: vms-alpha.c:7697
+ #, c-format
+ msgid "term(b): 0x%02x"
+ msgstr "term(b): 0x%02x"
+
+-#: vms-alpha.c:7483
++#: vms-alpha.c:7699
+ #, c-format
+ msgid " pc: 0x%08x\n"
+ msgstr " pc: 0x%08x\n"
+
+-#: vms-alpha.c:7488
++#: vms-alpha.c:7706
+ #, c-format
+ msgid "term_w: 0x%04x"
+ msgstr "term_w: 0x%04x"
+
+-#: vms-alpha.c:7490
++#: vms-alpha.c:7708
+ #, c-format
+ msgid " pc: 0x%08x\n"
+ msgstr " pc: 0x%08x\n"
+
+-#: vms-alpha.c:7496
++#: vms-alpha.c:7714
+ #, c-format
+ msgid "delta pc +%-4d"
+ msgstr "delta pc +%-4d"
+
+-#: vms-alpha.c:7500
++#: vms-alpha.c:7718
+ #, c-format
+ msgid " pc: 0x%08x line: %5u\n"
+ msgstr " pc: 0x%08x ред: %5u\n"
+
+-#: vms-alpha.c:7505
++#: vms-alpha.c:7723
+ #, c-format
+ msgid " *unhandled* cmd %u\n"
+ msgstr " *необрадива* наредба „%u“\n"
+
+-#: vms-alpha.c:7520
++#: vms-alpha.c:7738
+ #, c-format
+ msgid "source (len: %u)\n"
+ msgstr "извор (дужина: %u)\n"
+
+-#: vms-alpha.c:7535
++#: vms-alpha.c:7757
+ #, c-format
+ msgid " declfile: len: %u, flags: %u, fileid: %u\n"
+ msgstr " declfile: дужина: %u, заставице: %u, ид поља: %u\n"
+
+-#: vms-alpha.c:7540
++#: vms-alpha.c:7762
+ #, c-format
+ msgid " rms: cdt: 0x%08x %08x, ebk: 0x%08x, ffb: 0x%04x, rfo: %u\n"
+ msgstr " rms: cdt: 0x%08x %08x, ebk: 0x%08x, ffb: 0x%04x, rfo: %u\n"
+
+-#: vms-alpha.c:7549
++#: vms-alpha.c:7774
+ #, c-format
+ msgid " filename : %.*s\n"
+ msgstr " назив датотеке: %.*s\n"
+
+-#: vms-alpha.c:7558
++#: vms-alpha.c:7790
+ #, c-format
+ msgid " setfile %u\n"
+ msgstr " setfile %u\n"
+
+-#: vms-alpha.c:7563 vms-alpha.c:7568
++#: vms-alpha.c:7797 vms-alpha.c:7804
+ #, c-format
+ msgid " setrec %u\n"
+ msgstr " setrec %u\n"
+
+-#: vms-alpha.c:7573 vms-alpha.c:7578
++#: vms-alpha.c:7811 vms-alpha.c:7818
+ #, c-format
+ msgid " setlnum %u\n"
+ msgstr " setlnum %u\n"
+
+-#: vms-alpha.c:7583 vms-alpha.c:7588
++#: vms-alpha.c:7825 vms-alpha.c:7832
+ #, c-format
+ msgid " deflines %u\n"
+ msgstr " deflines %u\n"
+
+-#: vms-alpha.c:7592
++#: vms-alpha.c:7836
+ #, c-format
+ msgid " formfeed\n"
+ msgstr " formfeed\n"
+
+-#: vms-alpha.c:7596
++#: vms-alpha.c:7840
+ #, c-format
+ msgid " *unhandled* cmd %u\n"
+ msgstr " *необрадива* наредба „%u“\n"
+
+-#: vms-alpha.c:7608
++#: vms-alpha.c:7852
+ #, c-format
+ msgid "*unhandled* dst type %u\n"
+ msgstr "*необрадива* дст врста „%u“\n"
+
+-#: vms-alpha.c:7640
++#: vms-alpha.c:7884
+ #, c-format
+ msgid "cannot read EIHD\n"
+ msgstr "не могу да читам „EIHD“\n"
+
+-#: vms-alpha.c:7644
++#: vms-alpha.c:7888
+ #, c-format
+ msgid "EIHD: (size: %u, nbr blocks: %u)\n"
+ msgstr "EIHD: (величина: %u, број блокова: %u)\n"
+
+-#: vms-alpha.c:7648
++#: vms-alpha.c:7892
+ #, c-format
+ msgid " majorid: %u, minorid: %u\n"
+ msgstr " већи ид: %u, мањи ид: %u\n"
+
+-#: vms-alpha.c:7656
++#: vms-alpha.c:7900
+ msgid "executable"
+ msgstr "извршна"
+
+-#: vms-alpha.c:7659
++#: vms-alpha.c:7903
+ msgid "linkable image"
+ msgstr "повезива слика"
+
+-#: vms-alpha.c:7666
++#: vms-alpha.c:7910
+ #, c-format
+ msgid " image type: %u (%s)"
+ msgstr " врста слике: %u (%s)"
+
+-#: vms-alpha.c:7672
++#: vms-alpha.c:7916
+ msgid "native"
+ msgstr "изворна"
+
+-#: vms-alpha.c:7675
++#: vms-alpha.c:7919
+ msgid "CLI"
+ msgstr "CLI"
+
+-#: vms-alpha.c:7682
++#: vms-alpha.c:7926
+ #, c-format
+ msgid ", subtype: %u (%s)\n"
+ msgstr ", подврста: %u (%s)\n"
+
+-#: vms-alpha.c:7689
++#: vms-alpha.c:7933
+ #, c-format
+ msgid " offsets: isd: %u, activ: %u, symdbg: %u, imgid: %u, patch: %u\n"
+ msgstr " помераји: исд: %u, активно: %u, проч симб: %u, ид слике: %u, закрпа: %u\n"
+
+-#: vms-alpha.c:7693
++#: vms-alpha.c:7937
+ #, c-format
+ msgid " fixup info rva: "
+ msgstr " поправка инфо рва: "
+
+-#: vms-alpha.c:7695
++#: vms-alpha.c:7939
+ #, c-format
+ msgid ", symbol vector rva: "
+ msgstr ", вектор симбола рва: "
+
+-#: vms-alpha.c:7698
++#: vms-alpha.c:7942
+ #, c-format
+ msgid ""
+ "\n"
+@@ -7775,460 +7860,460 @@ msgstr ""
+ "\n"
+ " померај низа верзије: %u\n"
+
+-#: vms-alpha.c:7703
++#: vms-alpha.c:7947
+ #, c-format
+ msgid " img I/O count: %u, nbr channels: %u, req pri: %08x%08x\n"
+ msgstr " број У/И слике: %u, бр. канала: %u, рек при: %08x%08x\n"
+
+-#: vms-alpha.c:7709
++#: vms-alpha.c:7953
+ #, c-format
+ msgid " linker flags: %08x:"
+ msgstr " заставице повезивача: %08x:"
+
+-#: vms-alpha.c:7740
++#: vms-alpha.c:7984
+ #, c-format
+ msgid " ident: 0x%08x, sysver: 0x%08x, match ctrl: %u, symvect_size: %u\n"
+ msgstr " увлачење: 0x%08x, верзија система: 0x%08x, поклопљено ктрл: %u, величина симвектора: %u\n"
+
+-#: vms-alpha.c:7746
++#: vms-alpha.c:7990
+ #, c-format
+ msgid " BPAGE: %u"
+ msgstr " БСТРАНИЦА: %u"
+
+-#: vms-alpha.c:7753
++#: vms-alpha.c:7997
+ #, c-format
+ msgid ", ext fixup offset: %u, no_opt psect off: %u"
+ msgstr ", померај спољне исправке: %u, померај п-одељка „no_opt“-а: %u"
+
+-#: vms-alpha.c:7756
++#: vms-alpha.c:8000
+ #, c-format
+ msgid ", alias: %u\n"
+ msgstr ", алијас: %u\n"
+
+-#: vms-alpha.c:7764
++#: vms-alpha.c:8008
+ #, c-format
+ msgid "system version array information:\n"
+ msgstr "низ података верзије система:\n"
+
+-#: vms-alpha.c:7768
++#: vms-alpha.c:8012
+ #, c-format
+ msgid "cannot read EIHVN header\n"
+ msgstr "не могу да читам „EIHVN“ заглавље\n"
+
+-#: vms-alpha.c:7778
++#: vms-alpha.c:8022
+ #, c-format
+ msgid "cannot read EIHVN version\n"
+ msgstr "не могу да читам „EIHVN“ издање\n"
+
+-#: vms-alpha.c:7781
++#: vms-alpha.c:8025
+ #, c-format
+ msgid " %02u "
+ msgstr " %02u "
+
+-#: vms-alpha.c:7785
++#: vms-alpha.c:8029
+ msgid "BASE_IMAGE "
+ msgstr "СЛИКА_ОСНОВЕ "
+
+-#: vms-alpha.c:7788
++#: vms-alpha.c:8032
+ msgid "MEMORY_MANAGEMENT"
+ msgstr "УПРАВЉАЊЕ_МЕМОРИЈОМ "
+
+-#: vms-alpha.c:7791
++#: vms-alpha.c:8035
+ msgid "IO "
+ msgstr "УИ "
+
+-#: vms-alpha.c:7794
++#: vms-alpha.c:8038
+ msgid "FILES_VOLUMES "
+ msgstr "ВОЛУМЕНИ_ДАТОТЕКА "
+
+-#: vms-alpha.c:7797
++#: vms-alpha.c:8041
+ msgid "PROCESS_SCHED "
+ msgstr "ЗАКАЗАНИ_ПРОЦЕСИ "
+
+-#: vms-alpha.c:7800
++#: vms-alpha.c:8044
+ msgid "SYSGEN "
+ msgstr "СТВАРАЊЕ_СИСТЕМА "
+
+-#: vms-alpha.c:7803
++#: vms-alpha.c:8047
+ msgid "CLUSTERS_LOCKMGR "
+ msgstr "МГРЗАКЉУЧАВАЊЕ_КЛАСТЕРА "
+
+-#: vms-alpha.c:7806
++#: vms-alpha.c:8050
+ msgid "LOGICAL_NAMES "
+ msgstr "ЛОГИЧКИ_НАЗИВИ "
+
+-#: vms-alpha.c:7809
++#: vms-alpha.c:8053
+ msgid "SECURITY "
+ msgstr "БЕЗБЕДНОСТ "
+
+-#: vms-alpha.c:7812
++#: vms-alpha.c:8056
+ msgid "IMAGE_ACTIVATOR "
+ msgstr "ПОКРЕТАЧ_СЛИКЕ "
+
+-#: vms-alpha.c:7815
++#: vms-alpha.c:8059
+ msgid "NETWORKS "
+ msgstr "МРЕЖЕ "
+
+-#: vms-alpha.c:7818
++#: vms-alpha.c:8062
+ msgid "COUNTERS "
+ msgstr "БРОЈАЧИ "
+
+-#: vms-alpha.c:7821
++#: vms-alpha.c:8065
+ msgid "STABLE "
+ msgstr "СТАБИЛНО "
+
+-#: vms-alpha.c:7824
++#: vms-alpha.c:8068
+ msgid "MISC "
+ msgstr "РАЗНО "
+
+-#: vms-alpha.c:7827
++#: vms-alpha.c:8071
+ msgid "CPU "
+ msgstr "ЦПЈ "
+
+-#: vms-alpha.c:7830
++#: vms-alpha.c:8074
+ msgid "VOLATILE "
+ msgstr "ПРОМЕНЉИВО "
+
+-#: vms-alpha.c:7833
++#: vms-alpha.c:8077
+ msgid "SHELL "
+ msgstr "ШКОЉКА "
+
+-#: vms-alpha.c:7836
++#: vms-alpha.c:8080
+ msgid "POSIX "
+ msgstr "ПОСИКС "
+
+-#: vms-alpha.c:7839
++#: vms-alpha.c:8083
+ msgid "MULTI_PROCESSING "
+ msgstr "ВИШЕ_ОБРАДНО "
+
+-#: vms-alpha.c:7842
++#: vms-alpha.c:8086
+ msgid "GALAXY "
+ msgstr "ГАЛАКСИЈА "
+
+-#: vms-alpha.c:7845
++#: vms-alpha.c:8089
+ msgid "*unknown* "
+ msgstr "*непознато* "
+
+-#: vms-alpha.c:7861 vms-alpha.c:8135
++#: vms-alpha.c:8105 vms-alpha.c:8379
+ #, c-format
+ msgid "cannot read EIHA\n"
+ msgstr "не могу да читам „EIHA“\n"
+
+-#: vms-alpha.c:7864
++#: vms-alpha.c:8108
+ #, c-format
+ msgid "Image activation: (size=%u)\n"
+ msgstr "Активирање слике: (величина=%u)\n"
+
+-#: vms-alpha.c:7867
++#: vms-alpha.c:8111
+ #, c-format
+ msgid " First address : 0x%08x 0x%08x\n"
+ msgstr " Прва адреса : 0x%08x 0x%08x\n"
+
+-#: vms-alpha.c:7871
++#: vms-alpha.c:8115
+ #, c-format
+ msgid " Second address: 0x%08x 0x%08x\n"
+ msgstr " Друга адреса : 0x%08x 0x%08x\n"
+
+-#: vms-alpha.c:7875
++#: vms-alpha.c:8119
+ #, c-format
+ msgid " Third address : 0x%08x 0x%08x\n"
+ msgstr " Трећа адреса : 0x%08x 0x%08x\n"
+
+-#: vms-alpha.c:7879
++#: vms-alpha.c:8123
+ #, c-format
+ msgid " Fourth address: 0x%08x 0x%08x\n"
+ msgstr " Четврта адреса : 0x%08x 0x%08x\n"
+
+-#: vms-alpha.c:7883
++#: vms-alpha.c:8127
+ #, c-format
+ msgid " Shared image : 0x%08x 0x%08x\n"
+ msgstr " Дељена слика : 0x%08x 0x%08x\n"
+
+-#: vms-alpha.c:7894
++#: vms-alpha.c:8138
+ #, c-format
+ msgid "cannot read EIHI\n"
+ msgstr "не могу да читам „EIHI“\n"
+
+-#: vms-alpha.c:7898
++#: vms-alpha.c:8142
+ #, c-format
+ msgid "Image identification: (major: %u, minor: %u)\n"
+ msgstr "Препознавање слике: (веће: %u, мање: %u)\n"
+
+-#: vms-alpha.c:7901
++#: vms-alpha.c:8145
+ #, c-format
+ msgid " image name : %.*s\n"
+ msgstr " назив слике : %.*s\n"
+
+-#: vms-alpha.c:7903
++#: vms-alpha.c:8147
+ #, c-format
+ msgid " link time : %s\n"
+ msgstr " време везивања : %s\n"
+
+-#: vms-alpha.c:7905
++#: vms-alpha.c:8149
+ #, c-format
+ msgid " image ident : %.*s\n"
+ msgstr " увлачење слике : %.*s\n"
+
+-#: vms-alpha.c:7907
++#: vms-alpha.c:8151
+ #, c-format
+ msgid " linker ident : %.*s\n"
+ msgstr " увлачење повезивача : %.*s\n"
+
+-#: vms-alpha.c:7909
++#: vms-alpha.c:8153
+ #, c-format
+ msgid " image build ident: %.*s\n"
+ msgstr " увлачење изградње слике: %.*s\n"
+
+-#: vms-alpha.c:7919
++#: vms-alpha.c:8163
+ #, c-format
+ msgid "cannot read EIHS\n"
+ msgstr "не могу да читам „EIHS“\n"
+
+-#: vms-alpha.c:7923
++#: vms-alpha.c:8167
+ #, c-format
+ msgid "Image symbol & debug table: (major: %u, minor: %u)\n"
+ msgstr "Симбол слике и табела прочишћавања: (веће: %u, мање: %u)\n"
+
+-#: vms-alpha.c:7929
++#: vms-alpha.c:8173
+ #, c-format
+ msgid " debug symbol table : vbn: %u, size: %u (0x%x)\n"
+ msgstr " табела симбола прочишћавања : вбн: %u, величина: %u (0x%x)\n"
+
+-#: vms-alpha.c:7934
++#: vms-alpha.c:8178
+ #, c-format
+ msgid " global symbol table: vbn: %u, records: %u\n"
+ msgstr " табела општег симбола: вбн: %u, записи: %u\n"
+
+-#: vms-alpha.c:7939
++#: vms-alpha.c:8183
+ #, c-format
+ msgid " debug module table : vbn: %u, size: %u\n"
+ msgstr " табела модула прочишћавања: вбн: %u, величина: %u\n"
+
+-#: vms-alpha.c:7952
++#: vms-alpha.c:8196
+ #, c-format
+ msgid "cannot read EISD\n"
+ msgstr "не могу да читам „EISD“\n"
+
+-#: vms-alpha.c:7963
++#: vms-alpha.c:8207
+ #, c-format
+ msgid "Image section descriptor: (major: %u, minor: %u, size: %u, offset: %u)\n"
+ msgstr "Описник одељка слике: (већи: %u, мањи: %u, величина: %u, померај: %u)\n"
+
+-#: vms-alpha.c:7971
++#: vms-alpha.c:8215
+ #, c-format
+ msgid " section: base: 0x%08x%08x size: 0x%08x\n"
+ msgstr " одељак: основа: 0x%08x%08x величина: 0x%08x\n"
+
+-#: vms-alpha.c:7976
++#: vms-alpha.c:8220
+ #, c-format
+ msgid " flags: 0x%04x"
+ msgstr " заставице : 0x%04x"
+
+-#: vms-alpha.c:8014
++#: vms-alpha.c:8258
+ #, c-format
+ msgid " vbn: %u, pfc: %u, matchctl: %u type: %u ("
+ msgstr " вбн: %u, пфц: %u, пореди_цтл: %u врста: %u ("
+
+-#: vms-alpha.c:8020
++#: vms-alpha.c:8264
+ msgid "NORMAL"
+ msgstr "NORMAL"
+
+-#: vms-alpha.c:8023
++#: vms-alpha.c:8267
+ msgid "SHRFXD"
+ msgstr "SHRFXD"
+
+-#: vms-alpha.c:8026
++#: vms-alpha.c:8270
+ msgid "PRVFXD"
+ msgstr "PRVFXD"
+
+-#: vms-alpha.c:8029
++#: vms-alpha.c:8273
+ msgid "SHRPIC"
+ msgstr "SHRPIC"
+
+-#: vms-alpha.c:8032
++#: vms-alpha.c:8276
+ msgid "PRVPIC"
+ msgstr "PRVPIC"
+
+-#: vms-alpha.c:8035
++#: vms-alpha.c:8279
+ msgid "USRSTACK"
+ msgstr "USRSTACK"
+
+-#: vms-alpha.c:8041
++#: vms-alpha.c:8285
+ msgid ")\n"
+ msgstr ")\n"
+
+-#: vms-alpha.c:8044
++#: vms-alpha.c:8288
+ #, c-format
+ msgid " ident: 0x%08x, name: %.*s\n"
+ msgstr " увлачење: 0x%08x, назив: %.*s\n"
+
+-#: vms-alpha.c:8054
++#: vms-alpha.c:8298
+ #, c-format
+ msgid "cannot read DMT\n"
+ msgstr "не могу да читам „DMT“\n"
+
+-#: vms-alpha.c:8058
++#: vms-alpha.c:8302
+ #, c-format
+ msgid "Debug module table:\n"
+ msgstr "Табела модула прочишћавања:\n"
+
+-#: vms-alpha.c:8067
++#: vms-alpha.c:8311
+ #, c-format
+ msgid "cannot read DMT header\n"
+ msgstr "не могу да читам „DMT“ заглавље\n"
+
+-#: vms-alpha.c:8073
++#: vms-alpha.c:8317
+ #, c-format
+ msgid " module offset: 0x%08x, size: 0x%08x, (%u psects)\n"
+ msgstr " померај модула: 0x%08x, величина: 0x%08x, (%u п-одељака)\n"
+
+-#: vms-alpha.c:8083
++#: vms-alpha.c:8327
+ #, c-format
+ msgid "cannot read DMT psect\n"
+ msgstr "не могу да читам „DMT“ п-одељак\n"
+
+-#: vms-alpha.c:8087
++#: vms-alpha.c:8331
+ #, c-format
+ msgid " psect start: 0x%08x, length: %u\n"
+ msgstr " почетак п-одељка: 0x%08x, дужина: %u\n"
+
+-#: vms-alpha.c:8100
++#: vms-alpha.c:8344
+ #, c-format
+ msgid "cannot read DST\n"
+ msgstr "не могу да читам „DST“\n"
+
+-#: vms-alpha.c:8110
++#: vms-alpha.c:8354
+ #, c-format
+ msgid "cannot read GST\n"
+ msgstr "не могу да читам „GST“\n"
+
+-#: vms-alpha.c:8114
++#: vms-alpha.c:8358
+ #, c-format
+ msgid "Global symbol table:\n"
+ msgstr "Табела општих симбола:\n"
+
+-#: vms-alpha.c:8141
++#: vms-alpha.c:8385
+ #, c-format
+ msgid "Image activator fixup: (major: %u, minor: %u)\n"
+ msgstr "Исправка покретача слике: (већи: %u, мањи: %u)\n"
+
+-#: vms-alpha.c:8145
++#: vms-alpha.c:8389
+ #, c-format
+ msgid " iaflink : 0x%08x %08x\n"
+ msgstr " иаф веза : 0x%08x %08x\n"
+
+-#: vms-alpha.c:8149
++#: vms-alpha.c:8393
+ #, c-format
+ msgid " fixuplnk: 0x%08x %08x\n"
+ msgstr " веза исправке: 0x%08x %08x\n"
+
+-#: vms-alpha.c:8152
++#: vms-alpha.c:8396
+ #, c-format
+ msgid " size : %u\n"
+ msgstr " величина : %u\n"
+
+-#: vms-alpha.c:8154
++#: vms-alpha.c:8398
+ #, c-format
+ msgid " flags: 0x%08x\n"
+ msgstr " заставице : 0x%08x\n"
+
+-#: vms-alpha.c:8159
++#: vms-alpha.c:8403
+ #, c-format
+ msgid " qrelfixoff: %5u, lrelfixoff: %5u\n"
+ msgstr " qrelfixoff: %5u, lrelfixoff: %5u\n"
+
+-#: vms-alpha.c:8164
++#: vms-alpha.c:8408
+ #, c-format
+ msgid " qdotadroff: %5u, ldotadroff: %5u\n"
+ msgstr " qdotadroff: %5u, ldotadroff: %5u\n"
+
+-#: vms-alpha.c:8169
++#: vms-alpha.c:8413
+ #, c-format
+ msgid " codeadroff: %5u, lpfixoff : %5u\n"
+ msgstr " codeadroff: %5u, lpfixoff : %5u\n"
+
+-#: vms-alpha.c:8172
++#: vms-alpha.c:8416
+ #, c-format
+ msgid " chgprtoff : %5u\n"
+ msgstr " chgprtoff : %5u\n"
+
+-#: vms-alpha.c:8176
++#: vms-alpha.c:8420
+ #, c-format
+ msgid " shlstoff : %5u, shrimgcnt : %5u\n"
+ msgstr " shlstoff : %5u, shrimgcnt : %5u\n"
+
+-#: vms-alpha.c:8179
++#: vms-alpha.c:8423
+ #, c-format
+ msgid " shlextra : %5u, permctx : %5u\n"
+ msgstr " shlextra : %5u, permctx : %5u\n"
+
+-#: vms-alpha.c:8182
++#: vms-alpha.c:8426
+ #, c-format
+ msgid " base_va : 0x%08x\n"
+ msgstr " base_va : 0x%08x\n"
+
+-#: vms-alpha.c:8184
++#: vms-alpha.c:8428
+ #, c-format
+ msgid " lppsbfixoff: %5u\n"
+ msgstr " lppsbfixoff: %5u\n"
+
+-#: vms-alpha.c:8192
++#: vms-alpha.c:8435
+ #, c-format
+ msgid " Shareable images:\n"
+ msgstr " Дељиве слике:\n"
+
+-#: vms-alpha.c:8197
++#: vms-alpha.c:8443
+ #, c-format
+ msgid " %u: size: %u, flags: 0x%02x, name: %.*s\n"
+ msgstr " %u: величина: %u, заставице: 0x%02x, назив: %.*s\n"
+
+-#: vms-alpha.c:8204
++#: vms-alpha.c:8450
+ #, c-format
+ msgid " quad-word relocation fixups:\n"
+ msgstr " исправке премештања четворо-речи:\n"
+
+-#: vms-alpha.c:8209
++#: vms-alpha.c:8456
+ #, c-format
+ msgid " long-word relocation fixups:\n"
+ msgstr " исправке премештања дуге-речи:\n"
+
+-#: vms-alpha.c:8214
++#: vms-alpha.c:8462
+ #, c-format
+ msgid " quad-word .address reference fixups:\n"
+ msgstr " исправке „.address“ упуте четворо-речи:\n"
+
+-#: vms-alpha.c:8219
++#: vms-alpha.c:8467
+ #, c-format
+ msgid " long-word .address reference fixups:\n"
+ msgstr " исправке „.address“ упуте дуге-речи:\n"
+
+-#: vms-alpha.c:8224
++#: vms-alpha.c:8472
+ #, c-format
+ msgid " Code Address Reference Fixups:\n"
+ msgstr " Исправке упуте адресе кода:\n"
+
+-#: vms-alpha.c:8229
++#: vms-alpha.c:8477
+ #, c-format
+ msgid " Linkage Pairs Reference Fixups:\n"
+ msgstr " Исправке упуте парова повезивања:\n"
+
+-#: vms-alpha.c:8238
++#: vms-alpha.c:8485
+ #, c-format
+ msgid " Change Protection (%u entries):\n"
+ msgstr " Промена заштите (%u уноса):\n"
+
+-#: vms-alpha.c:8244
++#: vms-alpha.c:8494
+ #, c-format
+ msgid " base: 0x%08x %08x, size: 0x%08x, prot: 0x%08x "
+ msgstr " основа: 0x%08x %08x, величина: 0x%08x, заштита: 0x%08x "
+
+ #. FIXME: we do not yet support relocatable link. It is not obvious
+ #. how to do it for debug infos.
+-#: vms-alpha.c:9121
++#: vms-alpha.c:9371
+ msgid "%P: relocatable link is not supported\n"
+ msgstr "%P: преместива веза није подржана\n"
+
+-#: vms-alpha.c:9192
++#: vms-alpha.c:9442
+ #, c-format
+ msgid "%P: multiple entry points: in modules %pB and %pB\n"
+ msgstr "%P: тачке више уноса: у модулима „%pB“ и „%pB“\n"
+@@ -8246,92 +8331,102 @@ msgstr "„_bfd_vms_output_counted“ је позвано са нула бајт
+ msgid "_bfd_vms_output_counted called with too many bytes"
+ msgstr "„_bfd_vms_output_counted“ је позвано са превише бајтова"
+
+-#: xcofflink.c:835
++#: xcofflink.c:834
+ #, c-format
+ msgid "%pB: XCOFF shared object when not producing XCOFF output"
+ msgstr "%pB: „XCOFF“ дељени објекат када се не производи „XCOFF“ излаз"
+
+-#: xcofflink.c:856
++#: xcofflink.c:855
+ #, c-format
+ msgid "%pB: dynamic object with no .loader section"
+ msgstr "%pB: динамички објекат без „.loader“ одељка"
+
+-#: xcofflink.c:1420
++#: xcofflink.c:1440
+ #, c-format
+ msgid "%pB: `%s' has line numbers but no enclosing section"
+ msgstr "%pB: „%s“ има бројеве редова али не и затварајући одељак"
+
+-#: xcofflink.c:1473
++#: xcofflink.c:1496
+ #, c-format
+ msgid "%pB: class %d symbol `%s' has no aux entries"
+ msgstr "%pB: класа %d симбола „%s“ нема помоћних уноса"
+
+-#: xcofflink.c:1496
++#: xcofflink.c:1519
+ #, c-format
+ msgid "%pB: symbol `%s' has unrecognized csect type %d"
+ msgstr "%pB: симбол „%s“ има непознату врсту цсектора „%d“"
+
+-#: xcofflink.c:1509
++#: xcofflink.c:1532
+ #, c-format
+ msgid "%pB: bad XTY_ER symbol `%s': class %d scnum %d scnlen %<PRId64>"
+ msgstr "%pB: лош „XTY_ER“ симбол „%s“: класа %d сцброј %d сцндужине %<PRId64>"
+
+-#: xcofflink.c:1540
++#: xcofflink.c:1563
+ #, c-format
+ msgid "%pB: XMC_TC0 symbol `%s' is class %d scnlen %<PRId64>"
+ msgstr "%pB: „XMC_TC0“ симбол „%s“ је класа %d сцндужине %<PRId64>"
+
+-#: xcofflink.c:1687
++#: xcofflink.c:1698
++#, c-format
++msgid "%pB: TOC entry `%s' has a R_TLSMLrelocation not targeting itself"
++msgstr "%pB: унос табеле садржаја „%s“ има „R_TLSML“-премештање које не циља на себе самог"
++
++#: xcofflink.c:1732
+ #, c-format
+ msgid "%pB: csect `%s' not in enclosing section"
+ msgstr "%pB: ц-одељак „%s“ није у затварајућем одељку"
+
+-#: xcofflink.c:1795
++#: xcofflink.c:1841
+ #, c-format
+ msgid "%pB: misplaced XTY_LD `%s'"
+ msgstr "%pB: лоше постављено „XTY_LD“ „%s“"
+
+-#: xcofflink.c:2122
++#: xcofflink.c:2184
+ #, c-format
+ msgid "%pB: reloc %s:%<PRId64> not in csect"
+ msgstr "%pB: премештање „%s:%<PRId64>“ није у ц-одељку"
+
+-#: xcofflink.c:3223
++#: xcofflink.c:3287
++#, c-format
++msgid "%pB: cannot export internal symbol `%s`."
++msgstr "%pB: не могу да извезем унутрашњи симбол „%s“."
++
++#: xcofflink.c:3335
+ #, c-format
+ msgid "%s: no such symbol"
+ msgstr "%s: нема таквог симбола"
+
+-#: xcofflink.c:3334
++#: xcofflink.c:3444
+ #, c-format
+ msgid "warning: attempt to export undefined symbol `%s'"
+ msgstr "упозорење: покушај извоза недефинисаног симбола „%s“"
+
+-#: xcofflink.c:3713
++#: xcofflink.c:3823
+ msgid "error: undefined symbol __rtinit"
+ msgstr "грешка: симбол „__rtinit“ није дефинисан"
+
+-#: xcofflink.c:4095
++#: xcofflink.c:4206
+ #, c-format
+ msgid "%pB: loader reloc in unrecognized section `%s'"
+ msgstr "%pB: премештање утоваривача у непознатом одељку „%s“"
+
+-#: xcofflink.c:4107
++#: xcofflink.c:4218
+ #, c-format
+ msgid "%pB: `%s' in loader reloc but not loader sym"
+ msgstr "%pB: „%s“ је у премештању утоваривача али није симбол утоваривача"
+
+-#: xcofflink.c:4124
++#: xcofflink.c:4235
+ #, c-format
+ msgid "%pB: loader reloc in read-only section %pA"
+ msgstr "%pB: премештање утоваривача у одељку само за читање „%pA“"
+
+-#: xcofflink.c:5152
++#: xcofflink.c:5270
+ #, c-format
+ msgid "TOC overflow: %#<PRIx64> > 0x10000; try -mminimal-toc when compiling"
+ msgstr "Прекорачење табеле садржаја: %#<PRIx64> > 0x10000; пробајте са „-mminimal-toc“ приликом превођења"
+
+ #. Not fatal, this callback cannot fail.
+-#: elfnn-aarch64.c:2869
++#: elfnn-aarch64.c:2869 elfnn-riscv.c:5264
+ #, c-format
+ msgid "unknown attribute for symbol `%s': 0x%02x"
+ msgstr "непознат атрибут за симбол „%s“: 0x%02x"
+@@ -8346,271 +8441,286 @@ msgstr "%pB: грешка: окрајак грешке 835769 је ван опс
+ msgid "%pB: error: erratum 843419 stub out of range (input file too large)"
+ msgstr "%pB: грешка: окрајак грешке 843419 је ван опсега (улазна датотека је превелика)"
+
+-#: elfnn-aarch64.c:5350
+-msgid "%pB: error: erratum 843419 immediate 0x%"
+-msgstr "%pB: грешка: грешка 843419 изравно 0x%"
++#: elfnn-aarch64.c:5353
++#, c-format
++msgid "%pB: error: erratum 843419 immediate 0x%s out of range for ADR (input file too large) and --fix-cortex-a53-843419=adr used. Run the linker with --fix-cortex-a53-843419=full instead"
++msgstr "%pB: грешка: погрешка 843419 непосредно 0x%s је ван опсега за АДР (улазна датотека је превелика) и коришћено је „--fix-cortex-a53-843419=адр“. Тако да покрећем повезивача са „--fix-cortex-a53-843419=full“"
+
+-#: elfnn-aarch64.c:5884
++#: elfnn-aarch64.c:5887
+ #, c-format
+ msgid "%pB: relocation %s against symbol `%s' which may bind externally can not be used when making a shared object; recompile with -fPIC"
+ msgstr "%pB: премештање „%s“ наспрам симбола „%s“ која се може свезати споља не може се користити приликом стварања дељеног објекта; поново преведите са „-fPIC“"
+
+-#: elfnn-aarch64.c:5904
++#: elfnn-aarch64.c:5907
+ #, c-format
+ msgid "%pB: conditional branch to undefined symbol `%s' not allowed"
+ msgstr "%pB: условна грана за недефинисани симбол „%s“ није дозвољена"
+
+-#: elfnn-aarch64.c:5992
++#: elfnn-aarch64.c:5995
+ #, c-format
+ msgid "%pB: local symbol descriptor table be NULL when applying relocation %s against local symbol"
+ msgstr "%pB: табела описника локалног симбола биће „NULL“ приликом примене премештања „%s“ наспрам локалног симбола"
+
+-#: elfnn-aarch64.c:6105 elfnn-aarch64.c:6142
++#: elfnn-aarch64.c:6108 elfnn-aarch64.c:6145
+ #, c-format
+ msgid "%pB: TLS relocation %s against undefined symbol `%s'"
+ msgstr "%pB: „TLS“ премештање „%s“ наспрам недефинисаног симбола „%s“"
+
+-#: elfnn-aarch64.c:7127
++#: elfnn-aarch64.c:7130
+ msgid "too many GOT entries for -fpic, please recompile with -fPIC"
+ msgstr "превише „GOT“ уноса за „-fpic“, поново преведите са „-fPIC“"
+
+-#: elfnn-aarch64.c:7155
++#: elfnn-aarch64.c:7158
+ msgid "one possible cause of this error is that the symbol is being referenced in the indicated code as if it had a larger alignment than was declared where it was defined"
+ msgstr "један од могућих разлога ове грешке може бити да симбол упутан у назначеном коду има веће поравнање него што је објављено тамо где је дефинисан"
+
+-#: elfnn-aarch64.c:7722
++#: elfnn-aarch64.c:7725
+ #, c-format
+ msgid "%pB: relocation %s against `%s' can not be used when making a shared object"
+ msgstr "%pB: премештање „%s“ наспрам „%s“ се не може користити приликом стварања дељеног објекта"
+
+-#: elfnn-riscv.c:223 elfnn-riscv.c:258
++#: elfnn-loongarch.c:151 elfnn-loongarch.c:203
++#, c-format
++msgid "%#<PRIx64> invaild imm"
++msgstr "%#<PRIx64> неисправно „imm“"
++
++#: elfnn-loongarch.c:386 elfnn-riscv.c:3846
++#, c-format
++msgid ""
++"%pB: ABI is incompatible with that of the selected emulation:\n"
++" target emulation `%s' does not match `%s'"
++msgstr ""
++"%pB: „ABI“ није сагласно са оним из изабране емулације:\n"
++" циљна емулација „%s“ се не подудара са „%s“"
++
++#: elfnn-loongarch.c:406
++#, c-format
++msgid "%pB: can't link different ABI object."
++msgstr "%pB: не могу да повежем другачији „ABI“ објекат."
++
++#: elfnn-loongarch.c:547
++msgid "Internal error: unreachable."
++msgstr "Унутрашња грешка: недостижно."
++
++#: elfnn-riscv.c:224 elfnn-riscv.c:259
+ #, c-format
+ msgid "%pB: warning: RVE PLT generation not supported"
+ msgstr "%pB: упозорење: „RVE PLT“ стварање није подржано"
+
+-#: elfnn-riscv.c:1911
++#: elfnn-riscv.c:1927
+ #, c-format
+ msgid "%pcrel_lo missing matching %pcrel_hi"
+ msgstr "„%pcrel_lo“-у недостаје подударајуће „%pcrel_hi“"
+
+-#: elfnn-riscv.c:1914
++#: elfnn-riscv.c:1930
+ #, c-format
+ msgid "%pcrel_lo with addend isn't allowed for R_RISCV_GOT_HI20"
+ msgstr "„%pcrel_lo“ са сабирком није дозвољено за „R_RISCV_GOT_HI20“"
+
+-#: elfnn-riscv.c:1920
++#: elfnn-riscv.c:1936
+ #, c-format
+ msgid "%%pcrel_lo overflow with an addend, the value of %%pcrel_hi is 0x%<PRIx64> without any addend, but may be 0x%<PRIx64> after adding the %%pcrel_lo addend"
+ msgstr "„%%pcrel_lo“ прекорачење са сабирком, вредност за „%%pcrel_hi“ је 0x%<PRIx64> без икаквог сабирка, али може бити 0x%<PRIx64> након додавања „%%pcrel_lo“ сабирка"
+
+-#: elfnn-riscv.c:1927
++#: elfnn-riscv.c:1943
+ #, c-format
+ msgid "%pcrel_lo overflow with an addend"
+ msgstr "„%pcrel_lo“ прекорачење са сабирком"
+
+-#: elfnn-riscv.c:2409
++#: elfnn-riscv.c:2425
+ msgid "The addend isn't allowed for R_RISCV_GOT_HI20"
+ msgstr "Сабирак није дозвољен за „R_RISCV_GOT_HI20“"
+
+-#: elfnn-riscv.c:2553
++#: elfnn-riscv.c:2569
+ #, c-format
+ msgid "%pcrel_lo section symbol with an addend"
+ msgstr "симбол „%pcrel_lo“ одељка са сабирком"
+
+-#: elfnn-riscv.c:2776
++#: elfnn-riscv.c:2792
+ #, c-format
+ msgid "%%X%%P: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC\n"
+ msgstr "%%X%%P: премештање „%s“ наспрам „%s“ се не може користити приликом стварања дељеног објекта; поново преведите са „-fPIC“\n"
+
+-#: elfnn-riscv.c:2786
++#: elfnn-riscv.c:2802
+ #, c-format
+ msgid "%%X%%P: unresolvable %s relocation against symbol `%s'\n"
+ msgstr "%%X%%P: нерешиво „%s“ премештање наспрам симбола „%s“\n"
+
+-#: elfnn-riscv.c:2826
++#: elfnn-riscv.c:2842
+ msgid "%X%P: internal error: out of range error\n"
+ msgstr "%X%P: унутрашња грешка: изван опсега\n"
+
+-#: elfnn-riscv.c:2831
++#: elfnn-riscv.c:2847
+ msgid "%X%P: internal error: unsupported relocation error\n"
+ msgstr "%X%P: унутрашња грешка: премештање није подржано\n"
+
+-#: elfnn-riscv.c:2837
++#: elfnn-riscv.c:2853
+ msgid "dangerous relocation error"
+ msgstr "опасно премештање"
+
+-#: elfnn-riscv.c:2843
++#: elfnn-riscv.c:2859
+ msgid "%X%P: internal error: unknown error\n"
+ msgstr "%X%P: унутрашња грешка: непозната грешка\n"
+
+-#: elfnn-riscv.c:3384
++#: elfnn-riscv.c:3400
+ #, c-format
+ msgid "warning: %pB: mis-matched ISA version %d.%d for '%s' extension, the output version is %d.%d"
+ msgstr "упозорење: %pB: неодговарајуће ISA издање %d.%d за „%s“ проширење, излазно издање је %d.%d"
+
+-#: elfnn-riscv.c:3417
++#: elfnn-riscv.c:3433
+ #, c-format
+ msgid "error: %pB: corrupted ISA string '%s'. First letter should be 'i' or 'e' but got '%s'"
+ msgstr "грешка: %pB: оштећена ISA ниска „%s“. Прво слово треба да буде „i“ или „e“ али добих „%s“"
+
+-#: elfnn-riscv.c:3460
++#: elfnn-riscv.c:3476
+ #, c-format
+ msgid "error: %pB: mis-matched ISA string to merge '%s' and '%s'"
+ msgstr "грешка: %pB: неодговарајућа ISA ниска за стапање „%s“ и „%s“"
+
+-#: elfnn-riscv.c:3617
++#: elfnn-riscv.c:3618
+ #, c-format
+ msgid "error: %pB: ISA string of input (%s) doesn't match output (%s)"
+ msgstr "грешка: %pB: ISA ниска улаза (%s) не одговара излазу (%s)"
+
+-#: elfnn-riscv.c:3637
++#: elfnn-riscv.c:3638
+ #, c-format
+ msgid "error: %pB: XLEN of input (%u) doesn't match output (%u)"
+ msgstr "грешка: %pB: „XLEN“ ниска улаза (%u) не одговара излазу (%u)"
+
+-#: elfnn-riscv.c:3645
++#: elfnn-riscv.c:3646
+ #, c-format
+ msgid "error: %pB: unsupported XLEN (%u), you might be using wrong emulation"
+ msgstr "грешка: %pB: неподржано „XLEN“ (%u), можда користите погрешну емулацију"
+
+-#: elfnn-riscv.c:3759
++#: elfnn-riscv.c:3760
+ #, c-format
+ msgid "warning: %pB use privileged spec version %u.%u.%u but the output use version %u.%u.%u"
+ msgstr "упозорење: „%pB“ користи привилеговано спец издање „%u.%u.%u“ али излаз користи издање „%u.%u.%u“"
+
+-#: elfnn-riscv.c:3776
++#: elfnn-riscv.c:3777
+ msgid "warning: privileged spec version 1.9.1 can not be linked with other spec versions"
+ msgstr "упозорење: привилеговано спец издање 1.9.1 се не може повезати са другим спец издањима"
+
+-#: elfnn-riscv.c:3804
++#: elfnn-riscv.c:3805
+ #, c-format
+ msgid "error: %pB use %u-byte stack aligned but the output use %u-byte stack aligned"
+ msgstr "грешка: „%pB“ користи %u-бајтно поравнан спремник али излаз користи %u-бајтно поравнан спремник"
+
+-#: elfnn-riscv.c:3845
+-#, c-format
+-msgid ""
+-"%pB: ABI is incompatible with that of the selected emulation:\n"
+-" target emulation `%s' does not match `%s'"
+-msgstr ""
+-"%pB: „ABI“ није сагласно са оним из изабране емулације:\n"
+-" циљна емулација „%s“ се не подудара са „%s“"
+-
+-#: elfnn-riscv.c:3901
++#: elfnn-riscv.c:3902
+ #, c-format
+ msgid "%pB: can't link %s modules with %s modules"
+ msgstr "%pB: не могу да повежем „%s“ модуле са „%s“ модулима"
+
+-#: elfnn-riscv.c:3911
++#: elfnn-riscv.c:3912
+ #, c-format
+ msgid "%pB: can't link RVE with other target"
+ msgstr "%pB: не могу да повежем „RVE“ са другом метом"
+
+-#: elfnn-riscv.c:4448
++#: elfnn-riscv.c:4493
+ #, c-format
+ msgid "%pB(%pA+%#<PRIx64>): %<PRId64> bytes required for alignment to %<PRId64>-byte boundary, but only %<PRId64> present"
+ msgstr "%pB(%pA+%#<PRIx64>): %<PRId64> бајта је потребно за поравнање на %<PRId64>-бајтну границу, али само %<PRId64> је присутно"
+
+-#: peXXigen.c:154
++#: peXXigen.c:157
+ #, c-format
+ msgid "%pB: unable to find name for empty section"
+ msgstr "%pB: не могу да нађем назив за празан одељак"
+
+-#: peXXigen.c:181
++#: peXXigen.c:184
+ #, c-format
+ msgid "%pB: out of memory creating name for empty section"
+ msgstr "%pB: понестало је меморије при стварању назива за празан одељак"
+
+-#: peXXigen.c:191
++#: peXXigen.c:194
+ #, c-format
+ msgid "%pB: unable to create fake empty section"
+ msgstr "%pB: не могу да направим лажни празан одељак"
+
+-#: peXXigen.c:523
++#: peXXigen.c:526
+ #, c-format
+ msgid "%pB: aout header specifies an invalid number of data-directory entries: %u"
+ msgstr "%pB: „aout“ заглавље наводи погрешан број уноса директоријума података: %u"
+
+-#: peXXigen.c:934
++#: peXXigen.c:937
+ #, c-format
+ msgid "%pB:%.8s: section below image base"
+ msgstr "%pB:%.8s: одељак испод основе слике"
+
+-#: peXXigen.c:937
++#: peXXigen.c:940
+ #, c-format
+ msgid "%pB:%.8s: RVA truncated"
+ msgstr "%pB:%.8s: „RVA“ је скраћено"
+
+-#: peXXigen.c:1065
++#: peXXigen.c:1068
+ #, c-format
+ msgid "%pB: line number overflow: 0x%lx > 0xffff"
+ msgstr "%pB: прекорачење броја редова: 0x%lx > 0xffff"
+
+-#: peXXigen.c:1218
++#: peXXigen.c:1221
+ msgid "Export Directory [.edata (or where ever we found it)]"
+ msgstr "Директоријум извоза [„.edata“ (или тамо где смо га нашли)]"
+
+-#: peXXigen.c:1219
++#: peXXigen.c:1222
+ msgid "Import Directory [parts of .idata]"
+ msgstr "Директоријум увоза [део „.idata“]"
+
+-#: peXXigen.c:1220
++#: peXXigen.c:1223
+ msgid "Resource Directory [.rsrc]"
+ msgstr "Директоријум изворишта [.rsrc]"
+
+-#: peXXigen.c:1221
++#: peXXigen.c:1224
+ msgid "Exception Directory [.pdata]"
+ msgstr "Директоријум изузетака [.pdata]"
+
+-#: peXXigen.c:1222
++#: peXXigen.c:1225
+ msgid "Security Directory"
+ msgstr "Директоријум безбедности"
+
+-#: peXXigen.c:1223
++#: peXXigen.c:1226
+ msgid "Base Relocation Directory [.reloc]"
+ msgstr "Директоријум премештања основе [.reloc]"
+
+-#: peXXigen.c:1224
++#: peXXigen.c:1227
+ msgid "Debug Directory"
+ msgstr "Директоријум прочишћавања"
+
+-#: peXXigen.c:1225
++#: peXXigen.c:1228
+ msgid "Description Directory"
+ msgstr "Директоријум описа"
+
+-#: peXXigen.c:1226
++#: peXXigen.c:1229
+ msgid "Special Directory"
+ msgstr "Директоријум посебности"
+
+-#: peXXigen.c:1227
++#: peXXigen.c:1230
+ msgid "Thread Storage Directory [.tls]"
+ msgstr "Директоријум смештаја нити [.tls]"
+
+-#: peXXigen.c:1228
++#: peXXigen.c:1231
+ msgid "Load Configuration Directory"
+ msgstr "Директоријум подешавања учитавања"
+
+-#: peXXigen.c:1229
++#: peXXigen.c:1232
+ msgid "Bound Import Directory"
+ msgstr "Директоријум увоза свеза"
+
+-#: peXXigen.c:1230
++#: peXXigen.c:1233
+ msgid "Import Address Table Directory"
+ msgstr "Директоријум табеле увоза адресе"
+
+-#: peXXigen.c:1231
++#: peXXigen.c:1234
+ msgid "Delay Import Directory"
+ msgstr "Директоријум застоја увоза"
+
+-#: peXXigen.c:1232
++#: peXXigen.c:1235
+ msgid "CLR Runtime Header"
+ msgstr "Заглавље ЦЛР извршавања"
+
+-#: peXXigen.c:1233
++#: peXXigen.c:1236
+ msgid "Reserved"
+ msgstr "Резервисано"
+
+-#: peXXigen.c:1280
++#: peXXigen.c:1283
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8619,7 +8729,7 @@ msgstr ""
+ "\n"
+ "Постоји табела увоза, али не могу да нађем одељак који је садржи\n"
+
+-#: peXXigen.c:1286
++#: peXXigen.c:1289
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8628,7 +8738,7 @@ msgstr ""
+ "\n"
+ "Постоји табела увоза у „%s“, али одељак нема садржај\n"
+
+-#: peXXigen.c:1293
++#: peXXigen.c:1296
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8637,7 +8747,7 @@ msgstr ""
+ "\n"
+ "Постоји табела увоза у „%s“ на 0x%lx\n"
+
+-#: peXXigen.c:1299
++#: peXXigen.c:1302
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8646,7 +8756,7 @@ msgstr ""
+ "\n"
+ "Табеле увоза (протумачени садржај одељка „%s“)\n"
+
+-#: peXXigen.c:1302
++#: peXXigen.c:1305
+ #, c-format
+ msgid ""
+ " vma: Hint Time Forward DLL First\n"
+@@ -8655,7 +8765,7 @@ msgstr ""
+ " vma: Најава Време Напред ДЛЛ Први\n"
+ " Табела Отисак Ланац Назив Потпрограм\n"
+
+-#: peXXigen.c:1351
++#: peXXigen.c:1354
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8664,12 +8774,12 @@ msgstr ""
+ "\n"
+ "\t„DLL“ назив: %.*s\n"
+
+-#: peXXigen.c:1367
++#: peXXigen.c:1370
+ #, c-format
+ msgid "\tvma: Hint/Ord Member-Name Bound-To\n"
+ msgstr "\tvma: Најава/Редни Назив члана Свезан-за\n"
+
+-#: peXXigen.c:1392
++#: peXXigen.c:1395
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8678,12 +8788,12 @@ msgstr ""
+ "\n"
+ "Постоји први потпрограм, али не могу да нађем одељак који га садржи\n"
+
+-#: peXXigen.c:1436 peXXigen.c:1475
++#: peXXigen.c:1439 peXXigen.c:1478
+ #, c-format
+ msgid "\t<corrupt: 0x%04lx>"
+ msgstr "\t<оштећење: 0x%04lx>"
+
+-#: peXXigen.c:1568
++#: peXXigen.c:1571
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8692,7 +8802,7 @@ msgstr ""
+ "\n"
+ "Постоји табела извоза, али не могу да нађем одељак који је садржи\n"
+
+-#: peXXigen.c:1574
++#: peXXigen.c:1577
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8701,7 +8811,7 @@ msgstr ""
+ "\n"
+ "Постоји табела извоза у „%s“, али одељак нема садржај\n"
+
+-#: peXXigen.c:1585
++#: peXXigen.c:1588
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8710,7 +8820,7 @@ msgstr ""
+ "\n"
+ "Постоји табела извоза у „%s“, али не може да стане у тај одељак\n"
+
+-#: peXXigen.c:1596
++#: peXXigen.c:1599
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8719,7 +8829,7 @@ msgstr ""
+ "\n"
+ "Постоји табела извоза у „%s“, али је премала (%d)\n"
+
+-#: peXXigen.c:1602
++#: peXXigen.c:1605
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8728,7 +8838,7 @@ msgstr ""
+ "\n"
+ "Постоји табела извоза у „%s“ на 0x%lx\n"
+
+-#: peXXigen.c:1630
++#: peXXigen.c:1633
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8739,67 +8849,67 @@ msgstr ""
+ "Табеле извоза (протумачени садржај одељка „%s“)\n"
+ "\n"
+
+-#: peXXigen.c:1634
++#: peXXigen.c:1637
+ #, c-format
+ msgid "Export Flags \t\t\t%lx\n"
+ msgstr "Заставице извоза \t\t%lx\n"
+
+-#: peXXigen.c:1637
++#: peXXigen.c:1640
+ #, c-format
+ msgid "Time/Date stamp \t\t%lx\n"
+ msgstr "Отисак времена/датума \t\t%lx\n"
+
+-#: peXXigen.c:1641
++#: peXXigen.c:1644
+ #, c-format
+ msgid "Major/Minor \t\t\t%d/%d\n"
+ msgstr "Већи/Мањи \t\t\t%d/%d\n"
+
+-#: peXXigen.c:1644
++#: peXXigen.c:1647
+ #, c-format
+ msgid "Name \t\t\t\t"
+ msgstr "Назив \t\t\t\t"
+
+-#: peXXigen.c:1655
++#: peXXigen.c:1658
+ #, c-format
+ msgid "Ordinal Base \t\t\t%ld\n"
+ msgstr "сОснова редног броја\t\t%ld\n"
+
+-#: peXXigen.c:1658
++#: peXXigen.c:1661
+ #, c-format
+ msgid "Number in:\n"
+ msgstr "Број улаза:\n"
+
+-#: peXXigen.c:1661
++#: peXXigen.c:1664
+ #, c-format
+ msgid "\tExport Address Table \t\t%08lx\n"
+ msgstr "\tТабела адреса извоза \t %08lx\n"
+
+-#: peXXigen.c:1665
++#: peXXigen.c:1668
+ #, c-format
+ msgid "\t[Name Pointer/Ordinal] Table\t%08lx\n"
+ msgstr "\tТабела [Назив показивача/редног броја]\t%08lx\n"
+
+-#: peXXigen.c:1668
++#: peXXigen.c:1671
+ #, c-format
+ msgid "Table Addresses\n"
+ msgstr "Табела адреса\n"
+
+-#: peXXigen.c:1671
++#: peXXigen.c:1674
+ #, c-format
+ msgid "\tExport Address Table \t\t"
+ msgstr "\tТабела адреса извоза \t\t"
+
+-#: peXXigen.c:1676
++#: peXXigen.c:1679
+ #, c-format
+ msgid "\tName Pointer Table \t\t"
+ msgstr "\tТабела назива показивача \t\t"
+
+-#: peXXigen.c:1681
++#: peXXigen.c:1684
+ #, c-format
+ msgid "\tOrdinal Table \t\t\t"
+ msgstr "\tТабела редних бројева \t\t\t"
+
+-#: peXXigen.c:1695
++#: peXXigen.c:1698
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8808,20 +8918,20 @@ msgstr ""
+ "\n"
+ "Табела адресе извоза —— Основа редних бројева %ld\n"
+
+-#: peXXigen.c:1704
++#: peXXigen.c:1707
+ #, c-format
+ msgid "\tInvalid Export Address Table rva (0x%lx) or entry count (0x%lx)\n"
+ msgstr "\tНеисправна табела адресе извоза „rva“ (0x%lx) или број уноса (0x%lx)\n"
+
+-#: peXXigen.c:1723
++#: peXXigen.c:1726
+ msgid "Forwarder RVA"
+ msgstr "„RVA“ прослеђивача"
+
+-#: peXXigen.c:1735
++#: peXXigen.c:1738
+ msgid "Export RVA"
+ msgstr "„RVA“ извоза"
+
+-#: peXXigen.c:1742
++#: peXXigen.c:1745
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8830,27 +8940,27 @@ msgstr ""
+ "\n"
+ "Табела [Редни/Назив показивача]\n"
+
+-#: peXXigen.c:1750
++#: peXXigen.c:1753
+ #, c-format
+ msgid "\tInvalid Name Pointer Table rva (0x%lx) or entry count (0x%lx)\n"
+ msgstr "\tНеисправна табела назива показивача „rva“ (0x%lx) или број уноса (0x%lx)\n"
+
+-#: peXXigen.c:1757
++#: peXXigen.c:1760
+ #, c-format
+ msgid "\tInvalid Ordinal Table rva (0x%lx) or entry count (0x%lx)\n"
+ msgstr "\tНеисправна табела редног „rva“ (0x%lx) или број уноса (0x%lx)\n"
+
+-#: peXXigen.c:1771
++#: peXXigen.c:1774
+ #, c-format
+ msgid "\t[%4ld] <corrupt offset: %lx>\n"
+ msgstr "\t[%4ld] <оштећен померај: %lx>\n"
+
+-#: peXXigen.c:1825 peXXigen.c:1994
++#: peXXigen.c:1828 peXXigen.c:1997
+ #, c-format
+ msgid "warning, .pdata section size (%ld) is not a multiple of %d\n"
+ msgstr "упозорење, величина одељка „.pdata“ (%ld) није производ од %d\n"
+
+-#: peXXigen.c:1829 peXXigen.c:1998
++#: peXXigen.c:1832 peXXigen.c:2001
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8859,12 +8969,12 @@ msgstr ""
+ "\n"
+ "Табела функција (протумачени садржај одељка „.pdata“)\n"
+
+-#: peXXigen.c:1832
++#: peXXigen.c:1835
+ #, c-format
+ msgid " vma:\t\t\tBegin Address End Address Unwind Info\n"
+ msgstr " vma:\t\t\tАдреса почетка\t Адреса краја\t\tИзложени подаци\n"
+
+-#: peXXigen.c:1834
++#: peXXigen.c:1837
+ #, c-format
+ msgid ""
+ " vma:\t\tBegin End EH EH PrologEnd Exception\n"
+@@ -8873,12 +8983,12 @@ msgstr ""
+ " vma:\t\tПочетак Крај EH EH Крај пролога Изузетак\n"
+ " \t\tАдреса Адреса Руковалац Подаци Адреса Маска\n"
+
+-#: peXXigen.c:1847
++#: peXXigen.c:1850
+ #, c-format
+ msgid "Virtual size of .pdata section (%ld) larger than real size (%ld)\n"
+ msgstr "Виртуелна величина „.pdata“ одељка (%ld) је већа од стварне величине (%ld)\n"
+
+-#: peXXigen.c:2000
++#: peXXigen.c:2003
+ #, c-format
+ msgid ""
+ " vma:\t\tBegin Prolog Function Flags Exception EH\n"
+@@ -8887,7 +8997,7 @@ msgstr ""
+ " vma:\t\tПочетак Пролог Функција Заставице Изузетак ЕХ\n"
+ " \t\tАдреса Дужина Дужина 32b извр Руковлац Подаци\n"
+
+-#: peXXigen.c:2121
++#: peXXigen.c:2124
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8898,7 +9008,7 @@ msgstr ""
+ "\n"
+ "Премештање основе ПЕ датотеке (протумачени садржај „.reloc“ одељка)\n"
+
+-#: peXXigen.c:2150
++#: peXXigen.c:2153
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8907,62 +9017,62 @@ msgstr ""
+ "\n"
+ "Виртуелна адреса: %08lx величина одломка %ld (0x%lx) Број исправки %ld\n"
+
+-#: peXXigen.c:2168
++#: peXXigen.c:2171
+ #, c-format
+ msgid "\treloc %4d offset %4x [%4lx] %s"
+ msgstr "\tпремештање %4d померај %4x [%4lx] %s"
+
+-#: peXXigen.c:2229
++#: peXXigen.c:2232
+ #, c-format
+ msgid "%03x %*.s Entry: "
+ msgstr "„%03x %*.s“ унос: "
+
+-#: peXXigen.c:2253
++#: peXXigen.c:2256
+ #, c-format
+ msgid "name: [val: %08lx len %d]: "
+ msgstr "назив: [вредност: %08lx дужина %d]: "
+
+-#: peXXigen.c:2273
++#: peXXigen.c:2276
+ #, c-format
+ msgid "<corrupt string length: %#x>\n"
+ msgstr "<оштећена дужина ниске: %#x>\n"
+
+-#: peXXigen.c:2283
++#: peXXigen.c:2286
+ #, c-format
+ msgid "<corrupt string offset: %#lx>\n"
+ msgstr "<оштећен померај ниске: %#lx>\n"
+
+-#: peXXigen.c:2288
++#: peXXigen.c:2291
+ #, c-format
+ msgid "ID: %#08lx"
+ msgstr "ИД: %#08lx"
+
+-#: peXXigen.c:2291
++#: peXXigen.c:2294
+ #, c-format
+ msgid ", Value: %#08lx\n"
+ msgstr ", Вредност: %#08lx\n"
+
+-#: peXXigen.c:2313
++#: peXXigen.c:2316
+ #, c-format
+ msgid "%03x %*.s Leaf: Addr: %#08lx, Size: %#08lx, Codepage: %d\n"
+ msgstr "%03x%*.s Лист: Адреса: %#08lx, Величина: %#08lx, Кодна страница: %d\n"
+
+-#: peXXigen.c:2355
++#: peXXigen.c:2358
+ #, c-format
+ msgid "<unknown directory type: %d>\n"
+ msgstr "<непозната врста директоријума: %d>\n"
+
+-#: peXXigen.c:2363
++#: peXXigen.c:2366
+ #, c-format
+ msgid " Table: Char: %d, Time: %08lx, Ver: %d/%d, Num Names: %d, IDs: %d\n"
+ msgstr " Табела: Знак: %d, Време: %08lx, Изд: %d/%d, Број назива: %d, ИД-ови: %d\n"
+
+-#: peXXigen.c:2451
++#: peXXigen.c:2454
+ #, c-format
+ msgid "Corrupt .rsrc section detected!\n"
+ msgstr "Откривен је оштећени „.rsrc“ одељак!\n"
+
+-#: peXXigen.c:2475
++#: peXXigen.c:2478
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8971,17 +9081,17 @@ msgstr ""
+ "\n"
+ "УПОЗОРЕЊЕ: Вишак података у „.rsrc“ одељку – Виндоуз ће их занемарити:\n"
+
+-#: peXXigen.c:2481
++#: peXXigen.c:2484
+ #, c-format
+ msgid " String table starts at offset: %#03x\n"
+ msgstr " Табела ниске почиње на померају: %#03x\n"
+
+-#: peXXigen.c:2484
++#: peXXigen.c:2487
+ #, c-format
+ msgid " Resources start at offset: %#03x\n"
+ msgstr " Изворишта почињу на померају: %#03x\n"
+
+-#: peXXigen.c:2541
++#: peXXigen.c:2544
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8990,7 +9100,7 @@ msgstr ""
+ "\n"
+ "Постоји директоријум прочишћавања, али не могу да нађем одељак који га садржи\n"
+
+-#: peXXigen.c:2547
++#: peXXigen.c:2550
+ #, c-format
+ msgid ""
+ "\n"
+@@ -8999,7 +9109,7 @@ msgstr ""
+ "\n"
+ "Постоји директоријум прочишћавања у „%s“, али тај одељак нема садржаја\n"
+
+-#: peXXigen.c:2554
++#: peXXigen.c:2557
+ #, c-format
+ msgid ""
+ "\n"
+@@ -9008,7 +9118,7 @@ msgstr ""
+ "\n"
+ "Грешка: одељак „%s“ садржи почетну адресу података прочишћавања али је премали\n"
+
+-#: peXXigen.c:2559
++#: peXXigen.c:2562
+ #, c-format
+ msgid ""
+ "\n"
+@@ -9019,22 +9129,22 @@ msgstr ""
+ "Постоји директоријум прочишћавања у „%s“ на 0x%lx\n"
+ "\n"
+
+-#: peXXigen.c:2566
++#: peXXigen.c:2569
+ #, c-format
+ msgid "The debug data size field in the data directory is too big for the section"
+ msgstr "Поље величине података прочишћавања у директоријуму података је превелико за одељак"
+
+-#: peXXigen.c:2571
++#: peXXigen.c:2574
+ #, c-format
+ msgid "Type Size Rva Offset\n"
+ msgstr "Врста Величина Rva Померај\n"
+
+-#: peXXigen.c:2618
++#: peXXigen.c:2621
+ #, c-format
+ msgid "(format %c%c%c%c signature %s age %ld)\n"
+ msgstr "(запис %c%c%c%c потпис %s старост %ld)\n"
+
+-#: peXXigen.c:2628
++#: peXXigen.c:2631
+ #, c-format
+ msgid "The debug directory size is not a multiple of the debug directory entry size\n"
+ msgstr "Величина директоријума прочишћавања није производ величине уноса директоријума прочишћавања\n"
+@@ -9042,7 +9152,7 @@ msgstr "Величина директоријума прочишћавања н
+ #. The MS dumpbin program reportedly ands with 0xff0f before
+ #. printing the characteristics field. Not sure why. No reason to
+ #. emulate it here.
+-#: peXXigen.c:2712
++#: peXXigen.c:2715
+ #, c-format
+ msgid ""
+ "\n"
+@@ -9051,91 +9161,147 @@ msgstr ""
+ "\n"
+ "Особености 0x%x\n"
+
+-#: peXXigen.c:2989
++#: peXXigen.c:2992
+ #, c-format
+ msgid "%pB: Data Directory (%lx bytes at %<PRIx64>) extends across section boundary at %<PRIx64>"
+ msgstr "%pB: Директоријум података (%lx бајта на %<PRIx64>) се преноси преко границе одељка на %<PRIx64>"
+
+-#: peXXigen.c:3026
++#: peXXigen.c:3029
+ msgid "failed to update file offsets in debug directory"
+ msgstr "нисам успео да освежим помераје датотеке у директоријуму прочишћавања"
+
+-#: peXXigen.c:3034
++#: peXXigen.c:3037
+ #, c-format
+ msgid "%pB: failed to read debug data section"
+ msgstr "%pB: нисам успео да читам одељак података прочишћавања"
+
+-#: peXXigen.c:3833
++#: peXXigen.c:3836
+ #, c-format
+ msgid ".rsrc merge failure: duplicate string resource: %d"
+ msgstr "неуспело „.rsrc“ стапање: извориште удвостручене ниске: %d"
+
+-#: peXXigen.c:3968
++#: peXXigen.c:3971
+ msgid ".rsrc merge failure: multiple non-default manifests"
+ msgstr "неуспело „.rsrc“ стапање: неколико не-подразумеваних испољавања"
+
+-#: peXXigen.c:3986
++#: peXXigen.c:3989
+ msgid ".rsrc merge failure: a directory matches a leaf"
+ msgstr "неуспело „.rsrc“ стапање: директоријум одговара листу"
+
+-#: peXXigen.c:4028
++#: peXXigen.c:4031
+ msgid ".rsrc merge failure: duplicate leaf"
+ msgstr "неуспело „.rsrc“ стапање: удвостручени лист"
+
+-#: peXXigen.c:4033
++#: peXXigen.c:4036
+ #, c-format
+ msgid ".rsrc merge failure: duplicate leaf: %s"
+ msgstr "неуспело „.rsrc“ стапање: удвостручени лист: %s"
+
+-#: peXXigen.c:4100
++#: peXXigen.c:4103
+ msgid ".rsrc merge failure: dirs with differing characteristics"
+ msgstr "неуспело „.rsrc“ стапање: директоријуми са различитим особеностима"
+
+-#: peXXigen.c:4107
++#: peXXigen.c:4110
+ msgid ".rsrc merge failure: differing directory versions"
+ msgstr "неуспело „.rsrc“ стапање: издања директоријума се разликују"
+
+ #. Corrupted .rsrc section - cannot merge.
+-#: peXXigen.c:4224
++#: peXXigen.c:4227
+ #, c-format
+ msgid "%pB: .rsrc merge failure: corrupt .rsrc section"
+ msgstr "%pB: неуспело „.rsrc“ стапање: оштећени „.rsrc“ одељак"
+
+-#: peXXigen.c:4232
++#: peXXigen.c:4235
+ #, c-format
+ msgid "%pB: .rsrc merge failure: unexpected .rsrc size"
+ msgstr "%pB: неуспело „.rsrc“ стапање: оштећени „.rsrc“ одељак"
+
+-#: peXXigen.c:4371
++#: peXXigen.c:4374
+ #, c-format
+ msgid "%pB: unable to fill in DataDictionary[1] because .idata$2 is missing"
+ msgstr "%pB: не могу да попуним речник података[1] зато што недостаје „.idata$2“"
+
+-#: peXXigen.c:4391
++#: peXXigen.c:4394
+ #, c-format
+ msgid "%pB: unable to fill in DataDictionary[1] because .idata$4 is missing"
+ msgstr "%pB: не могу да попуним речник података[1] зато што недостаје „.idata$4“"
+
+-#: peXXigen.c:4412
++#: peXXigen.c:4415
+ #, c-format
+ msgid "%pB: unable to fill in DataDictionary[12] because .idata$5 is missing"
+ msgstr "%pB: не могу да попуним речник података[12] зато што недостаје „.idata$5“"
+
+-#: peXXigen.c:4432
++#: peXXigen.c:4435
+ #, c-format
+ msgid "%pB: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE (12)] because .idata$6 is missing"
+ msgstr "%pB: не могу да попуним речник података[PE_IMPORT_ADDRESS_TABLE (12)] зато што недостаје „.idata$6“"
+
+-#: peXXigen.c:4474
++#: peXXigen.c:4477
+ #, c-format
+ msgid "%pB: unable to fill in DataDictionary[PE_IMPORT_ADDRESS_TABLE(12)] because .idata$6 is missing"
+ msgstr "%pB: не могу да попуним речник података[PE_IMPORT_ADDRESS_TABLE(12)] зато што недостаје „.idata$6“"
+
+-#: peXXigen.c:4499
++#: peXXigen.c:4502
+ #, c-format
+ msgid "%pB: unable to fill in DataDictionary[9] because __tls_used is missing"
+ msgstr "%pB: не могу да попуним речник података[9] зато што недостаје „__tls_used“"
+
++#~ msgid "%pB: TLS relocation at (0x%"
++#~ msgstr "%pB: ТЛС премештање на (0x%"
++
++#~ msgid "%pB: warning: line number count (%#lx) exceeds section size (%#lx)"
++#~ msgstr "%pB: упозорење: број редова (%#lx) превазилази величину одељка (%#lx)"
++
++#~ msgid "internal error: RL78 reloc stack overflow"
++#~ msgstr "унутрашња грешка: прекорачење „RL78“ премештања спремника"
++
++#~ msgid ""
++#~ "%s branch %lu\n"
++#~ " branch toc adj %lu\n"
++#~ " branch notoc %lu\n"
++#~ " branch both %lu\n"
++#~ " long branch %lu\n"
++#~ " long toc adj %lu\n"
++#~ " long notoc %lu\n"
++#~ " long both %lu\n"
++#~ " plt call %lu\n"
++#~ " plt call save %lu\n"
++#~ " plt call notoc %lu\n"
++#~ " plt call both %lu\n"
++#~ " global entry %lu"
++#~ msgstr ""
++#~ "%s грана %lu\n"
++#~ " грана садр. порав. %lu\n"
++#~ " грана не-садр. %lu\n"
++#~ " грана оба %lu\n"
++#~ " дуго грана %lu\n"
++#~ " дуго садр. порав. %lu\n"
++#~ " дуго не-садр. %lu\n"
++#~ " дуго оба %lu\n"
++#~ " плт позив %lu\n"
++#~ " плт позив сачувај %lu\n"
++#~ " плт позив не-садр. %lu\n"
++#~ " плт позив оба %lu\n"
++#~ " општи унос %lu"
++
++#~ msgid "warning: %pB is truncated: expected core file size >= %<PRIu64>, found: %<PRIu64>"
++#~ msgstr "упозорење: „%pB“ је скраћено: очекивах величину датотеке језгра >= %<PRIx64>, нађох: %<PRIx64>"
++
++#~ msgid "-march=%s: expect number after `%dp'"
++#~ msgstr "-march=%s: очекујем број након „%dp“"
++
++#~ msgid "-march=%s: rv%de is not a valid base ISA"
++#~ msgstr "-march=%s: „rv%de“ није исправна база ISA"
++
++#~ msgid " Error: length larger than remaining space in record\n"
++#~ msgstr " Грешка: дужина је већа од преосталог простора у снимку\n"
++
++#~ msgid "STA_QW (stack quadword) 0x%08x %08x\n"
++#~ msgstr "STA_QW (четворореч спремника) 0x%08x %08x\n"
++
++#~ msgid "%pB: error: erratum 843419 immediate 0x%"
++#~ msgstr "%pB: грешка: грешка 843419 изравно 0x%"
++
+ #~ msgid "%pA has both ordered [`%pA' in %pB] and unordered [`%pA' in %pB] sections"
+ #~ msgstr "„%pA“ има и уређени [„%pA“ у „%pB“] и неуређени [„%pA“ у „%pB“] одељак"
+
+@@ -9491,23 +9657,6 @@ msgstr "%pB: не могу да попуним речник података[9]
+ #~ msgid "%P: stubs don't match calculated size\n"
+ #~ msgstr "%P: окрајци не одговарају израчунатој величини\n"
+
+-#~ msgid ""
+-#~ "linker stubs in %u group%s\n"
+-#~ " branch %lu\n"
+-#~ " toc adjust %lu\n"
+-#~ " long branch %lu\n"
+-#~ " long toc adj %lu\n"
+-#~ " plt call %lu\n"
+-#~ " plt call toc %lu"
+-#~ msgstr ""
+-#~ "окрајци повезивача у „%u“ група „%s“\n"
+-#~ " грана %lu\n"
+-#~ " тас уређење %lu\n"
+-#~ " дуга брана %lu\n"
+-#~ " уређење дуге тас %lu\n"
+-#~ " плт позив %lu\n"
+-#~ " плт позива тас %lu"
+-
+ #~ msgid "%P: %B: unknown relocation type %d for `%T'\n"
+ #~ msgstr "%P: %B: непозната врста премештања „%d“ за „%T“\n"
+
+diff --git a/bfd/version.h b/bfd/version.h
+index 61221a65c3b..e394595a6f6 100644
+--- a/bfd/version.h
++++ b/bfd/version.h
+@@ -16,7 +16,7 @@
+
+ In releases, the date is not included in either version strings or
+ sonames. */
+-#define BFD_VERSION_DATE 20220209
++#define BFD_VERSION_DATE 20220218
+ #define BFD_VERSION @bfd_version@
+ #define BFD_VERSION_STRING @bfd_version_package@ @bfd_version_string@
+ #define REPORT_BUGS_TO @report_bugs_to@
+diff --git a/bfd/version.m4 b/bfd/version.m4
+index f611cacaa29..1b8f4a3cbaa 100644
+--- a/bfd/version.m4
++++ b/bfd/version.m4
+@@ -1 +1 @@
+-m4_define([BFD_VERSION], [2.38])
++m4_define([BFD_VERSION], [2.38.0])
+diff --git a/gold/ChangeLog b/gold/ChangeLog
+index 7edad5d2b97..b16a6c23944 100644
+--- a/gold/ChangeLog
++++ b/gold/ChangeLog
+@@ -1,3 +1,7 @@
++2022-02-17 Nick Clifton <nickc@redhat.com>
++
++ * po/sr.po: Updated Serbian translation.
++
+ 2022-02-09 Nick Clifton <nickc@redhat.com>
+
+ 2.38 release.
+diff --git a/gold/po/sr.po b/gold/po/sr.po
+index b6b1e10daaf..edb4e03e126 100644
+--- a/gold/po/sr.po
++++ b/gold/po/sr.po
+@@ -1,13 +1,13 @@
+ # Serbian translation of gold.
+ # Copyright © 2020 Free Software Foundation, Inc.
+ # This file is distributed under the same license as the binutils package.
+-# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2020–2021.
++# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2020–2022.
+ msgid ""
+ msgstr ""
+-"Project-Id-Version: gold-2.36.90\n"
+-"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
+-"POT-Creation-Date: 2021-07-03 15:02+0100\n"
+-"PO-Revision-Date: 2021-07-24 07:50+0200\n"
++"Project-Id-Version: gold-2.37.90\n"
++"Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n"
++"POT-Creation-Date: 2022-01-22 12:25+0000\n"
++"PO-Revision-Date: 2022-02-15 20:05+0200\n"
+ "Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
+ "Language-Team: Serbian <(nothing)>\n"
+ "Language: sr\n"
+@@ -59,7 +59,7 @@ msgstr "неисправан индекс назива табеле симбол
+ msgid "symbol table name section has wrong type: %u"
+ msgstr "одељак назива табеле симбола има погрешну врсту: %u"
+
+-#: aarch64.cc:3831 arm.cc:10905 mips.cc:9608 powerpc.cc:2946 target.cc:94
++#: aarch64.cc:3831 arm.cc:10905 mips.cc:9608 powerpc.cc:2911 target.cc:94
+ #, c-format
+ msgid "%s: unsupported ELF file type %d"
+ msgstr "%s: неподржана „ELF“ врста датотеке %d"
+@@ -79,14 +79,14 @@ msgstr "** „PLT“"
+ msgid "Stub is too far away, try a smaller value for '--stub-group-size'. The current value is 0x%lx."
+ msgstr "Окрајак је предалеко, пробајте мању вредност за „--stub-group-size“. Тренутна вредност је 0×%lx."
+
+-#: aarch64.cc:6015 arm.cc:8477 i386.cc:1772 mips.cc:12461 powerpc.cc:7647
+-#: s390.cc:2180 s390.cc:2628 sparc.cc:2134 tilegx.cc:3137 tilegx.cc:3589
++#: aarch64.cc:6015 arm.cc:8477 i386.cc:1772 mips.cc:12461 powerpc.cc:7810
++#: s390.cc:2185 s390.cc:2633 sparc.cc:2134 tilegx.cc:3137 tilegx.cc:3589
+ #: x86_64.cc:3471 x86_64.cc:3924
+ #, c-format
+ msgid "%s: unsupported reloc %u against local symbol"
+ msgstr "%s: неподржан премештај „%u“ наспрам локалног симбола"
+
+-#: aarch64.cc:6056 powerpc.cc:7752 s390.cc:2254 sparc.cc:2230
++#: aarch64.cc:6056 powerpc.cc:7915 s390.cc:2259 sparc.cc:2230
+ msgid "requires unsupported dynamic reloc; recompile with -fPIC"
+ msgstr "захтева неподржани динамички премештај; поново преведите са „-fPIC“"
+
+@@ -105,8 +105,8 @@ msgstr "%s: неподржан премештај „%u“ у пост неза
+ msgid "%s: unsupported TLSLE reloc %u in shared code."
+ msgstr "%s: неподржан „TLSLE“ премештај „%u“ у дељеном коду."
+
+-#: aarch64.cc:6372 arm.cc:8885 i386.cc:2127 mips.cc:12474 powerpc.cc:8592
+-#: s390.cc:3059 s390.cc:3076 sparc.cc:2572 tilegx.cc:3605 tilegx.cc:4144
++#: aarch64.cc:6372 arm.cc:8885 i386.cc:2127 mips.cc:12474 powerpc.cc:8750
++#: s390.cc:3064 s390.cc:3081 sparc.cc:2572 tilegx.cc:3605 tilegx.cc:4144
+ #: x86_64.cc:3940 x86_64.cc:4446
+ #, c-format
+ msgid "%s: unsupported reloc %u against global symbol %s"
+@@ -122,7 +122,7 @@ msgstr "%s: неподржана „TLSLE“ врста премештаја „
+ msgid "%s: unsupported reloc type in global scan"
+ msgstr "%s: неподржана врста премештаја у општем скенирању"
+
+-#: aarch64.cc:6907 powerpc.cc:9726 s390.cc:4009 sparc.cc:3164 tilegx.cc:4211
++#: aarch64.cc:6907 powerpc.cc:9886 s390.cc:4014 sparc.cc:3164 tilegx.cc:4211
+ #: x86_64.cc:4511
+ #, c-format
+ msgid "%s: unsupported REL reloc section"
+@@ -133,8 +133,8 @@ msgstr "%s: неподжан „REL“ одељак премештаја"
+ msgid "cannot relocate %s in object file"
+ msgstr "не могу да преместим „%s“ у објектној датотеци"
+
+-#: aarch64.cc:7343 i386.cc:2987 i386.cc:3753 mips.cc:10076 powerpc.cc:12049
+-#: s390.cc:3460 sparc.cc:3695 tilegx.cc:4726 x86_64.cc:5008
++#: aarch64.cc:7343 i386.cc:2987 i386.cc:3753 mips.cc:10076 powerpc.cc:12236
++#: s390.cc:3465 sparc.cc:3695 tilegx.cc:4726 x86_64.cc:5008
+ #, c-format
+ msgid "unexpected reloc %u in object file"
+ msgstr "неочекиван премештај „%u“ у објектној датотеци"
+@@ -207,87 +207,87 @@ msgstr "Не подржавам „tlsdesc gd_to_le“ оптимизација
+ msgid "Erratum 835769 found and fixed at \"%s\", section %d, offset 0x%08x."
+ msgstr "Нађох грешку 835769 и поправих је на „%s“, одељак %d, померај 0x%08x."
+
+-#: archive.cc:134
++#: archive.cc:127
+ #, c-format
+ msgid "script or expression reference to %s"
+ msgstr "скрипта или израз упућује на „%s“"
+
+-#: archive.cc:239
++#: archive.cc:232
+ #, c-format
+ msgid "%s: no archive symbol table (run ranlib)"
+ msgstr "%s: нема табеле симбола архиве (покрените „ranlib“)"
+
+-#: archive.cc:331
++#: archive.cc:324
+ #, c-format
+ msgid "%s: bad archive symbol table names"
+ msgstr "%s: лоши називи табеле симбола архиве"
+
+-#: archive.cc:363
++#: archive.cc:356
+ #, c-format
+ msgid "%s: malformed archive header at %zu"
+ msgstr "%s: лоше заглавље архиве на %zu"
+
+-#: archive.cc:383
++#: archive.cc:376
+ #, c-format
+ msgid "%s: malformed archive header size at %zu"
+ msgstr "%s: лоша величина заглавља архиве на %zu"
+
+-#: archive.cc:394
++#: archive.cc:387
+ #, c-format
+ msgid "%s: malformed archive header name at %zu"
+ msgstr "%s: лош назив заглавља архиве на %zu"
+
+-#: archive.cc:430
++#: archive.cc:423
+ #, c-format
+ msgid "%s: bad extended name index at %zu"
+ msgstr "%s: лош индекс проширеног назива на %zu"
+
+-#: archive.cc:440
++#: archive.cc:433
+ #, c-format
+ msgid "%s: bad extended name entry at header %zu"
+ msgstr "%s: лош унос проширеног назива код заглавља %zu"
+
+-#: archive.cc:537
++#: archive.cc:530
+ #, c-format
+ msgid "%s: short archive header at %zu"
+ msgstr "%s: кратко заглавље архиве на %zu"
+
+-#: archive.cc:727
++#: archive.cc:720
+ #, c-format
+ msgid "%s: plugin failed to claim member %s at %zu"
+ msgstr "%s: прикључак није успео да потражује члана „%s“ на %zu"
+
+-#: archive.cc:731
++#: archive.cc:724
+ #, c-format
+ msgid "%s: member %s at %zu is not an ELF object"
+ msgstr "%s: члан „%s“ на %zu није „ELF“ објекат"
+
+-#: archive.cc:1093
++#: archive.cc:1086
+ #, c-format
+ msgid "%s: archive libraries: %u\n"
+ msgstr "%s: библиотеке архиве: %u\n"
+
+-#: archive.cc:1095
++#: archive.cc:1088
+ #, c-format
+ msgid "%s: total archive members: %u\n"
+ msgstr "%s: укупно чланова архиве: %u\n"
+
+-#: archive.cc:1097
++#: archive.cc:1090
+ #, c-format
+ msgid "%s: loaded archive members: %u\n"
+ msgstr "%s: учитаних чланова архиве: %u\n"
+
+-#: archive.cc:1327
++#: archive.cc:1320
+ #, c-format
+ msgid "%s: lib groups: %u\n"
+ msgstr "%s: групе библиотеке: %u\n"
+
+-#: archive.cc:1329
++#: archive.cc:1322
+ #, c-format
+ msgid "%s: total lib groups members: %u\n"
+ msgstr "%s: укупно чланова група библиотеке: %u\n"
+
+-#: archive.cc:1331
++#: archive.cc:1324
+ #, c-format
+ msgid "%s: loaded lib groups members: %u\n"
+ msgstr "%s: учитаних чланова група библиотеке: %u\n"
+@@ -382,13 +382,13 @@ msgstr "„PLT“ померај је превелик, покушајте да
+ msgid "requires unsupported dynamic reloc %s; recompile with -fPIC"
+ msgstr "захтева неподржан динамички премештај „%s“; поново преведите са „-fPIC“"
+
+-#: arm.cc:8547 i386.cc:1786 s390.cc:2271 sparc.cc:2247 tilegx.cc:3223
++#: arm.cc:8547 i386.cc:1786 s390.cc:2276 sparc.cc:2247 tilegx.cc:3223
+ #: x86_64.cc:3581
+ #, c-format
+ msgid "%s: unsupported TLS reloc %u for IFUNC symbol"
+ msgstr "%s: неподржан „TLS“ премештај „%u“ за „IFUNC“ симбол"
+
+-#: arm.cc:8643 i386.cc:1862 powerpc.cc:8074 s390.cc:2364 x86_64.cc:3679
++#: arm.cc:8643 i386.cc:1862 powerpc.cc:8219 s390.cc:2369 x86_64.cc:3679
+ #, c-format
+ msgid "section symbol %u has bad shndx %u"
+ msgstr "симбол одељка „%u“ има лош „shndx %u“"
+@@ -396,13 +396,13 @@ msgstr "симбол одељка „%u“ има лош „shndx %u“"
+ #. These are relocations which should only be seen by the
+ #. dynamic linker, and should never be seen here.
+ #: arm.cc:8752 arm.cc:9233 i386.cc:1950 i386.cc:2436 mips.cc:11258
+-#: s390.cc:2463 s390.cc:2897 sparc.cc:2553 sparc.cc:3033 tilegx.cc:3584
++#: s390.cc:2468 s390.cc:2902 sparc.cc:2553 sparc.cc:3033 tilegx.cc:3584
+ #: tilegx.cc:4139 x86_64.cc:3796 x86_64.cc:4319
+ #, c-format
+ msgid "%s: unexpected reloc %u in object file"
+ msgstr "%s: неочекивани премештај „%u“ у објектној датотеци"
+
+-#: arm.cc:8784 i386.cc:1984 mips.cc:10707 s390.cc:2507 sparc.cc:2452
++#: arm.cc:8784 i386.cc:1984 mips.cc:10707 s390.cc:2512 sparc.cc:2452
+ #: tilegx.cc:3488 x86_64.cc:3828
+ #, c-format
+ msgid "local symbol %u has bad shndx %u"
+@@ -418,8 +418,8 @@ msgid "unable to provide V4BX reloc interworking fix up; the target profile does
+ msgstr "не могу да обезбедим међурадну поправку „V4BX“ премештаја; циљни профил не подржава „BX“ инструкцију"
+
+ #: arm.cc:10247 i386.cc:3019 i386.cc:3101 i386.cc:3166 i386.cc:3202
+-#: i386.cc:3274 mips.cc:12296 powerpc.cc:12163 s390.cc:3466 s390.cc:3537
+-#: s390.cc:3574 s390.cc:3596 s390.cc:3621 sparc.cc:3701 sparc.cc:3892
++#: i386.cc:3274 mips.cc:12296 powerpc.cc:12350 s390.cc:3471 s390.cc:3542
++#: s390.cc:3579 s390.cc:3601 s390.cc:3626 sparc.cc:3701 sparc.cc:3892
+ #: sparc.cc:3953 sparc.cc:4060 tilegx.cc:4732 x86_64.cc:5029 x86_64.cc:5155
+ #: x86_64.cc:5227 x86_64.cc:5261
+ #, c-format
+@@ -538,7 +538,7 @@ msgstr "** особине"
+ msgid "cannot open %s: %s:"
+ msgstr "не могу да отворим: %s: %s:"
+
+-#: common.cc:351 output.cc:2517 output.cc:2616
++#: common.cc:351 output.cc:2469 output.cc:2568
+ #, c-format
+ msgid "out of patch space in section %s; relink with --incremental-full"
+ msgstr "нема више закрпног простора у одељаку „%s“; превежите са „--incremental-full“"
+@@ -1092,7 +1092,7 @@ msgstr "„TLS“ премештаји и SUN и GNU модела"
+ msgid "unsupported reloc %u in object file"
+ msgstr "неподржан премештај „%u“ у објектној датотеци"
+
+-#: i386.cc:4036 powerpc.cc:9680 s390.cc:4877 x86_64.cc:6113
++#: i386.cc:4036 powerpc.cc:9840 s390.cc:4886 x86_64.cc:6113
+ #, c-format
+ msgid "failed to match split-stack sequence at section %u offset %0zx"
+ msgstr "нисам успе да упоредим „split-stack“ низ на одељку „%u“ померај %0zx"
+@@ -1173,11 +1173,11 @@ msgstr "неподржана датотека: 64-битна, велика кр
+ msgid "unsupported file: 64-bit, little-endian"
+ msgstr "неподржана датотека: 64-битна, мала крајњост"
+
+-#: incremental.cc:2083
++#: incremental.cc:2089
+ msgid "COMDAT group has no signature"
+ msgstr "„COMDAT“ група нема потпис"
+
+-#: incremental.cc:2089
++#: incremental.cc:2095
+ #, c-format
+ msgid "COMDAT group %s included twice in incremental link"
+ msgstr "„COMDAT“ група „%s“ укључена је два пута у повећавајућој свези"
+@@ -1245,75 +1245,75 @@ msgstr "%s: непозната врста својства програма „%
+ msgid "unable to open --section-ordering-file file %s: %s"
+ msgstr "не могу да отворим „--section-ordering-file“ датотеку „%s“: %s"
+
+-#: layout.cc:3372
++#: layout.cc:3373
+ msgid "one or more inputs require executable stack, but -z noexecstack was given"
+ msgstr "један или више улаза захтева извршиви спремник, али је дато „-z noexecstack“"
+
+-#: layout.cc:3445
++#: layout.cc:3446
+ #, c-format
+ msgid "--build-id=uuid failed: could not open /dev/urandom: %s"
+ msgstr "„--build-id=uuid“ није успело: не могу да отворим „/dev/urandom“: %s"
+
+-#: layout.cc:3452
++#: layout.cc:3453
+ #, c-format
+ msgid "/dev/urandom: read failed: %s"
+ msgstr "/dev/urandom: читање није успело: %s"
+
+-#: layout.cc:3454
++#: layout.cc:3455
+ #, c-format
+ msgid "/dev/urandom: expected %zu bytes, got %zd bytes"
+ msgstr "/dev/urandom: очекивах %zu бајта, добих %zd"
+
+-#: layout.cc:3466
++#: layout.cc:3467
+ msgid "--build-id=uuid failed: could not load rpcrt4.dll"
+ msgstr "„--build-id=uuid“ није успело: не могу да учитам „rpcrt4.dll“"
+
+-#: layout.cc:3472
++#: layout.cc:3473
+ msgid "--build-id=uuid failed: could not find UuidCreate"
+ msgstr "„--build-id=uuid“ није успело: не могу да нађем „UuidCreate“"
+
+-#: layout.cc:3474
++#: layout.cc:3475
+ msgid "__build_id=uuid failed: call UuidCreate() failed"
+ msgstr "„__build_id=uuid“ није успело: позив „UuidCreate()“ није успео"
+
+-#: layout.cc:3496
++#: layout.cc:3497
+ #, c-format
+ msgid "--build-id argument '%s' not a valid hex number"
+ msgstr "„--build-id“ аргумент „%s“ није исправан хексадецималан број"
+
+-#: layout.cc:3502
++#: layout.cc:3503
+ #, c-format
+ msgid "unrecognized --build-id argument '%s'"
+ msgstr "непознат „--build-id“ аргумент „%s“"
+
+-#: layout.cc:4080
++#: layout.cc:4081
+ #, c-format
+ msgid "load segment overlap [0x%llx -> 0x%llx] and [0x%llx -> 0x%llx]"
+ msgstr "преклапање учитавања подеока [0×%llx –> 0×%llx] и [0×%llx –> 0×%llx]"
+
+-#: layout.cc:4241 output.cc:4597
++#: layout.cc:4242 output.cc:4549
+ #, c-format
+ msgid "out of patch space for section %s; relink with --incremental-full"
+ msgstr "нема више закрпног простора за одељак „%s“; превежите са „--incremental-full“"
+
+-#: layout.cc:4250 output.cc:4605
++#: layout.cc:4251 output.cc:4557
+ #, c-format
+ msgid "%s: section changed size; relink with --incremental-full"
+ msgstr "%s: одељак је изменио величину; превежите са „--incremental-full“"
+
+-#: layout.cc:4505
++#: layout.cc:4506
+ msgid "out of patch space for symbol table; relink with --incremental-full"
+ msgstr "нема више закрпног простора за табелу симбола; превежите са „--incremental-full“"
+
+-#: layout.cc:4576
++#: layout.cc:4577
+ msgid "out of patch space for section header table; relink with --incremental-full"
+ msgstr "нема више закрпног простора за табелу заглавља симбола; превежите са „--incremental-full“"
+
+-#: layout.cc:5322
++#: layout.cc:5323
+ msgid "read-only segment has dynamic relocations"
+ msgstr "одељак само за читање има динамичке премештаје"
+
+-#: layout.cc:5325
++#: layout.cc:5326
+ msgid "shared library text segment is not shareable"
+ msgstr "део текста дељене библиотеке није дељив"
+
+@@ -1591,7 +1591,7 @@ msgstr "прекорачење премештаја: %u наспрам „%s“"
+ msgid "unaligned PC-relative relocation"
+ msgstr "непоравнат премештај који се односи на „PC“"
+
+-#: nacl.cc:43 object.cc:174 object.cc:3451 output.cc:5239
++#: nacl.cc:43 object.cc:174 object.cc:3451 output.cc:5191
+ #, c-format
+ msgid "%s: %s"
+ msgstr "%s: %s"
+@@ -3262,90 +3262,90 @@ msgstr "Стапа све „all .text.*“ одељке префикса."
+ msgid "section group retained but group element discarded"
+ msgstr "група одељка је задржана али је елемент групе одбачен"
+
+-#: output.cc:1781 output.cc:1813
++#: output.cc:1733 output.cc:1765
+ msgid "out of patch space (GOT); relink with --incremental-full"
+ msgstr "нема више закрпног простора (GOT); превежите са „--incremental-full“"
+
+-#: output.cc:2462
++#: output.cc:2414
+ #, c-format
+ msgid "invalid alignment %lu for section \"%s\""
+ msgstr "неисправно поравнање %lu за одељак „%s“"
+
+-#: output.cc:4625
++#: output.cc:4577
+ msgid "script places BSS section in the middle of a LOAD segment; space will be allocated in the file"
+ msgstr "скриптна места „BSS“ одељка по средини „LOAD“ подеока; простор ће бити додељен у датотеци"
+
+-#: output.cc:4647
++#: output.cc:4599
+ #, c-format
+ msgid "dot moves backward in linker script from 0x%llx to 0x%llx"
+ msgstr "тачка се премешта уназад у скрипти повезивача са 0×%llx на 0×%llx"
+
+-#: output.cc:4650
++#: output.cc:4602
+ #, c-format
+ msgid "address of section '%s' moves backward from 0x%llx to 0x%llx"
+ msgstr "адреса одељка „%s“ се помера уназад из 0×%llx у 0×%llx"
+
+-#: output.cc:5019
++#: output.cc:4971
+ #, c-format
+ msgid "%s: incremental base and output file name are the same"
+ msgstr "%s: повећавајућа основа и излазна датотека су исте"
+
+-#: output.cc:5026
++#: output.cc:4978
+ #, c-format
+ msgid "%s: stat: %s"
+ msgstr "%s: добављање података: %s"
+
+-#: output.cc:5031
++#: output.cc:4983
+ #, c-format
+ msgid "%s: incremental base file is empty"
+ msgstr "%s: датотека повећавајуће основе је празна"
+
+-#: output.cc:5043 output.cc:5141
++#: output.cc:4995 output.cc:5093
+ #, c-format
+ msgid "%s: open: %s"
+ msgstr "%s: отварам: %s"
+
+-#: output.cc:5060
++#: output.cc:5012
+ #, c-format
+ msgid "%s: read failed: %s"
+ msgstr "%s: „read“ није успело: %s"
+
+-#: output.cc:5065
++#: output.cc:5017
+ #, c-format
+ msgid "%s: file too short: read only %lld of %lld bytes"
+ msgstr "%s: датотека је прекратка: читам само %lld од %lld бајта"
+
+-#: output.cc:5165
++#: output.cc:5117
+ #, c-format
+ msgid "%s: mremap: %s"
+ msgstr "%s: mremap: %s"
+
+-#: output.cc:5184
++#: output.cc:5136
+ #, c-format
+ msgid "%s: mmap: %s"
+ msgstr "%s: mmap: %s"
+
+-#: output.cc:5276
++#: output.cc:5228
+ #, c-format
+ msgid "%s: mmap: failed to allocate %lu bytes for output file: %s"
+ msgstr "%s: mmap: нисам успео да доделим %lu бајта за излазну датотеку: %s"
+
+-#: output.cc:5294
++#: output.cc:5246
+ #, c-format
+ msgid "%s: munmap: %s"
+ msgstr "%s: munmap: %s"
+
+-#: output.cc:5314
++#: output.cc:5266
+ #, c-format
+ msgid "%s: write: unexpected 0 return-value"
+ msgstr "%s: write: неочекивана повратна вредност 0"
+
+-#: output.cc:5316
++#: output.cc:5268
+ #, c-format
+ msgid "%s: write: %s"
+ msgstr "%s: write: %s"
+
+-#: output.cc:5331
++#: output.cc:5283
+ #, c-format
+ msgid "%s: close: %s"
+ msgstr "%s: close: %s"
+@@ -3382,15 +3382,15 @@ msgstr "** премештаји"
+ msgid "** group"
+ msgstr "** група"
+
+-#: output.h:2597
++#: output.h:2581
+ msgid "** GOT"
+ msgstr "** GOT"
+
+-#: output.h:2804
++#: output.h:2776
+ msgid "** dynamic"
+ msgstr "** динамичко"
+
+-#: output.h:2948
++#: output.h:2920
+ msgid "** symtab xindex"
+ msgstr "** симтаб x_индекс"
+
+@@ -3450,144 +3450,140 @@ msgstr "%s: грешка писања приликом стварања умно
+ msgid "input files added by plug-ins in --incremental mode not supported yet"
+ msgstr "улазне датотеке додате прикључцима у „--incremental“ режиму нису још подржане"
+
+-#: powerpc.cc:1299
++#: powerpc.cc:1302
+ msgid "missing expected __tls_get_addr call"
+ msgstr "недостаје очекиван „__tls_get_addr“ позив"
+
+-#: powerpc.cc:2298 powerpc.cc:2635
++#: powerpc.cc:2292 powerpc.cc:2627
+ #, c-format
+ msgid "%s: ABI version %d is not compatible with ABI version %d output"
+ msgstr "%s: „ABI“ издање %d није сагласно са излазом „ABI“ издања %d"
+
+-#: powerpc.cc:2332 powerpc.cc:2694
++#: powerpc.cc:2326 powerpc.cc:2686
+ #, c-format
+ msgid "%s: .opd invalid in abiv%d"
+ msgstr "%s: „.opd“ није исправно у „abiv%d“"
+
+-#: powerpc.cc:2410
++#: powerpc.cc:2404
+ #, c-format
+ msgid "%s: unexpected reloc type %u in .opd section"
+ msgstr "%s: неочекивана врста премештаја „%u“ у „.opd“ одељку"
+
+-#: powerpc.cc:2421
++#: powerpc.cc:2415
+ #, c-format
+ msgid "%s: .opd is not a regular array of opd entries"
+ msgstr "%s: „.opd“ није регуларан низ уноса операнда"
+
+-#: powerpc.cc:2563
++#: powerpc.cc:2555
+ #, c-format
+ msgid "%s: local symbol %d has invalid st_other for ABI version 1"
+ msgstr "%s: локални симбол „%d“ има неисправан „st_other“ за „ABI“ издање 1"
+
+-#: powerpc.cc:3303
++#: powerpc.cc:3290
+ #, c-format
+ msgid "%s:%s exceeds group size"
+ msgstr "„%s:%s“ превазилази величину групе"
+
+-#: powerpc.cc:3651
++#: powerpc.cc:3641
+ #, c-format
+ msgid "%s:%s: branch in non-executable section, no long branch stub for you"
+ msgstr "%s:%s: грана у неизвршивом одељку, нема окрајка дуге гране за вас"
+
+-#: powerpc.cc:3769
++#: powerpc.cc:3758
+ #, c-format
+ msgid "%s: stub group size is too large; retrying with %#x"
+ msgstr "%s: величина групе окрајка је превелика; поново покушавам са „%#x“"
+
+-#: powerpc.cc:5611
++#: powerpc.cc:5729
+ msgid "** glink"
+ msgstr "** g_веза"
+
+-#: powerpc.cc:6258 powerpc.cc:6961
++#: powerpc.cc:6394 powerpc.cc:7109
+ #, c-format
+ msgid "linkage table error against `%s'"
+ msgstr "грешка табеле повезивања наспрам „%s“"
+
+-#: powerpc.cc:6261
++#: powerpc.cc:6397
+ #, c-format
+ msgid "linkage table error against `%s:[local %u]'"
+ msgstr "грешка табеле повезивања наспрам „%s:[local %u]“"
+
+-#: powerpc.cc:7090
++#: powerpc.cc:7236
+ msgid "** save/restore"
+ msgstr "** сачуај/поврати"
+
+-#: powerpc.cc:7844
++#: powerpc.cc:8008
+ #, c-format
+ msgid "%s: unsupported reloc %u for IFUNC symbol"
+ msgstr "%s: неподржан премештај „%u“ за „IFUNC“ симбол"
+
+-#: powerpc.cc:8128 powerpc.cc:8914
++#: powerpc.cc:8274 powerpc.cc:9060
+ #, c-format
+ msgid "tocsave symbol %u has bad shndx %u"
+ msgstr "симбол чувања табеле садржаја %u има лош „shndx %u“"
+
+-#: powerpc.cc:8407 powerpc.cc:9237
++#: powerpc.cc:8565 powerpc.cc:9397
+ #, c-format
+ msgid "%s: toc optimization is not supported for %#08x instruction"
+ msgstr "%s: оптимизација табеле садржаја није подржана за инструкцију „%#08x“"
+
+-#: powerpc.cc:8473 powerpc.cc:9299
++#: powerpc.cc:8631 powerpc.cc:9459
+ #, c-format
+ msgid "%s: unsupported -mbss-plt code"
+ msgstr "%s: неподржан „-mbss-plt“ код"
+
+-#: powerpc.cc:9646
++#: powerpc.cc:9806
+ #, c-format
+ msgid "split-stack stack size overflow at section %u offset %0zx"
+ msgstr "величина спремника „split-stack“ прекорачује на одељку %u померај %0zx"
+
+-#: powerpc.cc:9717
++#: powerpc.cc:9877
+ msgid "--plt-localentry is especially dangerous without ld.so support to detect ABI violations"
+ msgstr "„--plt-localentry“ је нарочито опасно без „ld.so“ подршке за откривање „ABI“ преступа"
+
+-#: powerpc.cc:9746
++#: powerpc.cc:9906
+ msgid "--plt-localentry is incompatible with power10 pc-relative code"
+ msgstr "„--plt-localentry“ је несагласно са „power10“ рачунарско-односним кодом"
+
+-#: powerpc.cc:10024 powerpc.cc:10030
++#: powerpc.cc:10201 powerpc.cc:10207
+ #, c-format
+ msgid "%s uses hard float, %s uses soft float"
+ msgstr "„%s“ користи хардверски покретни зарез, „%s“ користи софтверски покретни зарез"
+
+-#: powerpc.cc:10036 powerpc.cc:10043
++#: powerpc.cc:10213 powerpc.cc:10220
+ #, c-format
+ msgid "%s uses double-precision hard float, %s uses single-precision hard float"
+ msgstr "„%s“ користи хардверски покретни зарез двоструке тачности, „%s“ користи хардверски покретни зарез једне тачности"
+
+-#: powerpc.cc:10063 powerpc.cc:10069
++#: powerpc.cc:10240 powerpc.cc:10246
+ #, c-format
+ msgid "%s uses 64-bit long double, %s uses 128-bit long double"
+ msgstr "„%s“ користи 64-битни дуги дубл, „%s“ користи 128-битни дуги дубл"
+
+-#: powerpc.cc:10075 powerpc.cc:10081
++#: powerpc.cc:10252 powerpc.cc:10258
+ #, c-format
+ msgid "%s uses IBM long double, %s uses IEEE long double"
+ msgstr "„%s“ користи „IBM“ дуги дубл, „%s“ користи „IEEE“ дуги дубл"
+
+-#: powerpc.cc:10135 powerpc.cc:10141
++#: powerpc.cc:10312 powerpc.cc:10318
+ #, c-format
+ msgid "%s uses AltiVec vector ABI, %s uses SPE vector ABI"
+ msgstr "„%s“ користи „AltiVec“ вектор „ABI“, „%s“ користи „SPE“ вектор „ABI“"
+
+-#: powerpc.cc:10170 powerpc.cc:10177
++#: powerpc.cc:10347 powerpc.cc:10354
+ #, c-format
+ msgid "%s uses r3/r4 for small structure returns, %s uses memory"
+ msgstr "„%s“ користи „r3/r4“ за мале резултате структуре, „%s“ користи меморију"
+
+-#: powerpc.cc:10465 powerpc.cc:10468
+-msgid "__tls_get_addr call lacks marker reloc"
+-msgstr "„__tls_get_addr“ позиву недостаје премештај означавача"
+-
+-#: powerpc.cc:10738
++#: powerpc.cc:10929
+ msgid "call lacks nop, can't restore toc; recompile with -fPIC"
+ msgstr "позиву недостаје „nop“, не могу да вратим табелу садржаја; поново преведите са „-fPIC“"
+
+-#: powerpc.cc:12194 s390.cc:3474
++#: powerpc.cc:12381 s390.cc:3479
+ msgid "relocation overflow"
+ msgstr "прекорачење премештаја"
+
+-#: powerpc.cc:12196
++#: powerpc.cc:12383
+ msgid "try relinking with a smaller --stub-group-size"
+ msgstr "покушајте поново да повежете са мањом „--stub-group-size“"
+
+@@ -3721,42 +3717,42 @@ msgstr "скрипта повезивача"
+ msgid "linker defined"
+ msgstr "повезивач је дефинисан"
+
+-#: s390.cc:1002
++#: s390.cc:1007
+ #, c-format
+ msgid "R_390_PC32DBL target misaligned at %llx"
+ msgstr "„R_390_PC32DBL“ циљ је лоше поравнат на „%llx“"
+
+-#: s390.cc:1094 tilegx.cc:2088 x86_64.cc:1809
++#: s390.cc:1099 tilegx.cc:2088 x86_64.cc:1809
+ msgid "out of patch space (PLT); relink with --incremental-full"
+ msgstr "нема више простора закрпе (PLT); поново повежите са „--incremental-full“"
+
+-#: s390.cc:3672 s390.cc:3728 x86_64.cc:5349
++#: s390.cc:3677 s390.cc:3733 x86_64.cc:5349
+ #, c-format
+ msgid "unsupported reloc type %u"
+ msgstr "неподржана врста премештаја %u"
+
+-#: s390.cc:3801
++#: s390.cc:3806
+ msgid "unsupported op for GD to IE"
+ msgstr "неподржан операнд за „GD“ у „IE“"
+
+-#: s390.cc:3850
++#: s390.cc:3855
+ msgid "unsupported op for GD to LE"
+ msgstr "неподржан операнд за „GD“ у „LE“"
+
+-#: s390.cc:3896
++#: s390.cc:3901
+ msgid "unsupported op for LD to LE"
+ msgstr "неподржан операнд за „LD“ у „LE“"
+
+-#: s390.cc:3984
++#: s390.cc:3989
+ msgid "unsupported op for IE to LE"
+ msgstr "неподржан операнд за „IE“ у „LE“"
+
+-#: s390.cc:4262
++#: s390.cc:4271
+ msgid "S/390 code fill of odd length requested"
+ msgstr "испуна „S/390“ кода непарне дужине је затражена"
+
+ #. Should not happen.
+-#: s390.cc:4309
++#: s390.cc:4318
+ msgid "instruction with PC32DBL not wholly within section"
+ msgstr "инструкција са „PC32DBL“ није читава унутар одељка"
+
+@@ -4091,27 +4087,27 @@ msgstr "симбол издања за симбол „%zu“ је ван опс
+ msgid "versym for symbol %zu has no name: %u"
+ msgstr "симбол издања за симбол „%zu“ нема назив: %u"
+
+-#: symtab.cc:2639
++#: symtab.cc:2633
+ #, c-format
+ msgid "discarding version information for %s@%s, defined in unused shared library %s (linked with --as-needed)"
+ msgstr "одбацујем податке издања за „%s@%s“, дефинисане у некоришћеној дељеној библиотеци „%s“ (повезане са „--as-needed“)"
+
+-#: symtab.cc:3001 symtab.cc:3147
++#: symtab.cc:2995 symtab.cc:3141
+ #, c-format
+ msgid "%s: unsupported symbol section 0x%x"
+ msgstr "%s: неподржан одељак симбола „0×%x“"
+
+-#: symtab.cc:3479
++#: symtab.cc:3473
+ #, c-format
+ msgid "%s: symbol table entries: %zu; buckets: %zu\n"
+ msgstr "%s: уноси табеле симбола: %zu; ведра: %zu\n"
+
+-#: symtab.cc:3482
++#: symtab.cc:3476
+ #, c-format
+ msgid "%s: symbol table entries: %zu\n"
+ msgstr "%s: уноси табеле симбола: %zu\n"
+
+-#: symtab.cc:3639
++#: symtab.cc:3633
+ #, c-format
+ msgid "while linking %s: symbol '%s' defined in multiple places (possible ODR violation):"
+ msgstr "приликом повезивања „%s“: симбол „%s“ је дефинисан на више места (могућ „ODR“ преступ):"
+@@ -4120,7 +4116,7 @@ msgstr "приликом повезивања „%s“: симбол „%s“ ј
+ #. which may not be the location we expect to intersect
+ #. with another definition. We could print the whole
+ #. set of locations, but that seems too verbose.
+-#: symtab.cc:3646 symtab.cc:3649
++#: symtab.cc:3640 symtab.cc:3643
+ #, c-format
+ msgid " %s from %s\n"
+ msgstr " „%s“ из „%s“\n"
+@@ -4196,8 +4192,8 @@ msgstr "„TLS“ премештај наспрам неисправног уп
+ #. This output is intended to follow the GNU standards.
+ #: version.cc:65
+ #, c-format
+-msgid "Copyright (C) 2021 Free Software Foundation, Inc.\n"
+-msgstr "Ауторска права © 2021 Задужбина слободног софтвера, Доо.\n"
++msgid "Copyright (C) 2022 Free Software Foundation, Inc.\n"
++msgstr "Ауторска права © 2022 Задужбина слободног софтвера, Доо.\n"
+
+ #: version.cc:66
+ #, c-format
+@@ -4258,3 +4254,6 @@ msgstr "прекорачење премештаја: упућује на „%s
+ #, c-format
+ msgid "relocation overflow: reference to '%s'"
+ msgstr "прекорачење премештаја: упућује на „%s“"
++
++#~ msgid "__tls_get_addr call lacks marker reloc"
++#~ msgstr "„__tls_get_addr“ позиву недостаје премештај означавача"
+diff --git a/include/elf/loongarch.h b/include/elf/loongarch.h
+index b835a3e98c7..1893ef5faae 100644
+--- a/include/elf/loongarch.h
++++ b/include/elf/loongarch.h
+@@ -93,14 +93,14 @@ RELOC_NUMBER (R_LARCH_GNU_VTENTRY, 58)
+ END_RELOC_NUMBERS (R_LARCH_count)
+
+ /* Processor specific flags for the ELF header e_flags field. */
+-#define EF_LOONGARCH_ABI_ILP32 0b01
+-#define EF_LOONGARCH_ABI_LP64 0b11
+-#define EF_LOONGARCH_ABI_MASK 0b11
+-
+-#define EF_LOONGARCH_FLOAT_ABI_SOFT 0b001100
+-#define EF_LOONGARCH_FLOAT_ABI_SINGLE 0b001000
+-#define EF_LOONGARCH_FLOAT_ABI_DOUBLE 0b000000
+-#define EF_LOONGARCH_FLOAT_ABI_MASK 0b111100
++#define EF_LOONGARCH_ABI_ILP32 0x1
++#define EF_LOONGARCH_ABI_LP64 0x3
++#define EF_LOONGARCH_ABI_MASK 0x3
++
++#define EF_LOONGARCH_FLOAT_ABI_SOFT 0x0c
++#define EF_LOONGARCH_FLOAT_ABI_SINGLE 0x08
++#define EF_LOONGARCH_FLOAT_ABI_DOUBLE 0x00
++#define EF_LOONGARCH_FLOAT_ABI_MASK 0x3c
+
+ #define EF_LOONGARCH_IS_LP64(abi) \
+ ((abi & EF_LOONGARCH_ABI_MASK) == EF_LOONGARCH_ABI_LP64)
+diff --git a/ld/ChangeLog b/ld/ChangeLog
+index 47b14f41257..3be5c5c76a4 100644
+--- a/ld/ChangeLog
++++ b/ld/ChangeLog
+@@ -1,3 +1,7 @@
++2022-02-17 Nick Clifton <nickc@redhat.com>
++
++ * po/sr.po: Updated Serbian translation.
++
+ 2022-02-09 Nick Clifton <nickc@redhat.com>
+
+ 2.38 release.
+diff --git a/ld/po/sr.po b/ld/po/sr.po
+index 8984ceba125..3aad5fb7ec7 100644
+--- a/ld/po/sr.po
++++ b/ld/po/sr.po
+@@ -1,13 +1,13 @@
+ # Serbian translation of binutils ld.
+ # Copyright © 2017 Free Software Foundation, Inc.
+ # This file is distributed under the same license as the binutils package.
+-# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2017–2021.
++# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2017–2022.
+ msgid ""
+ msgstr ""
+-"Project-Id-Version: ld-2.36.90\n"
+-"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
+-"POT-Creation-Date: 2021-07-03 15:08+0100\n"
+-"PO-Revision-Date: 2021-12-18 12:12+0200\n"
++"Project-Id-Version: ld-2.37.90\n"
++"Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n"
++"POT-Creation-Date: 2022-01-22 12:24+0000\n"
++"PO-Revision-Date: 2022-02-15 20:28+0200\n"
+ "Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
+ "Language-Team: Serbian <(nothing)>\n"
+ "Language: sr\n"
+@@ -58,15 +58,15 @@ msgstr "Нема симбола\n"
+ msgid "%P: symbol `%pT' missing from main hash table\n"
+ msgstr "%P: симбол „%pT“ недостаје у главној хеш табели\n"
+
+-#: ldcref.c:517 ldcref.c:628 ldmain.c:1302 ldmisc.c:336 pe-dll.c:737
+-#: pe-dll.c:1315 pe-dll.c:1436 pe-dll.c:1562 earm_wince_pe.c:1486
++#: ldcref.c:517 ldcref.c:628 ldmain.c:1304 ldmisc.c:336 pe-dll.c:738
++#: pe-dll.c:1316 pe-dll.c:1437 pe-dll.c:1563 earm_wince_pe.c:1486
+ #: earm_wince_pe.c:1693 earmpe.c:1486 earmpe.c:1693 ei386pe.c:1486
+ #: ei386pe.c:1693 ei386pe_posix.c:1486 ei386pe_posix.c:1693 ei386pep.c:1475
+ #: emcorepe.c:1486 emcorepe.c:1693 eshpe.c:1486 eshpe.c:1693
+ msgid "%F%P: %pB: could not read symbols: %E\n"
+ msgstr "%F%P: %pB: не могу да читам симболе: %E\n"
+
+-#: ldcref.c:690 ldcref.c:697 ldmain.c:1364 ldmain.c:1371
++#: ldcref.c:690 ldcref.c:697 ldmain.c:1366 ldmain.c:1373
+ msgid "%F%P: %pB: could not read relocs: %E\n"
+ msgstr "%F%P: %pB: не могу да читам премештања: %E\n"
+
+@@ -112,133 +112,137 @@ msgstr ""
+ msgid "%P: warning: -z dynamic-undefined-weak ignored\n"
+ msgstr "%P: упозорење: „-z dynamic-undefined-weak“ је занемарено\n"
+
+-#: ldelf.c:98
++#: ldelf.c:91
++msgid "%F%P: common page size (0x%v) > maximum page size (0x%v)\n"
++msgstr "%F%P: уобичајена величина странице (0x%v) > највећа величина странице (0x%v)\n"
++
++#: ldelf.c:117
+ msgid "%F%P: %pB: --just-symbols may not be used on DSO\n"
+ msgstr "%F%P: %pB: „--just-symbols“ се не могу нкористити на „DSO“\n"
+
+-#: ldelf.c:200
++#: ldelf.c:219
+ msgid "%P: %pB: bfd_stat failed: %E\n"
+ msgstr "%P: %pB: „bfd_stat“ није успело: %E\n"
+
+-#: ldelf.c:241
++#: ldelf.c:260
+ msgid "%P: warning: %s, needed by %pB, may conflict with %s\n"
+ msgstr "%P: упозорење: „%s“, које је потребно „%pB“-у, се може сукобити са „%s“\n"
+
+-#: ldelf.c:261 ldfile.c:133
++#: ldelf.c:280 ldfile.c:133
+ #, c-format
+ msgid "attempt to open %s failed\n"
+ msgstr "покушај отварања „%s“ није успео\n"
+
+-#: ldelf.c:298
++#: ldelf.c:317
+ msgid "%F%P: %pB: bfd_elf_get_bfd_needed_list failed: %E\n"
+ msgstr "%F%P: %pB: „bfd_elf_get_bfd_needed_list“ није успело: %E\n"
+
+-#: ldelf.c:346
++#: ldelf.c:365
+ msgid "%F%P: %pB: bfd_stat failed: %E\n"
+ msgstr "%F%P: %pB: „bfd_stat“ није успело: %E\n"
+
+-#: ldelf.c:352
++#: ldelf.c:371
+ #, c-format
+ msgid "found %s at %s\n"
+ msgstr "нађох „%s“ на „%s“\n"
+
+-#: ldelf.c:385 ldlang.c:3146 ldlang.c:3160
++#: ldelf.c:404 ldlang.c:3159 ldlang.c:3173
+ msgid "%F%P: %pB: error adding symbols: %E\n"
+ msgstr "%F%P: %pB: грешка додавања симбола: %E\n"
+
+ #. We only issue an "unrecognised" message in verbose mode
+ #. as the $<foo> token might be a legitimate component of
+ #. a path name in the target's file system.
+-#: ldelf.c:572
++#: ldelf.c:591
+ #, c-format
+ msgid "unrecognised or unsupported token '%s' in search path\n"
+ msgstr "непозната или неподржана скупина „%s“ у путањи претраге\n"
+
+-#: ldelf.c:1016
++#: ldelf.c:1035
+ msgid "%F%P: %s: can't open for writing: %E\n"
+ msgstr "%F%P: %s: не могу да отворим за писање: %E\n"
+
+-#: ldelf.c:1054
++#: ldelf.c:1081
+ msgid "%F%P: cannot use executable file '%pB' as input to a link\n"
+ msgstr "%F%P: не могу да користим извршну датотеку „%pB“ као улаз за везу\n"
+
+-#: ldelf.c:1108
++#: ldelf.c:1135
+ msgid "%F%P: compact frame descriptions incompatible with DWARF2 .eh_frame from %pB\n"
+ msgstr "%F%P: сажети описи оквира нису сагласни са „DWARF2 .eh_frame“ из „%pB“\n"
+
+-#: ldelf.c:1144
++#: ldelf.c:1171
+ msgid "%P: warning: cannot create .eh_frame_hdr section, --eh-frame-hdr ignored\n"
+ msgstr "%P: упозорење: не могу да направим „.eh_frame_hdr“ одељак, „--eh-frame-hdr“ је занемарено\n"
+
+-#: ldelf.c:1200
++#: ldelf.c:1227
+ #, c-format
+ msgid "%s needed by %pB\n"
+ msgstr "„%s“ је потребно за „%pB“\n"
+
+-#: ldelf.c:1309
++#: ldelf.c:1336
+ msgid "%P: warning: %s, needed by %pB, not found (try using -rpath or -rpath-link)\n"
+ msgstr "%P: упозорење: „%s“, које је потребно „%pB“-у, нисам нашао (покушајте да користите „-rpath“ или „-rpath-link“)\n"
+
+-#: ldelf.c:1322
++#: ldelf.c:1349
+ msgid "%F%P: failed to add DT_NEEDED dynamic tag\n"
+ msgstr "%F%P: нисам успео да додам „DT_NEEDED“ динамичку ознаку\n"
+
+-#: ldelf.c:1330
++#: ldelf.c:1357
+ msgid "%F%P: failed to parse EH frame entries\n"
+ msgstr "%F%P: нисам успео да обрадим уносе „EH“ оквира\n"
+
+-#: ldelf.c:1369
++#: ldelf.c:1396
+ msgid "%P: warning: .note.gnu.build-id section discarded, --build-id ignored\n"
+ msgstr "%P: упозорење: „.note.gnu.build-id“ одељак је одбачен, „--build-id“ је занемарено\n"
+
+-#: ldelf.c:1415 earm_wince_pe.c:1277 earmpe.c:1277 ei386pe.c:1277
++#: ldelf.c:1445 earm_wince_pe.c:1277 earmpe.c:1277 ei386pe.c:1277
+ #: ei386pe_posix.c:1277 ei386pep.c:1284 emcorepe.c:1277 eshpe.c:1277
+ msgid "%P: warning: unrecognized --build-id style ignored\n"
+ msgstr "%P: упозорење: непознат „--build-id“ стил је занемарен\n"
+
+-#: ldelf.c:1433
++#: ldelf.c:1464
+ msgid "%P: warning: cannot create .note.gnu.build-id section, --build-id ignored\n"
+ msgstr "%P: упозорење: не могу да направим „.note.gnu.build-id“ одељак, „--build-id“ је занемарено\n"
+
+-#: ldelf.c:1465 eaix5ppc.c:1408 eaix5rs6.c:1408 eaixppc.c:1408 eaixrs6.c:1408
++#: ldelf.c:1496 eaix5ppc.c:1408 eaix5rs6.c:1408 eaixppc.c:1408 eaixrs6.c:1408
+ #: eppcmacos.c:1408
+ msgid "%F%P: failed to record assignment to %s: %E\n"
+ msgstr "%F%P: нисам успео да прибележим доделу за „%s“: %E\n"
+
+-#: ldelf.c:1649 ldelf.c:1714 eaix5ppc.c:831 eaix5rs6.c:831 eaixppc.c:831
++#: ldelf.c:1675 ldelf.c:1740 eaix5ppc.c:831 eaix5rs6.c:831 eaixppc.c:831
+ #: eaixrs6.c:831 eelf64_ia64_vms.c:209 eppcmacos.c:831
+ msgid "%F%P: failed to set dynamic section sizes: %E\n"
+ msgstr "%F%P: нисам успео да поставим величине динамичког одељка: %E\n"
+
+-#: ldelf.c:1686
++#: ldelf.c:1712
+ msgid "%F%P: %pB: can't read contents of section .gnu.warning: %E\n"
+ msgstr "%F%P: %pB: не могу да читам садржаје одељка „.gnu.warning“: %E\n"
+
+-#: ldelfgen.c:283
+-msgid "%F%P: %pA has both ordered and unordered sections"
+-msgstr "%F%P: „%pA“ има и сређене и несређене одељке"
++#: ldelfgen.c:284
++msgid "%F%P: %pA has both ordered and unordered sections\n"
++msgstr "%F%P: „%pA“ има и сређене и несређене одељке\n"
+
+-#: ldelfgen.c:307
++#: ldelfgen.c:309
+ msgid "%F%P: map sections to segments failed: %E\n"
+ msgstr "%F%P: мапирање одељака у подеоке није успело: %E\n"
+
+-#: ldelfgen.c:327
+-msgid "%F%P: looping in map_segments"
+-msgstr "%F%P: кружење у подеоцима_мапе"
++#: ldelfgen.c:329
++msgid "%F%P: looping in map_segments\n"
++msgstr "%F%P: кружење у подеоцима_мапе\n"
+
+-#: ldelfgen.c:339
+-msgid "%F%P: failed to strip zero-sized dynamic sections"
+-msgstr "%F%P: нисам успео да покидам динамичке одељке нулте величине"
++#: ldelfgen.c:341
++msgid "%F%P: failed to strip zero-sized dynamic sections\n"
++msgstr "%F%P: нисам успео да покидам динамичке одељке нулте величине\n"
+
+-#: ldelfgen.c:417
++#: ldelfgen.c:419
+ msgid "%F%P: warning: CTF strtab association failed; strings will not be shared: %s\n"
+ msgstr "%F%P: упозорење: придруживање „CTF“ таб_ниске није успело; ниске неће бити дељене: %s\n"
+
+-#: ldelfgen.c:444
++#: ldelfgen.c:446
+ msgid "%F%P: warning: CTF symbol addition failed; CTF will not be tied to symbols: %s\n"
+ msgstr "%F%P: упозорење: придодавање „CTF“ симбола није успело; „CTF“ неће бити везано за симболе: %s\n"
+
+-#: ldelfgen.c:454
++#: ldelfgen.c:456
+ msgid "%F%P: warning: CTF symbol shuffling failed; CTF will not be tied to symbols: %s\n"
+ msgstr "%F%P: упозорење: мешање „CTF“ симбола није успело; „CTF“ неће бити везано за симболе: %s\n"
+
+@@ -285,7 +289,7 @@ msgstr "%F%P:%pS %% нулом\n"
+ msgid "%F%P:%pS / by zero\n"
+ msgstr "%F%P:%pS / нулом\n"
+
+-#: ldexp.c:737 ldlang.c:3982 ldmain.c:1269 earm_wince_pe.c:1804 earmpe.c:1804
++#: ldexp.c:737 ldlang.c:4011 ldmain.c:1271 earm_wince_pe.c:1804 earmpe.c:1804
+ #: ei386pe.c:1804 ei386pe_posix.c:1804 ei386pep.c:1699 emcorepe.c:1804
+ #: eshpe.c:1804
+ msgid "%F%P: bfd_link_hash_lookup failed: %E\n"
+@@ -335,7 +339,7 @@ msgstr "%F%P:%s: стварање хеша није успело\n"
+ msgid "%F%P:%pS: nonconstant expression for %s\n"
+ msgstr "%F%P:%pS: неконстантни израз за „%s“\n"
+
+-#: ldexp.c:1670 ldlang.c:1279 ldlang.c:3464 ldlang.c:7945
++#: ldexp.c:1670 ldlang.c:1279 ldlang.c:3493 ldlang.c:8066
+ msgid "%F%P: can not create hash table: %E\n"
+ msgstr "%F%P: не могу да направим хеш табелу: %E\n"
+
+@@ -360,7 +364,9 @@ msgstr "%F%P: покушах статичку везу динамичког об
+ msgid "%P: cannot find %s (%s): %E\n"
+ msgstr "%P: не могу да нађем „%s“ (%s): %E\n"
+
+-#: ldfile.c:410
++#. We ignore the return status of the script
++#. and always print the error message.
++#: ldfile.c:410 ldfile.c:494 ldfile.c:498
+ msgid "%P: cannot find %s: %E\n"
+ msgstr "%P: не могу да нађем „%s“: %E\n"
+
+@@ -368,24 +374,18 @@ msgstr "%P: не могу да нађем „%s“: %E\n"
+ msgid "%P: cannot find %s inside %s\n"
+ msgstr "%P: не могу да нађем „%s“ унутар „%s“\n"
+
+-#: ldfile.c:477 ldmain.c:1449
++#: ldfile.c:477 ldmain.c:1451
+ msgid "%P: About to run error handling script '%s' with arguments: '%s' '%s'\n"
+ msgstr "%P: Покренућу скрипту рада са грешком „%s“ са аргументима: „%s“ „%s“\n"
+
+-#: ldfile.c:481 ldmain.c:1453
++#: ldfile.c:481 ldmain.c:1455
+ msgid "error handling script"
+ msgstr "грешка рада са скриптом"
+
+-#: ldfile.c:487 ldmain.c:1459
++#: ldfile.c:487 ldmain.c:1461
+ msgid "%P: Failed to run error handling script '%s', reason: "
+ msgstr "%P: Нисам успео да покренем скрипту рада са грешком „%s“, разлог: "
+
+-#. We ignore the return status of the script
+-#. and always print the error message.
+-#: ldfile.c:494 ldfile.c:498
+-msgid "%P: cannot find %s\n"
+-msgstr "%P: не могу да нађем „%s“\n"
+-
+ #: ldfile.c:508
+ msgid "%P: note to link with %s use -l:%s or rename it to lib%s\n"
+ msgstr "%P: напомена ка вези са „%s“ користи „-l:%s“ или га преименује у „lib%s“\n"
+@@ -510,226 +510,230 @@ msgstr "%P:%pS: упозорење: „--enable-non-contiguous-regions“ чин
+ msgid "%P:%pS: warning: --enable-non-contiguous-regions may change behaviour for section `%pA' from '%pB' (assigned to %pA, but additional match: %pA)\n"
+ msgstr "%P:%pS: упозорење: „--enable-non-contiguous-regions“ може променити понашање за одељак „%pA“ из „%pB“ (додељено за „%pA“, али додатно се поклапа са: %pA)\n"
+
+-#: ldlang.c:3050
++#: ldlang.c:3063
+ msgid "%P: %pB: file not recognized: %E; matching formats:"
+ msgstr "%P: %pB: датотека није препозната: %E; одговарајући записи:"
+
+-#: ldlang.c:3058
++#: ldlang.c:3071
+ msgid "%F%P: %pB: file not recognized: %E\n"
+ msgstr "%F%P: %pB: датотека није препозната: %E\n"
+
+-#: ldlang.c:3131
++#: ldlang.c:3144
+ msgid "%F%P: %pB: member %pB in archive is not an object\n"
+ msgstr "%F%P: %pB: члан „%pB“ у архиви није објекат\n"
+
+-#: ldlang.c:3434
++#: ldlang.c:3415
++msgid "%F%P: input file '%s' is the same as output file\n"
++msgstr "%F%P: улазна датотека „%s“ је иста као излазна датотека\n"
++
++#: ldlang.c:3463
+ msgid "%P: warning: could not find any targets that match endianness requirement\n"
+ msgstr "%P: упозорење: не могу да нађем ниједну мету која одговар захтевима крајњости\n"
+
+-#: ldlang.c:3448
++#: ldlang.c:3477
+ msgid "%F%P: target %s not found\n"
+ msgstr "%F%P: нисам нашао мету „%s“\n"
+
+-#: ldlang.c:3450
++#: ldlang.c:3479
+ msgid "%F%P: cannot open output file %s: %E\n"
+ msgstr "%F%P: не могу да отворим излазну датотеку „%s“: %E\n"
+
+-#: ldlang.c:3456
++#: ldlang.c:3485
+ msgid "%F%P: %s: can not make object file: %E\n"
+ msgstr "%F%P: %s: не могу да направим објектну датотеку: %E\n"
+
+-#: ldlang.c:3460
++#: ldlang.c:3489
+ msgid "%F%P: %s: can not set architecture: %E\n"
+ msgstr "%F%P: %s: не могу да подесим архитектуру: %E\n"
+
+-#: ldlang.c:3640
++#: ldlang.c:3669
+ msgid "%P: warning: %s contains output sections; did you forget -T?\n"
+ msgstr "%P: упозорење: „%s“ садржи излазне одељке; да ли сте заборавили „-T“?\n"
+
+-#: ldlang.c:3687
++#: ldlang.c:3716
+ #, c-format
+ msgid "%s: %s\n"
+ msgstr "%s: %s\n"
+
+-#: ldlang.c:3687
++#: ldlang.c:3716
+ msgid "CTF warning"
+ msgstr "„CTF“ упозорење"
+
+-#: ldlang.c:3687
++#: ldlang.c:3716
+ msgid "CTF error"
+ msgstr "„CTF“ грешка"
+
+-#: ldlang.c:3693
++#: ldlang.c:3722
+ #, c-format
+ msgid "CTF error: cannot get CTF errors: `%s'\n"
+ msgstr "„CTF“ грешка: не могу да добавим „CTF“ грешке: %s\n"
+
+-#: ldlang.c:3727
++#: ldlang.c:3756
+ msgid "%P: warning: CTF section in %pB not loaded; its types will be discarded: %s\n"
+ msgstr "%P: упозорење: „CTF“ одељак у „%pB“ није учитан; његове врсте биће одбачене: „%s“\n"
+
+-#: ldlang.c:3756
++#: ldlang.c:3785
+ msgid "%P: warning: CTF output not created: `%s'\n"
+ msgstr "%P: упозорење: „CTF“ излаз није направљен: „%s“\n"
+
+-#: ldlang.c:3799
++#: ldlang.c:3828
+ msgid "%P: warning: CTF section in %pB cannot be linked: `%s'\n"
+ msgstr "%P: упозорење: „CTF“ одељак у „%pB“ се не може повезати: %s\n"
+
+-#: ldlang.c:3819
++#: ldlang.c:3848
+ msgid "%P: warning: CTF linking failed; output will have no CTF section: %s\n"
+ msgstr "%P: упозорење: „CTF“ повезивање није успело; излаз неће имати „CTF“ одељак: %s\n"
+
+-#: ldlang.c:3890
++#: ldlang.c:3919
+ msgid "%P: warning: CTF section emission failed; output will have no CTF section: %s\n"
+ msgstr "%P: емитовање „CTF“ одељка није успело; излаз неће имати „CTF“ одељак: %s\n"
+
+-#: ldlang.c:3929
++#: ldlang.c:3958
+ msgid "%P: warning: CTF section in %pB not linkable: %P was built without support for CTF\n"
+ msgstr "%P: упозорење: „CTF“ одељак у „%pB“ није свезив: „%P“ је уграђен без подршке за „CTF“\n"
+
+-#: ldlang.c:4067
++#: ldlang.c:4096
+ msgid "%X%P: required symbol `%s' not defined\n"
+ msgstr "%X%P: затражен симбол „%s“ није дефинисан\n"
+
+-#: ldlang.c:4362
++#: ldlang.c:4394
+ msgid "warning: INSERT statement in linker script is incompatible with --enable-non-contiguous-regions.\n"
+ msgstr "warning: „INSERT“ тврдња у скрипти свезача није сагласна са „--enable-non-contiguous-regions“.\n"
+
+-#: ldlang.c:4375
++#: ldlang.c:4407
+ msgid "%F%P: %s not found for insert\n"
+ msgstr "%F%P: нисам нашао „%s“ за уметање\n"
+
+-#: ldlang.c:4615
++#: ldlang.c:4647
+ msgid " load address 0x%V"
+ msgstr " адреса учитавања 0x%V"
+
+-#: ldlang.c:4848
++#: ldlang.c:4880
+ msgid "%W (size before relaxing)\n"
+ msgstr "%W (величина пре одмора)\n"
+
+-#: ldlang.c:4941
++#: ldlang.c:4973
+ #, c-format
+ msgid "Address of section %s set to "
+ msgstr "Адреса одељка „%s“ је постављена на "
+
+-#: ldlang.c:5139
++#: ldlang.c:5171
+ #, c-format
+ msgid "Fail with %d\n"
+ msgstr "Нисам успео са стањем „%d“\n"
+
+-#: ldlang.c:5352
++#: ldlang.c:5384
+ msgid "%F%P: Output section '%s' not large enough for the linker-created stubs section '%s'.\n"
+ msgstr "%F%P: Излазни одељак „%s“ није довољно велик за свезачем направљен одељак окрајка „%s“.\n"
+
+-#: ldlang.c:5357
++#: ldlang.c:5389
+ msgid "%F%P: Relaxation not supported with --enable-non-contiguous-regions (section '%s' would overflow '%s' after it changed size).\n"
+ msgstr "%F%P: Опуштање није подржано са „--enable-non-contiguous-regions“ (одељак „%s“ ће преплавити „%s“ након његове промењене величине).\n"
+
+-#: ldlang.c:5466
++#: ldlang.c:5498
+ msgid "%X%P: section %s VMA wraps around address space\n"
+ msgstr "%X%P: одељак „%s VMA“ се прелама око простора адресе\n"
+
+-#: ldlang.c:5472
++#: ldlang.c:5504
+ msgid "%X%P: section %s LMA wraps around address space\n"
+ msgstr "%X%P: одељак „%s LMA“ се прелама око простора адресе\n"
+
+-#: ldlang.c:5524
++#: ldlang.c:5556
+ msgid "%X%P: section %s LMA [%V,%V] overlaps section %s LMA [%V,%V]\n"
+ msgstr "%X%P: одељак „%s LMA“ [%V,%V] преклапа одељак „%s LMA“ [%V,%V]\n"
+
+-#: ldlang.c:5568
++#: ldlang.c:5600
+ msgid "%X%P: section %s VMA [%V,%V] overlaps section %s VMA [%V,%V]\n"
+ msgstr "%X%P: одељак „%s VMA“ [%V,%V] преклапа одељак „%s VMA“ [%V,%V]\n"
+
+-#: ldlang.c:5591
++#: ldlang.c:5623
+ msgid "%X%P: region `%s' overflowed by %lu byte\n"
+ msgid_plural "%X%P: region `%s' overflowed by %lu bytes\n"
+ msgstr[0] "%X%P: област „%s“ је препуњена са %lu бајтом\n"
+ msgstr[1] "%X%P: област „%s“ је препуњена са %lu бајта\n"
+ msgstr[2] "%X%P: област „%s“ је препуњена са %lu бајтова\n"
+
+-#: ldlang.c:5616
++#: ldlang.c:5648
+ msgid "%X%P: address 0x%v of %pB section `%s' is not within region `%s'\n"
+ msgstr "%X%P: адреса 0x%v %pB одељка „%s“ није унутар области „%s“\n"
+
+-#: ldlang.c:5627
++#: ldlang.c:5659
+ msgid "%X%P: %pB section `%s' will not fit in region `%s'\n"
+ msgstr "%X%P: %pB одељак „%s“ неће стати у област „%s“\n"
+
+-#: ldlang.c:5713
++#: ldlang.c:5745
+ msgid "%F%P:%pS: non constant or forward reference address expression for section %s\n"
+ msgstr "%F%P:%pS: не константа или следећи израз адресе упуте за одељак „%s“\n"
+
+-#: ldlang.c:5738
++#: ldlang.c:5770
+ msgid "%X%P: internal error on COFF shared library section %s\n"
+ msgstr "%X%P: унутрашња грешка на „COFF“ дељеном одељку библиотеке „%s“\n"
+
+-#: ldlang.c:5796
++#: ldlang.c:5828
+ msgid "%F%P: error: no memory region specified for loadable section `%s'\n"
+ msgstr "%F%P: грешка: није наведена област меморије за учитљив одељак „%s“\n"
+
+-#: ldlang.c:5800
++#: ldlang.c:5832
+ msgid "%P: warning: no memory region specified for loadable section `%s'\n"
+ msgstr "%P: упозорење: није наведена област меморије за учитљив одељак „%s“\n"
+
+-#: ldlang.c:5834
++#: ldlang.c:5866
+ msgid "%P: warning: start of section %s changed by %ld\n"
+ msgstr "%P: упозорење: почетак одељка „%s“ је измењен за %lu\n"
+
+-#: ldlang.c:5926
++#: ldlang.c:5958
+ msgid "%P: warning: dot moved backwards before `%s'\n"
+ msgstr "%P: упозорење: тачка је померена уназад пре „%s“\n"
+
+-#: ldlang.c:6107
++#: ldlang.c:6139
+ msgid "%F%P: can't relax section: %E\n"
+ msgstr "%F%P: не могу да одморим одељак: %E\n"
+
+-#: ldlang.c:6528
++#: ldlang.c:6603
+ msgid "%F%P: invalid data statement\n"
+ msgstr "%F%P: неисправна изјава података\n"
+
+-#: ldlang.c:6561
++#: ldlang.c:6636
+ msgid "%F%P: invalid reloc statement\n"
+ msgstr "%F%P: неисправна изјава премештања\n"
+
+-#: ldlang.c:6941
++#: ldlang.c:7053
+ msgid "%F%P: --gc-sections requires a defined symbol root specified by -e or -u\n"
+ msgstr "%F%P: „--gc-sections“ захтева дефинисани корен симбола одређеног са „-e“ или „-u“\n"
+
+-#: ldlang.c:6966
++#: ldlang.c:7078
+ msgid "%F%P: %s: can't set start address\n"
+ msgstr "%F%P: %s: не могу да подесим почетну адресу\n"
+
+-#: ldlang.c:6979 ldlang.c:6997
++#: ldlang.c:7091 ldlang.c:7110
+ msgid "%F%P: can't set start address\n"
+ msgstr "%F%P: не могу да подесим почетну адресу\n"
+
+-#: ldlang.c:6991
++#: ldlang.c:7104
+ msgid "%P: warning: cannot find entry symbol %s; defaulting to %V\n"
+ msgstr "%P: упозорење: не могу да нађем улазни симбол „%s“; постављам на основно „%V“\n"
+
+-#: ldlang.c:7002
++#: ldlang.c:7115 ldlang.c:7123
+ msgid "%P: warning: cannot find entry symbol %s; not setting start address\n"
+ msgstr "%P: упозорење: не могу да нађем улазни симбол „%s“; не подешавам почетну адресу\n"
+
+-#: ldlang.c:7059
++#: ldlang.c:7179
+ msgid "%F%P: relocatable linking with relocations from format %s (%pB) to format %s (%pB) is not supported\n"
+ msgstr "%F%P: преместиво повезивање са премештањима из формата „%s“ (%pB) у формат „%s“ (%pB) није подржано\n"
+
+-#: ldlang.c:7069
++#: ldlang.c:7189
+ msgid "%X%P: %s architecture of input file `%pB' is incompatible with %s output\n"
+ msgstr "%X%P: „%s“ архитектура улазне датотеке „%pB“ није сагласна са излазом „%s“\n"
+
+-#: ldlang.c:7093
++#: ldlang.c:7213
+ msgid "%X%P: failed to merge target specific data of file %pB\n"
+ msgstr "%X%P: нисма успео да спојим мети специфичне податке датотеке „%pB“\n"
+
+-#: ldlang.c:7164
++#: ldlang.c:7284
+ msgid "%F%P: could not define common symbol `%pT': %E\n"
+ msgstr "%F%P: не могу да дефинишем општи симбол „%pT“: %E\n"
+
+-#: ldlang.c:7176
++#: ldlang.c:7296
+ msgid ""
+ "\n"
+ "Allocating common symbols\n"
+@@ -737,7 +741,7 @@ msgstr ""
+ "\n"
+ "Додељујем опште симболе\n"
+
+-#: ldlang.c:7177
++#: ldlang.c:7297
+ msgid ""
+ "Common symbol size file\n"
+ "\n"
+@@ -745,83 +749,83 @@ msgstr ""
+ "Општи симбол величина датотека\n"
+ "\n"
+
+-#: ldlang.c:7250
++#: ldlang.c:7370
+ msgid "%X%P: error: unplaced orphan section `%pA' from `%pB'\n"
+ msgstr "%X%P: грешка: није стављен напуштен одељак „%pA“ из „%pB“\n"
+
+-#: ldlang.c:7268
++#: ldlang.c:7388
+ msgid "%P: warning: orphan section `%pA' from `%pB' being placed in section `%s'\n"
+ msgstr "%P: упозорење: напуштен одељак „%pA“ из „%pB“ је стављен у одељак „%s“\n"
+
+-#: ldlang.c:7358
++#: ldlang.c:7478
+ msgid "%F%P: invalid character %c (%d) in flags\n"
+ msgstr "%F%P: неисправан знак „%c“ (%d) у заставицама\n"
+
+-#: ldlang.c:7467
++#: ldlang.c:7587
+ msgid "%F%P:%pS: error: align with input and explicit align specified\n"
+ msgstr "%F%P:%pS: грешка: поравнање са улазом и изричитим поравнањем је наведено\n"
+
+-#: ldlang.c:7981
++#: ldlang.c:8102
+ msgid "%F%P: %s: plugin reported error after all symbols read\n"
+ msgstr "%F%P: %s: извештена грешка прикључка након читања свих симбола\n"
+
+-#: ldlang.c:8421
++#: ldlang.c:8538
+ msgid "%F%P: multiple STARTUP files\n"
+ msgstr "%F%P: неколико ПОЧЕТНИХ датотека\n"
+
+-#: ldlang.c:8467
++#: ldlang.c:8584
+ msgid "%X%P:%pS: section has both a load address and a load region\n"
+ msgstr "%X%P:%pS: одељак има и адресу учитавања и област учитавања\n"
+
+-#: ldlang.c:8573
++#: ldlang.c:8690
+ msgid "%X%P:%pS: PHDRS and FILEHDR are not supported when prior PT_LOAD headers lack them\n"
+ msgstr "%X%P:%pS: „PHDRS“ и „FILEHDR“ нису подржани када недостају у претходним „PT_LOAD“ заглављима\n"
+
+-#: ldlang.c:8646
++#: ldlang.c:8763
+ msgid "%F%P: no sections assigned to phdrs\n"
+ msgstr "%F%P: ниједан одељак није додељен „phdrs“-у\n"
+
+-#: ldlang.c:8684
++#: ldlang.c:8801
+ msgid "%F%P: bfd_record_phdr failed: %E\n"
+ msgstr "%F%P: „bfd_record_phdr“ није успело: %E\n"
+
+-#: ldlang.c:8704
++#: ldlang.c:8821
+ msgid "%X%P: section `%s' assigned to non-existent phdr `%s'\n"
+ msgstr "%X%P: одељак „%s“ је додељен непостојећем „phdr“-у „%s“\n"
+
+-#: ldlang.c:9127
++#: ldlang.c:9244
+ msgid "%X%P: unknown language `%s' in version information\n"
+ msgstr "%X%P: непознат језик „%s“ у подацима о издању\n"
+
+-#: ldlang.c:9272
++#: ldlang.c:9389
+ msgid "%X%P: anonymous version tag cannot be combined with other version tags\n"
+ msgstr "%X%P: анонимна ознака издања се не може комбиновати са другим ознакама издања\n"
+
+-#: ldlang.c:9281
++#: ldlang.c:9398
+ msgid "%X%P: duplicate version tag `%s'\n"
+ msgstr "%X%P: удвостручена ознака издања „%s“\n"
+
+-#: ldlang.c:9302 ldlang.c:9311 ldlang.c:9329 ldlang.c:9339
++#: ldlang.c:9419 ldlang.c:9428 ldlang.c:9446 ldlang.c:9456
+ msgid "%X%P: duplicate expression `%s' in version information\n"
+ msgstr "%X%P: удвостручени израз „%s“ у подацима о издању\n"
+
+-#: ldlang.c:9379
++#: ldlang.c:9496
+ msgid "%X%P: unable to find version dependency `%s'\n"
+ msgstr "%X%P: не могу да нађем зависност издања „%s“\n"
+
+-#: ldlang.c:9402
++#: ldlang.c:9519
+ msgid "%X%P: unable to read .exports section contents\n"
+ msgstr "%X%P: не могу да прочитам садржаје одељка „.exports“ (извоза)\n"
+
+-#: ldlang.c:9448
++#: ldlang.c:9565
+ msgid "%P: invalid origin for memory region %s\n"
+ msgstr "%P: неисправно порекло за област меморије „%s“\n"
+
+-#: ldlang.c:9460
++#: ldlang.c:9577
+ msgid "%P: invalid length for memory region %s\n"
+ msgstr "%P: неисправна дужина за област меморије „%s“\n"
+
+-#: ldlang.c:9572
++#: ldlang.c:9689
+ msgid "%X%P: unknown feature `%s'\n"
+ msgstr "%X%P: непозната функција „%s“\n"
+
+@@ -837,90 +841,90 @@ msgstr "%F%P: кобна грешка: „libbfd ABI“ не одговара\n"
+ msgid "%X%P: can't set BFD default target to `%s': %E\n"
+ msgstr "%X%P: не могу да поставим основну БФД мету на „%s“: %E\n"
+
+-#: ldmain.c:403
++#: ldmain.c:405
+ msgid "built in linker script"
+ msgstr "уграђена скрипта повезивача"
+
+-#: ldmain.c:413
++#: ldmain.c:415
+ msgid "using external linker script:"
+ msgstr "користим спољну скрипту повезивача:"
+
+-#: ldmain.c:415
++#: ldmain.c:417
+ msgid "using internal linker script:"
+ msgstr "користим унутрашњу скрипту повезивача:"
+
+-#: ldmain.c:462
++#: ldmain.c:464
+ msgid "%F%P: --no-define-common may not be used without -shared\n"
+ msgstr "%F%P: „--no-define-common“ се не може користити без „-shared“\n"
+
+-#: ldmain.c:468
++#: ldmain.c:470
+ msgid "%F%P: no input files\n"
+ msgstr "%F%P: нема улазних датотека\n"
+
+-#: ldmain.c:472
++#: ldmain.c:474
+ msgid "%P: mode %s\n"
+ msgstr "%P: режим „%s“\n"
+
+-#: ldmain.c:488 ends32belf.c:427 ends32belf16m.c:427 ends32belf_linux.c:560
+-#: ends32elf.c:427 ends32elf16m.c:427 ends32elf_linux.c:560
++#: ldmain.c:490 ends32belf.c:429 ends32belf16m.c:429 ends32belf_linux.c:562
++#: ends32elf.c:429 ends32elf16m.c:429 ends32elf_linux.c:562
+ msgid "%F%P: cannot open map file %s: %E\n"
+ msgstr "%F%P: не могу да отворим датотеку мапе „%s“: %E\n"
+
+-#: ldmain.c:541
++#: ldmain.c:543
+ msgid "%P: link errors found, deleting executable `%s'\n"
+ msgstr "%P: нађох грешке везе, бришем извршног „%s“\n"
+
+-#: ldmain.c:550
++#: ldmain.c:552
+ msgid "%F%P: %pB: final close failed: %E\n"
+ msgstr "%F%P: %pB: завршно затварање није успело: %E\n"
+
+-#: ldmain.c:577
++#: ldmain.c:579
+ msgid "%F%P: unable to open for source of copy `%s'\n"
+ msgstr "%F%P: не могу да отворим за извором умношка „%s“\n"
+
+-#: ldmain.c:580
++#: ldmain.c:582
+ msgid "%F%P: unable to open for destination of copy `%s'\n"
+ msgstr "%F%P: не могу да отворим за одредиштем умношка „%s“\n"
+
+-#: ldmain.c:587
++#: ldmain.c:589
+ msgid "%P: error writing file `%s'\n"
+ msgstr "%P: грешка писања датотеке „%s“\n"
+
+-#: ldmain.c:592 pe-dll.c:1965
++#: ldmain.c:594 pe-dll.c:1966
+ #, c-format
+ msgid "%P: error closing file `%s'\n"
+ msgstr "%P: грешка затварања датотеке „%s“\n"
+
+-#: ldmain.c:606
++#: ldmain.c:608
+ #, c-format
+ msgid "%s: total time in link: %ld.%06ld\n"
+ msgstr "%s: укупно време у вези: %ld.%06ld\n"
+
+-#: ldmain.c:693
++#: ldmain.c:695
+ msgid "%F%P: missing argument to -m\n"
+ msgstr "%F%P: недостаје аргумент за „-m“\n"
+
+-#: ldmain.c:747 ldmain.c:764 ldmain.c:784 ldmain.c:816 pe-dll.c:1396
++#: ldmain.c:749 ldmain.c:766 ldmain.c:786 ldmain.c:818 pe-dll.c:1397
+ msgid "%F%P: bfd_hash_table_init failed: %E\n"
+ msgstr "%F%P: „bfd_hash_table_init“ није успело: %E\n"
+
+-#: ldmain.c:751 ldmain.c:768 ldmain.c:788
++#: ldmain.c:753 ldmain.c:770 ldmain.c:790
+ msgid "%F%P: bfd_hash_lookup failed: %E\n"
+ msgstr "%F%P: „bfd_hash_lookup“ није успело: %E\n"
+
+-#: ldmain.c:802
++#: ldmain.c:804
+ msgid "%X%P: error: duplicate retain-symbols-file\n"
+ msgstr "%X%P: грешка: удвостручено задржи-датотеку-симбола\n"
+
+-#: ldmain.c:846
++#: ldmain.c:848
+ msgid "%F%P: bfd_hash_lookup for insertion failed: %E\n"
+ msgstr "%F%P: „bfd_hash_lookup“ за уметање није успело: %E\n"
+
+-#: ldmain.c:851
++#: ldmain.c:853
+ msgid "%P: `-retain-symbols-file' overrides `-s' and `-S'\n"
+ msgstr "%P: „-retain-symbols-file“ преписује `-s' и „-S“\n"
+
+-#: ldmain.c:967
++#: ldmain.c:969
+ msgid ""
+ "Archive member included to satisfy reference by file (symbol)\n"
+ "\n"
+@@ -928,139 +932,139 @@ msgstr ""
+ "Члан архиве је укључен да би задовољио упуту датотеком (симболом)\n"
+ "\n"
+
+-#: ldmain.c:1077
++#: ldmain.c:1079
+ msgid "%P: %C: warning: multiple definition of `%pT'"
+ msgstr "%P: %C: упозорење: вишеструка дефиниција за „%pT“"
+
+-#: ldmain.c:1080
++#: ldmain.c:1082
+ msgid "%X%P: %C: multiple definition of `%pT'"
+ msgstr "%X%P: %C: вишеструка дефиниција за „%pT“"
+
+-#: ldmain.c:1083
++#: ldmain.c:1085
+ msgid "; %D: first defined here"
+ msgstr "; %D: прво је дефинисано овде"
+
+-#: ldmain.c:1088
++#: ldmain.c:1090
+ msgid "%P: disabling relaxation; it will not work with multiple definitions\n"
+ msgstr "%P: искључујем опуштање: неће радити са вишеструким дефиницијама\n"
+
+-#: ldmain.c:1141
++#: ldmain.c:1143
+ msgid "%P: %pB: warning: definition of `%pT' overriding common from %pB\n"
+ msgstr "%P: %pB: упозорење: дефиниција за „%pT“ преписује опште из „%pB“\n"
+
+-#: ldmain.c:1145
++#: ldmain.c:1147
+ msgid "%P: %pB: warning: definition of `%pT' overriding common\n"
+ msgstr "%P: %pB: упозорење: дефиниција за „%pT“ преписује опште\n"
+
+-#: ldmain.c:1154
++#: ldmain.c:1156
+ msgid "%P: %pB: warning: common of `%pT' overridden by definition from %pB\n"
+ msgstr "%P: %pB: упозорење: опште за „%pT“ је преписано дефиницијом из „%pB“\n"
+
+-#: ldmain.c:1158
++#: ldmain.c:1160
+ msgid "%P: %pB: warning: common of `%pT' overridden by definition\n"
+ msgstr "%P: %pB: упозорење: опште за „%pT“ је преписано дефиницијом\n"
+
+-#: ldmain.c:1167
++#: ldmain.c:1169
+ msgid "%P: %pB: warning: common of `%pT' overridden by larger common from %pB\n"
+ msgstr "%P: %pB: упозорење: опште за „%pT“ је преписано већим општим из „%pB“\n"
+
+-#: ldmain.c:1171
++#: ldmain.c:1173
+ msgid "%P: %pB: warning: common of `%pT' overridden by larger common\n"
+ msgstr "%P: %pB: упозорење: опште за „%pT“ је преписано већим општим\n"
+
+-#: ldmain.c:1178
++#: ldmain.c:1180
+ msgid "%P: %pB: warning: common of `%pT' overriding smaller common from %pB\n"
+ msgstr "%P: %pB: упозорење: опште за „%pT“ преписује мањег општег из „%pB“\n"
+
+-#: ldmain.c:1182
++#: ldmain.c:1184
+ msgid "%P: %pB: warning: common of `%pT' overriding smaller common\n"
+ msgstr "%P: %pB: упозорење: опште за „%pT“ преписује мањег општег\n"
+
+-#: ldmain.c:1189
++#: ldmain.c:1191
+ msgid "%P: %pB and %pB: warning: multiple common of `%pT'\n"
+ msgstr "%P: „%pB“ и „%pB“: упозорење: више општих за „%pT“\n"
+
+-#: ldmain.c:1192
++#: ldmain.c:1194
+ msgid "%P: %pB: warning: multiple common of `%pT'\n"
+ msgstr "%P: %pB: упозорење: више општих за „%pT“\n"
+
+-#: ldmain.c:1211 ldmain.c:1247
++#: ldmain.c:1213 ldmain.c:1249
+ msgid "%P: warning: global constructor %s used\n"
+ msgstr "%P: упозорење: глобални конструктор „%s“ је коришћен\n"
+
+-#: ldmain.c:1257
++#: ldmain.c:1259
+ msgid "%F%P: BFD backend error: BFD_RELOC_CTOR unsupported\n"
+ msgstr "%F%P: грешка БФД позадинца: „BFD_RELOC_CTOR“ није подржано\n"
+
+ #. We found a reloc for the symbol we are looking for.
+-#: ldmain.c:1329 ldmain.c:1331 ldmain.c:1333 ldmain.c:1341 ldmain.c:1384
++#: ldmain.c:1331 ldmain.c:1333 ldmain.c:1335 ldmain.c:1343 ldmain.c:1386
+ msgid "warning: "
+ msgstr "упозорење: "
+
+-#: ldmain.c:1474
++#: ldmain.c:1476
+ msgid "%X%P: %C: undefined reference to `%pT'\n"
+ msgstr "%X%P: %C: недефинисана упута ка „%pT“\n"
+
+-#: ldmain.c:1477
++#: ldmain.c:1479
+ msgid "%P: %C: warning: undefined reference to `%pT'\n"
+ msgstr "%P: %C: упозорење: недефинисана упута ка „%pT“\n"
+
+-#: ldmain.c:1483
++#: ldmain.c:1485
+ msgid "%X%P: %D: more undefined references to `%pT' follow\n"
+ msgstr "%X%P: %D: још недефинисаних упута ка „%pT“ следи\n"
+
+-#: ldmain.c:1486
++#: ldmain.c:1488
+ msgid "%P: %D: warning: more undefined references to `%pT' follow\n"
+ msgstr "%P: %D: упозорење: још недефинисаних упута ка „%pT“ следи\n"
+
+-#: ldmain.c:1497
++#: ldmain.c:1499
+ msgid "%X%P: %pB: undefined reference to `%pT'\n"
+ msgstr "%X%P: %pB: недефинисана упута ка „%pT“\n"
+
+-#: ldmain.c:1500
++#: ldmain.c:1502
+ msgid "%P: %pB: warning: undefined reference to `%pT'\n"
+ msgstr "%P: %pB: упозорење: недефинисана упута ка „%pT“\n"
+
+-#: ldmain.c:1506
++#: ldmain.c:1508
+ msgid "%X%P: %pB: more undefined references to `%pT' follow\n"
+ msgstr "%X%P: %pB: још недефинисаних упута ка „%pT“ следи\n"
+
+-#: ldmain.c:1509
++#: ldmain.c:1511
+ msgid "%P: %pB: warning: more undefined references to `%pT' follow\n"
+ msgstr "%P: %pB: упозорење: још недефинисаних упута ка „%pT“ следи\n"
+
+-#: ldmain.c:1546
++#: ldmain.c:1548
+ msgid " additional relocation overflows omitted from the output\n"
+ msgstr " додатна превазилажења премештања су изостављена из излаза\n"
+
+-#: ldmain.c:1559
++#: ldmain.c:1561
+ #, c-format
+ msgid " relocation truncated to fit: %s against undefined symbol `%pT'"
+ msgstr " премештање је скраћено да стане: „%s“ наспрам недефинисаног симбола „%pT“"
+
+-#: ldmain.c:1565
++#: ldmain.c:1567
+ #, c-format
+ msgid " relocation truncated to fit: %s against symbol `%pT' defined in %pA section in %pB"
+ msgstr " премештање је скраћено да стане: „%s“ наспрам симбола „%pT“ дефинисаног у одељку „%pA“ у „%pB“"
+
+-#: ldmain.c:1578
++#: ldmain.c:1580
+ #, c-format
+ msgid " relocation truncated to fit: %s against `%pT'"
+ msgstr " премештање је скраћено да стане: „%s“ наспрам „%pT“"
+
+-#: ldmain.c:1594
++#: ldmain.c:1596
+ msgid "%X%H: dangerous relocation: %s\n"
+ msgstr "%X%H: опасно премештање: %s\n"
+
+-#: ldmain.c:1608
++#: ldmain.c:1610
+ msgid "%X%H: reloc refers to symbol `%pT' which is not being output\n"
+ msgstr "%X%H: премештање упућује на симбол „%pT“ који није био излаз\n"
+
+-#: ldmain.c:1642
++#: ldmain.c:1644
+ msgid "%P: %pB: reference to %s\n"
+ msgstr "%P: %pB: упута ка „%s“\n"
+
+-#: ldmain.c:1644
++#: ldmain.c:1646
+ msgid "%P: %pB: definition of %s\n"
+ msgstr "%P: %pB: дефиниција за „%s“\n"
+
+@@ -1098,8 +1102,8 @@ msgstr "ГНУ лд %s\n"
+
+ #: ldver.c:42
+ #, c-format
+-msgid "Copyright (C) 2021 Free Software Foundation, Inc.\n"
+-msgstr "Ауторска права © 2021 Фондација слободног софтвера, Доо.\n"
++msgid "Copyright (C) 2022 Free Software Foundation, Inc.\n"
++msgstr "Ауторска права © 2022 Фондација слободног софтвера, Доо.\n"
+
+ #: ldver.c:43
+ #, c-format
+@@ -1154,7 +1158,7 @@ msgstr "АРХИТЕКТУРА"
+ msgid "Set architecture"
+ msgstr "Подешава архитектуру"
+
+-#: lexsup.c:110 lexsup.c:424
++#: lexsup.c:110 lexsup.c:425
+ msgid "TARGET"
+ msgstr "МЕТА"
+
+@@ -1163,8 +1167,8 @@ msgid "Specify target for following input files"
+ msgstr "Наводи мету за пратеће улазне датотеке"
+
+ #: lexsup.c:113 lexsup.c:119 lexsup.c:176 lexsup.c:180 lexsup.c:216
+-#: lexsup.c:229 lexsup.c:231 lexsup.c:442 lexsup.c:511 lexsup.c:524
+-#: lexsup.c:528
++#: lexsup.c:229 lexsup.c:231 lexsup.c:447 lexsup.c:516 lexsup.c:529
++#: lexsup.c:533
+ msgid "FILE"
+ msgstr "ДАТОТЕКА"
+
+@@ -1184,8 +1188,8 @@ msgstr "Пише датотеку зависности"
+ msgid "Force group members out of groups"
+ msgstr "Присиљава чланове групе ван група"
+
+-#: lexsup.c:124 lexsup.c:488 lexsup.c:490 lexsup.c:492 lexsup.c:494
+-#: lexsup.c:496 lexsup.c:498
++#: lexsup.c:124 lexsup.c:493 lexsup.c:495 lexsup.c:497 lexsup.c:499
++#: lexsup.c:501 lexsup.c:503
+ msgid "ADDRESS"
+ msgstr "АДРЕСА"
+
+@@ -1393,8 +1397,8 @@ msgstr "Чита скрипту повезивача"
+ msgid "Read default linker script"
+ msgstr "Чита основну скрипту повезивача"
+
+-#: lexsup.c:235 lexsup.c:238 lexsup.c:256 lexsup.c:347 lexsup.c:371
+-#: lexsup.c:481 lexsup.c:514 lexsup.c:526 lexsup.c:564 lexsup.c:567
++#: lexsup.c:235 lexsup.c:238 lexsup.c:256 lexsup.c:348 lexsup.c:372
++#: lexsup.c:486 lexsup.c:519 lexsup.c:531 lexsup.c:569 lexsup.c:572
+ msgid "SYMBOL"
+ msgstr "СИМБОЛ"
+
+@@ -1442,7 +1446,7 @@ msgstr "Не одбацује никакве локалне симболе"
+ msgid "Trace mentions of SYMBOL"
+ msgstr "Прати помињање СИМБОЛА"
+
+-#: lexsup.c:258 lexsup.c:444 lexsup.c:446
++#: lexsup.c:258 lexsup.c:449 lexsup.c:451
+ msgid "PATH"
+ msgstr "ПУТАЊА"
+
+@@ -1541,136 +1545,136 @@ msgstr "Прекрштава називе симбола [користећи С
+ #: lexsup.c:335
+ msgid ""
+ "Do not allow multiple definitions with symbols included\n"
+-" in filename invoked by -R or --just-symbols"
++" in filename invoked by -R or --just-symbols"
+ msgstr ""
+ "Не допушта више дефиниција са симболима укљученим\n"
+-" у називу датотеке призване са „-R“ или „--just-symbols“"
++" у називу датотеке призване са „-R“ или „--just-symbols“"
+
+-#: lexsup.c:339
++#: lexsup.c:340
+ msgid "Generate embedded relocs"
+ msgstr "Ствара угнежђена премештања"
+
+-#: lexsup.c:341
++#: lexsup.c:342
+ msgid "Treat warnings as errors"
+ msgstr "Сматра упозорења грешкама"
+
+-#: lexsup.c:344
++#: lexsup.c:345
+ msgid "Do not treat warnings as errors (default)"
+ msgstr "Не сматра упозорења грешкама (основно)"
+
+-#: lexsup.c:347
++#: lexsup.c:348
+ msgid "Call SYMBOL at unload-time"
+ msgstr "Позива СИМБОЛ за време истовара"
+
+-#: lexsup.c:349
++#: lexsup.c:350
+ msgid "Force generation of file with .exe suffix"
+ msgstr "Приморава стварање датотеке са суфиксом „.exe“"
+
+-#: lexsup.c:351
++#: lexsup.c:352
+ msgid "Remove unused sections (on some targets)"
+ msgstr "Уклања некоришћене одељке (на неким метама)"
+
+-#: lexsup.c:354
++#: lexsup.c:355
+ msgid "Don't remove unused sections (default)"
+ msgstr "Не уклања некоришћене одељке (основно)"
+
+-#: lexsup.c:357
++#: lexsup.c:358
+ msgid "List removed unused sections on stderr"
+ msgstr "Исписује уклоњене некоришћене одељке на стандардној грешци"
+
+-#: lexsup.c:360
++#: lexsup.c:361
+ msgid "Do not list removed unused sections"
+ msgstr "Не исписује уклоњене некоришћене одељке"
+
+-#: lexsup.c:363
++#: lexsup.c:364
+ msgid "Keep exported symbols when removing unused sections"
+ msgstr "Задржава извезене симболе када уклања некоришћене одељке"
+
+-#: lexsup.c:366
++#: lexsup.c:367
+ msgid "Set default hash table size close to <NUMBER>"
+ msgstr "Поставља основну величину хеш табеле приближно на <БРОЈ>"
+
+-#: lexsup.c:369
++#: lexsup.c:370
+ msgid "Print option help"
+ msgstr "Исписује помоћ опције"
+
+-#: lexsup.c:371
++#: lexsup.c:372
+ msgid "Call SYMBOL at load-time"
+ msgstr "Позива СИМБОЛ за време учитавања"
+
+-#: lexsup.c:373
++#: lexsup.c:374
+ msgid "FILE/DIR"
+ msgstr "ДАТОТЕКА/ДИРЕКТРОРИЈУМ"
+
+-#: lexsup.c:373
++#: lexsup.c:374
+ msgid "Write a linker map to FILE or DIR/<outputname>.map"
+ msgstr "Пише мапу свезача у ДАТОТЕКУ или ДИРЕКТРОРИЈУМ/<излазног_назива>.map"
+
+-#: lexsup.c:375
++#: lexsup.c:376
+ msgid "Do not define Common storage"
+ msgstr "Не дефинише општи смештај"
+
+-#: lexsup.c:377
++#: lexsup.c:378
+ msgid "Do not demangle symbol names"
+ msgstr "Не прекрштава називе симбола"
+
+-#: lexsup.c:379
++#: lexsup.c:380
+ msgid "Use less memory and more disk I/O"
+ msgstr "Користи мање меморије а више У/И диска"
+
+-#: lexsup.c:381
++#: lexsup.c:382
+ msgid "Do not allow unresolved references in object files"
+ msgstr "Не дозвољава нерешене упуте у објектним датотекама"
+
+-#: lexsup.c:384
++#: lexsup.c:385
+ msgid "Allow unresolved references in shared libraries"
+ msgstr "Дозвољава нерешене упуте у дељеним библиотекама"
+
+-#: lexsup.c:388
++#: lexsup.c:389
+ msgid "Do not allow unresolved references in shared libs"
+ msgstr "Не дозвољава нерешене упуте у дељеним библиотекама"
+
+-#: lexsup.c:392
++#: lexsup.c:393
+ msgid "Allow multiple definitions"
+ msgstr "Дозвољава више дефиниција"
+
+-#: lexsup.c:396
++#: lexsup.c:397
+ msgid "SCRIPT"
+ msgstr "СКРИПТА"
+
+-#: lexsup.c:396
++#: lexsup.c:397
+ msgid "Provide a script to help with undefined symbol errors"
+ msgstr "Обезбеђује скрипту да помогне са недефинисаним грешкама симбола"
+
+-#: lexsup.c:399
++#: lexsup.c:400
+ msgid "Disallow undefined version"
+ msgstr "Искључује недефинисано издање"
+
+-#: lexsup.c:401
++#: lexsup.c:402
+ msgid "Create default symbol version"
+ msgstr "Ствара основно издање симбола"
+
+-#: lexsup.c:404
++#: lexsup.c:405
+ msgid "Create default symbol version for imported symbols"
+ msgstr "Ствара основно издање симбола за увезене симболе"
+
+-#: lexsup.c:407
++#: lexsup.c:408
+ msgid "Don't warn about mismatched input files"
+ msgstr "Не упозорава о неодговарајућим улазним датотекама"
+
+-#: lexsup.c:410
++#: lexsup.c:411
+ msgid "Don't warn on finding an incompatible library"
+ msgstr "Не упозорава о налажењу несагласне библиотеке"
+
+-#: lexsup.c:413
++#: lexsup.c:414
+ msgid "Turn off --whole-archive"
+ msgstr "Искључује „--whole-archive“"
+
+-#: lexsup.c:415
++#: lexsup.c:416
+ msgid "Create an output file even if errors occur"
+ msgstr "Ствара излазну датотеку чак и ако дође до грешака"
+
+-#: lexsup.c:420
++#: lexsup.c:421
+ msgid ""
+ "Only use library directories specified on\n"
+ " the command line"
+@@ -1678,147 +1682,151 @@ msgstr ""
+ "Само користи директоријуме библиотеке наведене на\n"
+ " линији наредби"
+
+-#: lexsup.c:424
++#: lexsup.c:425
+ msgid "Specify target of output file"
+ msgstr "Наводи мету излазне датотеке"
+
+-#: lexsup.c:427
++#: lexsup.c:428
+ msgid "Print default output format"
+ msgstr "Исписује основни излазни формат"
+
+-#: lexsup.c:429
++#: lexsup.c:430
+ msgid "Print current sysroot"
+ msgstr "Исписује текућег администратора система"
+
+-#: lexsup.c:431
++#: lexsup.c:432
+ msgid "Ignored for Linux compatibility"
+ msgstr "Занемарено зарад Линукс сагласности"
+
+-#: lexsup.c:434
++#: lexsup.c:435
+ msgid "Reduce memory overheads, possibly taking much longer"
+ msgstr "Умањује утрошке меморије, вероватно трајући дуже"
+
+-#: lexsup.c:437
++#: lexsup.c:439
++msgid "Set the maximum cache size to SIZE bytes"
++msgstr "оставља највећу величину оставе на ВЕЛИЧИНА бајтова"
++
++#: lexsup.c:442
+ msgid "Reduce code size by using target specific optimizations"
+ msgstr "Смањује величину кода користећи оптимизације специфичне мети"
+
+-#: lexsup.c:439
++#: lexsup.c:444
+ msgid "Do not use relaxation techniques to reduce code size"
+ msgstr "Не користи технике опуштања да умањи величину кода"
+
+-#: lexsup.c:442
++#: lexsup.c:447
+ msgid "Keep only symbols listed in FILE"
+ msgstr "Користи само симболе исписане у ДАТОТЕЦИ"
+
+-#: lexsup.c:444
++#: lexsup.c:449
+ msgid "Set runtime shared library search path"
+ msgstr "Поставља путању претраге дељене библиотеке времена извршавања"
+
+-#: lexsup.c:446
++#: lexsup.c:451
+ msgid "Set link time shared library search path"
+ msgstr "Поставља путању претраге дељене библиотеке времена везе"
+
+-#: lexsup.c:449
++#: lexsup.c:454
+ msgid "Create a shared library"
+ msgstr "Прави дељену библиотеку"
+
+-#: lexsup.c:453
++#: lexsup.c:458
+ msgid "Create a position independent executable"
+ msgstr "Ствара извршног независног од положаја"
+
+-#: lexsup.c:457
++#: lexsup.c:462
+ msgid "Create a position dependent executable (default)"
+ msgstr "Ствара извршног зависног од положаја (основно)"
+
+-#: lexsup.c:459
++#: lexsup.c:464
+ msgid "[=ascending|descending]"
+ msgstr "[=растуће|опадајуће]"
+
+-#: lexsup.c:460
++#: lexsup.c:465
+ msgid "Sort common symbols by alignment [in specified order]"
+ msgstr "Ређа опште симболе према поравнању [наведеним редом]"
+
+-#: lexsup.c:465
++#: lexsup.c:470
+ msgid "name|alignment"
+ msgstr "назив|поравнање"
+
+-#: lexsup.c:466
++#: lexsup.c:471
+ msgid "Sort sections by name or maximum alignment"
+ msgstr "Ређа одељке према називу или највећем поравнању"
+
+-#: lexsup.c:468
++#: lexsup.c:473
+ msgid "COUNT"
+ msgstr "БРОЈ"
+
+-#: lexsup.c:468
++#: lexsup.c:473
+ msgid "How many tags to reserve in .dynamic section"
+ msgstr "Колико ознака да резервише у одељку „.dynamic“"
+
+-#: lexsup.c:471
++#: lexsup.c:476
+ msgid "[=SIZE]"
+ msgstr "[=ВЕЛИЧИНА]"
+
+-#: lexsup.c:471
++#: lexsup.c:476
+ msgid "Split output sections every SIZE octets"
+ msgstr "Дели излазне одељке свака ВЕЛИЧИНА октета"
+
+-#: lexsup.c:474
++#: lexsup.c:479
+ msgid "[=COUNT]"
+ msgstr "[=БРОЈ]"
+
+-#: lexsup.c:474
++#: lexsup.c:479
+ msgid "Split output sections every COUNT relocs"
+ msgstr "Дели излазне одељке свака ВЕЛИЧИНА премештања"
+
+-#: lexsup.c:477
++#: lexsup.c:482
+ msgid "Print memory usage statistics"
+ msgstr "Исписује статистику коришћења меморије"
+
+-#: lexsup.c:479
++#: lexsup.c:484
+ msgid "Display target specific options"
+ msgstr "Приказује опције специфичне за мету"
+
+-#: lexsup.c:481
++#: lexsup.c:486
+ msgid "Do task level linking"
+ msgstr "Обавља повезивање на нивоу задатка"
+
+-#: lexsup.c:483
++#: lexsup.c:488
+ msgid "Use same format as native linker"
+ msgstr "Користи исти формат као матични повезивач"
+
+-#: lexsup.c:485
++#: lexsup.c:490
+ msgid "SECTION=ADDRESS"
+ msgstr "ОДЕЉАК=АДРЕСА"
+
+-#: lexsup.c:485
++#: lexsup.c:490
+ msgid "Set address of named section"
+ msgstr "Поставља адресу именованог одељка"
+
+-#: lexsup.c:488
++#: lexsup.c:493
+ msgid "Set address of .bss section"
+ msgstr "Поставља адресу одељка „.bss“"
+
+-#: lexsup.c:490
++#: lexsup.c:495
+ msgid "Set address of .data section"
+ msgstr " Поставља адресу одељка „.data“"
+
+-#: lexsup.c:492
++#: lexsup.c:497
+ msgid "Set address of .text section"
+ msgstr " Поставља адресу одељка „.text“"
+
+-#: lexsup.c:494
++#: lexsup.c:499
+ msgid "Set address of text segment"
+ msgstr " Поставља адресу одељка текста"
+
+-#: lexsup.c:496
++#: lexsup.c:501
+ msgid "Set address of rodata segment"
+ msgstr "Поставља адресу одељка ро-података"
+
+-#: lexsup.c:498
++#: lexsup.c:503
+ msgid "Set address of ldata segment"
+ msgstr "Поставља адресу одељка л-података"
+
+-#: lexsup.c:501
++#: lexsup.c:506
+ msgid ""
+ "How to handle unresolved symbols. <method> is:\n"
+ " ignore-all, report-all, ignore-in-object-files,\n"
+@@ -1828,19 +1836,19 @@ msgstr ""
+ " „ignore-all“ (занемари све), „report-all“ (пријави све), „ignore-in-object-files“ (занемари у објектним датотекама),\n"
+ " „ignore-in-shared-libs“ (занемари у дељеним библиотекама)"
+
+-#: lexsup.c:506
++#: lexsup.c:511
+ msgid "[=NUMBER]"
+ msgstr "[=БРОЈ]"
+
+-#: lexsup.c:507
++#: lexsup.c:512
+ msgid "Output lots of information during link"
+ msgstr " Исписује доста података за време повезивања"
+
+-#: lexsup.c:511
++#: lexsup.c:516
+ msgid "Read version information script"
+ msgstr "Чита скрипту података о издању"
+
+-#: lexsup.c:514
++#: lexsup.c:519
+ msgid ""
+ "Take export symbols list from .exports, using\n"
+ " SYMBOL as the version."
+@@ -1848,119 +1856,119 @@ msgstr ""
+ "Узима извозни списак симбола из „.exports“, користећи\n"
+ " СИМБОЛ као издање."
+
+-#: lexsup.c:518
++#: lexsup.c:523
+ msgid "Add data symbols to dynamic list"
+ msgstr "Додаје симболе података на динамички списак"
+
+-#: lexsup.c:520
++#: lexsup.c:525
+ msgid "Use C++ operator new/delete dynamic list"
+ msgstr "Користи нови/обриши динамички списак Ц++ оператора"
+
+-#: lexsup.c:522
++#: lexsup.c:527
+ msgid "Use C++ typeinfo dynamic list"
+ msgstr "Користи Ц++ динамички списак врсте података"
+
+-#: lexsup.c:524
++#: lexsup.c:529
+ msgid "Read dynamic list"
+ msgstr "Чита динамички списак"
+
+-#: lexsup.c:526
++#: lexsup.c:531
+ msgid "Export the specified symbol"
+ msgstr "Извози наведени симбол"
+
+-#: lexsup.c:528
++#: lexsup.c:533
+ msgid "Read export dynamic symbol list"
+ msgstr "Чита списак извоза динамичког симбола"
+
+-#: lexsup.c:530
++#: lexsup.c:535
+ msgid "Warn about duplicate common symbols"
+ msgstr "Упозорава о удвострученим општим симболима"
+
+-#: lexsup.c:532
++#: lexsup.c:537
+ msgid "Warn if global constructors/destructors are seen"
+ msgstr "Упозорава ако је виђен општи градитељ/рушитељ"
+
+-#: lexsup.c:535
++#: lexsup.c:540
+ msgid "Warn if the multiple GP values are used"
+ msgstr "Упозорава ако је коришћено више ГП вредности"
+
+-#: lexsup.c:537
++#: lexsup.c:542
+ msgid "Warn only once per undefined symbol"
+ msgstr "Упозорава само једном по недефинисаном симболу"
+
+-#: lexsup.c:539
++#: lexsup.c:544
+ msgid "Warn if start of section changes due to alignment"
+ msgstr "Упозорава ако се почетак одељка промени у току поравнања"
+
+-#: lexsup.c:544
++#: lexsup.c:549
+ msgid "Warn if output has DT_TEXTREL (default)"
+ msgstr "Упозорава ако излаз има „DT_TEXTREL“ (основно)"
+
+-#: lexsup.c:546
++#: lexsup.c:551
+ msgid "Warn if output has DT_TEXTREL"
+ msgstr "Упозорава ако излаз има „DT_TEXTREL“"
+
+-#: lexsup.c:552
++#: lexsup.c:557
+ msgid "Warn if an object has alternate ELF machine code"
+ msgstr "Упозорава ако објект има заменски ЕЛФ машински код"
+
+-#: lexsup.c:556
++#: lexsup.c:561
+ msgid "Report unresolved symbols as warnings"
+ msgstr "Представља нерешене симболе као упозорења"
+
+-#: lexsup.c:559
++#: lexsup.c:564
+ msgid "Report unresolved symbols as errors"
+ msgstr "Представља нерешене симболе као грешке"
+
+-#: lexsup.c:561
++#: lexsup.c:566
+ msgid "Include all objects from following archives"
+ msgstr "Укључује све објкете из пратећих архива"
+
+-#: lexsup.c:564
++#: lexsup.c:569
+ msgid "Use wrapper functions for SYMBOL"
+ msgstr " Користи функције омотача за СИМБОЛ"
+
+-#: lexsup.c:568
++#: lexsup.c:573
+ msgid "Unresolved SYMBOL will not cause an error or warning"
+ msgstr "Нерешени СИМБОЛ неће довести до грешке или упозорења"
+
+-#: lexsup.c:570
++#: lexsup.c:575
+ msgid "Push state of flags governing input file handling"
+ msgstr "Стање гурања заставица влада руковањем улазне датотеке"
+
+-#: lexsup.c:573
++#: lexsup.c:578
+ msgid "Pop state of flags governing input file handling"
+ msgstr "Стање избацивања у први план заставица влада руковањем улазне датотеке"
+
+-#: lexsup.c:576
++#: lexsup.c:581
+ msgid "Report target memory usage"
+ msgstr "Извештава коришћење меморије циља"
+
+-#: lexsup.c:578
++#: lexsup.c:583
+ msgid "=MODE"
+ msgstr "=РЕЖИМ"
+
+-#: lexsup.c:578
++#: lexsup.c:583
+ msgid "Control how orphan sections are handled."
+ msgstr "Контролише како се ради са напуштеним одељцима."
+
+-#: lexsup.c:581
++#: lexsup.c:586
+ msgid "Show discarded sections in map file output (default)"
+ msgstr "Приказује одбачене одељке у излазу датотеке мапе (основно)"
+
+-#: lexsup.c:584
++#: lexsup.c:589
+ msgid "Do not show discarded sections in map file output"
+ msgstr "Приказује одбачене одељке у излазу датотеке мапе"
+
+-#: lexsup.c:587
++#: lexsup.c:592
+ msgid "Emit names and types of static variables in CTF"
+ msgstr "Емитује називе и врсте статичких променљивих у „CTF“-у"
+
+-#: lexsup.c:590
++#: lexsup.c:595
+ msgid "Do not emit names and types of static variables in CTF"
+ msgstr "Не емитује називе и врсте статичких променљивих у „CTF“-у"
+
+-#: lexsup.c:594
++#: lexsup.c:599
+ msgid ""
+ "How to share CTF types between translation units.\n"
+ " <method> is: share-unconflicted (default),\n"
+@@ -1970,60 +1978,61 @@ msgstr ""
+ " <метода> је: „share-unconflicted“ (основно),\n"
+ " „share-duplicated“"
+
+-#: lexsup.c:758
++#: lexsup.c:763
+ msgid "%F%P: Error: unable to disambiguate: %s (did you mean -%s ?)\n"
+ msgstr "%F%P: Грешка: не могу да разликујем: %s (да ли сте мислили „-%s“ ?)\n"
+
+-#: lexsup.c:761
++#: lexsup.c:766
+ msgid "%P: Warning: grouped short command line options are deprecated: %s\n"
+ msgstr "%P: Упозорење: груписане кратке опције линије наредби су застареле: %s\n"
+
+-#: lexsup.c:788
++#: lexsup.c:793
+ msgid "%P: %s: missing argument\n"
+ msgstr "%P: %s: недостаје аргумент\n"
+
+-#: lexsup.c:793
++#: lexsup.c:798
+ msgid "%P: unrecognized option '%s'\n"
+ msgstr "%P: непозната опција „%s“\n"
+
+-#: lexsup.c:798
++#: lexsup.c:803
+ msgid "%F%P: use the --help option for usage information\n"
+ msgstr "%F%P: користите опцију „--help“ за податке о коришћењу\n"
+
+-#: lexsup.c:817
++#: lexsup.c:822
+ msgid "%F%P: unrecognized -a option `%s'\n"
+ msgstr "%F%P: непозната „-a“ опција „%s“\n"
+
+-#: lexsup.c:830
++#: lexsup.c:835
+ msgid "%F%P: unrecognized -assert option `%s'\n"
+ msgstr "%F%P: непозната „-assert“ опција „%s“\n"
+
+-#: lexsup.c:874
++#: lexsup.c:879
+ msgid "%F%P: unknown demangling style `%s'\n"
+ msgstr "%F%P: непознат стил прекрштавања „%s“\n"
+
+-#: lexsup.c:950 lexsup.c:1424 eaarch64cloudabi.c:816 eaarch64cloudabib.c:816
+-#: eaarch64elf.c:811 eaarch64elf32.c:811 eaarch64elf32b.c:811
+-#: eaarch64elfb.c:811 eaarch64fbsd.c:816 eaarch64fbsdb.c:816
+-#: eaarch64linux.c:816 eaarch64linux32.c:816 eaarch64linux32b.c:816
+-#: eaarch64linuxb.c:816 earmelf.c:1077 earmelf_fbsd.c:1077
+-#: earmelf_fuchsia.c:1082 earmelf_linux.c:1082 earmelf_linux_eabi.c:1082
+-#: earmelf_linux_fdpiceabi.c:1082 earmelf_nacl.c:1082 earmelf_nbsd.c:1077
+-#: earmelf_phoenix.c:1082 earmelf_vxworks.c:1113 earmelfb.c:1077
+-#: earmelfb_fbsd.c:1077 earmelfb_fuchsia.c:1082 earmelfb_linux.c:1082
+-#: earmelfb_linux_eabi.c:1082 earmelfb_linux_fdpiceabi.c:1082
+-#: earmelfb_nacl.c:1082 earmelfb_nbsd.c:1077 earmnto.c:1052 ecskyelf.c:539
+-#: ecskyelf_linux.c:706 eelf32metag.c:703 eelf64lppc.c:1169
+-#: eelf64lppc_fbsd.c:1169 eelf64ppc.c:1169 eelf64ppc_fbsd.c:1169
+-#: ehppaelf.c:559 ehppalinux.c:741 ehppanbsd.c:741 ehppaobsd.c:741
++#: lexsup.c:955 lexsup.c:1429 eaarch64cloudabi.c:818 eaarch64cloudabib.c:818
++#: eaarch64elf.c:813 eaarch64elf32.c:813 eaarch64elf32b.c:813
++#: eaarch64elfb.c:813 eaarch64fbsd.c:818 eaarch64fbsdb.c:818
++#: eaarch64haiku.c:818 eaarch64linux.c:818 eaarch64linux32.c:818
++#: eaarch64linux32b.c:818 eaarch64linuxb.c:818 earmelf.c:1079
++#: earmelf_fbsd.c:1079 earmelf_fuchsia.c:1084 earmelf_haiku.c:1084
++#: earmelf_linux.c:1084 earmelf_linux_eabi.c:1084
++#: earmelf_linux_fdpiceabi.c:1084 earmelf_nacl.c:1084 earmelf_nbsd.c:1079
++#: earmelf_phoenix.c:1084 earmelf_vxworks.c:1115 earmelfb.c:1079
++#: earmelfb_fbsd.c:1079 earmelfb_fuchsia.c:1084 earmelfb_linux.c:1084
++#: earmelfb_linux_eabi.c:1084 earmelfb_linux_fdpiceabi.c:1084
++#: earmelfb_nacl.c:1084 earmelfb_nbsd.c:1079 earmnto.c:1054 ecskyelf.c:541
++#: ecskyelf_linux.c:708 eelf32metag.c:705 eelf64lppc.c:1187
++#: eelf64lppc_fbsd.c:1187 eelf64ppc.c:1187 eelf64ppc_fbsd.c:1187
++#: ehppaelf.c:561 ehppalinux.c:743 ehppanbsd.c:743 ehppaobsd.c:743
+ msgid "%F%P: invalid number `%s'\n"
+ msgstr "%F%P: неисправан број „%s“\n"
+
+-#: lexsup.c:1046
++#: lexsup.c:1051
+ msgid "%F%P: bad --unresolved-symbols option: %s\n"
+ msgstr "%F%P: лоша опција „--unresolved-symbols“: %s\n"
+
+-#: lexsup.c:1123
++#: lexsup.c:1128
+ msgid "%F%P: bad -plugin-opt option\n"
+ msgstr "%F%P: лоша опција „-plugin-opt“\n"
+
+@@ -2035,158 +2044,162 @@ msgstr "%F%P: лоша опција „-plugin-opt“\n"
+ #. an error message here. We cannot just make this a warning,
+ #. increment optind, and continue because getopt is too confused
+ #. and will seg-fault the next time around.
+-#: lexsup.c:1140
++#: lexsup.c:1145
+ msgid "%F%P: unrecognised option: %s\n"
+ msgstr "%F%P: непозната опција „%s“\n"
+
+-#: lexsup.c:1143 lexsup.c:1253 lexsup.c:1274 lexsup.c:1393
++#: lexsup.c:1148 lexsup.c:1258 lexsup.c:1279 lexsup.c:1398
+ msgid "%F%P: -r and %s may not be used together\n"
+ msgstr "%F%P: „-r“ и „%s“ се не могу користити заједно\n"
+
+-#: lexsup.c:1265
++#: lexsup.c:1270
+ msgid "%F%P: -shared not supported\n"
+ msgstr "%F%P: „-shared“ није подржана\n"
+
+-#: lexsup.c:1279
++#: lexsup.c:1284
+ msgid "%F%P: -pie not supported\n"
+ msgstr "%F%P: „-pie“ није подржана\n"
+
+-#: lexsup.c:1285
++#: lexsup.c:1290
+ msgid "%P: SONAME must not be empty string; keeping previous one\n"
+ msgstr "%P: „SONAME“ не сме бити празна ниска; задржавам претходну\n"
+
+-#: lexsup.c:1291
++#: lexsup.c:1296
+ msgid "descending"
+ msgstr "опадајуће"
+
+-#: lexsup.c:1293
++#: lexsup.c:1298
+ msgid "ascending"
+ msgstr "растуће"
+
+-#: lexsup.c:1296
++#: lexsup.c:1301
+ msgid "%F%P: invalid common section sorting option: %s\n"
+ msgstr "%F%P: неисправна опција ређања општег одељка: %s\n"
+
+-#: lexsup.c:1300
++#: lexsup.c:1305
+ msgid "name"
+ msgstr "назив"
+
+-#: lexsup.c:1302
++#: lexsup.c:1307
+ msgid "alignment"
+ msgstr "поравнање"
+
+-#: lexsup.c:1305
++#: lexsup.c:1310
+ msgid "%F%P: invalid section sorting option: %s\n"
+ msgstr "%F%P: неисправна опција ређања одељка: %s\n"
+
+-#: lexsup.c:1342
++#: lexsup.c:1347
+ msgid "%F%P: invalid argument to option \"--section-start\"\n"
+ msgstr "%F%P: неисправан аргумент за опцију „--section-start“\n"
+
+-#: lexsup.c:1349
++#: lexsup.c:1354
+ msgid "%F%P: missing argument(s) to option \"--section-start\"\n"
+ msgstr "%F%P: недостаје аргумент за опцију „--section-start“\n"
+
+-#: lexsup.c:1614
++#: lexsup.c:1619
+ msgid "%F%P: group ended before it began (--help for usage)\n"
+ msgstr "%F%P: група је завршена пре почетка („--help“ за коришћење)\n"
+
+-#: lexsup.c:1642
++#: lexsup.c:1644
++msgid "%F%P: invalid cache memory size: %s\n"
++msgstr "%F%P: неисправна величина оставе: %s\n"
++
++#: lexsup.c:1658
+ msgid "%X%P: --hash-size needs a numeric argument\n"
+ msgstr "%X%P: „--hash-size“ је потребан бројевни аргумент\n"
+
+-#: lexsup.c:1654
++#: lexsup.c:1670
+ msgid "%F%P: no state pushed before popping\n"
+ msgstr "%F%P: ниједно стање није погурано пре издизања\n"
+
+-#: lexsup.c:1677
++#: lexsup.c:1693
+ msgid "%F%P: invalid argument to option \"--orphan-handling\"\n"
+ msgstr "%F%P: неисправан аргумент за опцију „--orphan-handling“\n"
+
+-#: lexsup.c:1707
++#: lexsup.c:1723
+ msgid "%F%P: bad --ctf-share-types option: %s\n"
+ msgstr "%F%P: лоша „--ctf-share-types“ опција: %s\n"
+
+-#: lexsup.c:1725
++#: lexsup.c:1741
+ msgid "%P: no file/directory name provided for map output; ignored\n"
+ msgstr "%P: није достављен ниједан назив датотеке/директоријума за излаз мапе; занемарено\n"
+
+-#: lexsup.c:1753
++#: lexsup.c:1769
+ msgid "%P: cannot stat linker map file: %E\n"
+ msgstr "%P: не могу да добавим податке датотеке мапе свезача: %E\n"
+
+-#: lexsup.c:1765
++#: lexsup.c:1781
+ msgid "%P: linker map file is not a regular file\n"
+ msgstr "%P: датотека мапе свезача није обична датотека\n"
+
+ #. If the asprintf failed then something is probably very
+ #. wrong. Better to halt now rather than continue on
+ #. into more problems.
+-#: lexsup.c:1776
++#: lexsup.c:1792
+ msgid "%P%F: cannot create name for linker map file: %E\n"
+ msgstr "%P%F: не могу да направим назив за датотеку мапе свезача: %E\n"
+
+-#: lexsup.c:1787
++#: lexsup.c:1803
+ msgid "%P: SONAME must not be empty string; ignored\n"
+ msgstr "%P: „SONAME“ не сме бити празна ниска; занемарено\n"
+
+-#: lexsup.c:1793
++#: lexsup.c:1809
+ msgid "%P: missing --end-group; added as last command line option\n"
+ msgstr "%P: недостаје „--end-group“; додато је као последња опција линије наредби\n"
+
+-#: lexsup.c:1901
++#: lexsup.c:1917
+ msgid "%F%P: -F may not be used without -shared\n"
+ msgstr "%F%P: „-F“ се не може користити са „-shared“\n"
+
+-#: lexsup.c:1903
++#: lexsup.c:1919
+ msgid "%F%P: -f may not be used without -shared\n"
+ msgstr "%F%P: „-f“ се не може користити без „-shared“\n"
+
+-#: lexsup.c:1944 lexsup.c:1957
++#: lexsup.c:1960 lexsup.c:1973
+ msgid "%F%P: invalid hex number `%s'\n"
+ msgstr "%F%P: неисправан хексадецимални број „%s“\n"
+
+-#: lexsup.c:1987
++#: lexsup.c:2003
+ #, c-format
+ msgid " --audit=AUDITLIB Specify a library to use for auditing\n"
+ msgstr " --audit=БИБЛ_НАДГЛЕДАЊА Наводи библиотеку која ће се користити за надгледање\n"
+
+-#: lexsup.c:1989
++#: lexsup.c:2005
+ #, c-format
+ msgid " -Bgroup Selects group name lookup rules for DSO\n"
+ msgstr " -Bgroup Бира правила тражења назива групе за „DSO“\n"
+
+-#: lexsup.c:1991
++#: lexsup.c:2007
+ #, c-format
+ msgid " --disable-new-dtags Disable new dynamic tags\n"
+ msgstr " --disable-new-dtags Онемогућује нове динамичке ознаке\n"
+
+-#: lexsup.c:1993
++#: lexsup.c:2009
+ #, c-format
+ msgid " --enable-new-dtags Enable new dynamic tags\n"
+ msgstr " --enable-new-dtags Омогућује нове динамичке ознаке\n"
+
+-#: lexsup.c:1995
++#: lexsup.c:2011
+ #, c-format
+ msgid " --eh-frame-hdr Create .eh_frame_hdr section\n"
+ msgstr " --eh-frame-hdr Прави „.eh_frame_hdr“ одељак\n"
+
+-#: lexsup.c:1997
++#: lexsup.c:2013
+ #, c-format
+ msgid " --no-eh-frame-hdr Do not create .eh_frame_hdr section\n"
+ msgstr " --no-eh-frame-hdr Не прави „.eh_frame_hdrд одељак\n"
+
+-#: lexsup.c:1999
++#: lexsup.c:2015
+ #, c-format
+ msgid " --exclude-libs=LIBS Make all symbols in LIBS hidden\n"
+ msgstr " --exclude-libs=БИБЛЕ Чини све симболе у БИБЛИОТЕКАМА скривеним\n"
+
+-#: lexsup.c:2001
++#: lexsup.c:2017
+ #, c-format
+ msgid " --hash-style=STYLE Set hash style to sysv/gnu/both. Default: "
+ msgstr " --hash-style=СТИЛ Поставља хеш стил на сисв/гну/оба. Основно: "
+
+-#: lexsup.c:2020
++#: lexsup.c:2036
+ #, c-format
+ msgid ""
+ " -P AUDITLIB, --depaudit=AUDITLIB\n"
+@@ -2195,17 +2208,17 @@ msgstr ""
+ " -P БИБЛ_НАДГЛЕДАЊА, --depaudit=БИБЛ_НАДГЛЕДАЊА\n"
+ " Наводи библиотеку која ће се користити за надгледање зависности\n"
+
+-#: lexsup.c:2023
++#: lexsup.c:2039
+ #, c-format
+ msgid " -z combreloc Merge dynamic relocs into one section and sort\n"
+ msgstr " -z combreloc Стапа динамичке премештаје у један одељак и ређа\n"
+
+-#: lexsup.c:2025
++#: lexsup.c:2041
+ #, c-format
+ msgid " -z nocombreloc Don't merge dynamic relocs into one section\n"
+ msgstr " -z nocombreloc Не стапа динамичке премештаје у један одељак\n"
+
+-#: lexsup.c:2027
++#: lexsup.c:2043
+ #, c-format
+ msgid ""
+ " -z global Make symbols in DSO available for subsequently\n"
+@@ -2214,67 +2227,67 @@ msgstr ""
+ " -z global Чини симболе у „DSO“ доступним за накнадно\n"
+ " учитане објекте\n"
+
+-#: lexsup.c:2030
++#: lexsup.c:2046
+ #, c-format
+ msgid " -z initfirst Mark DSO to be initialized first at runtime\n"
+ msgstr " -z initfirst Означава „DSO“ да буде први покренут у време извршења\n"
+
+-#: lexsup.c:2032
++#: lexsup.c:2048
+ #, c-format
+ msgid " -z interpose Mark object to interpose all DSOs but executable\n"
+ msgstr " -z interpose Означава објекте да уметну све „DSO“-ове осим извршне\n"
+
+-#: lexsup.c:2034
++#: lexsup.c:2050
+ #, c-format
+ msgid " -z unique Mark DSO to be loaded at most once by default, and only in the main namespace\n"
+ msgstr " -z unique Означава „DSO за учитавање највише једном по основи, и само у главном називном простору\n"
+
+-#: lexsup.c:2036
++#: lexsup.c:2052
+ #, c-format
+ msgid " -z nounique Don't mark DSO as a loadable at most once\n"
+ msgstr " -z nounique Не означава „DSO“ за учитавање највише једном\n"
+
+-#: lexsup.c:2038
++#: lexsup.c:2054
+ #, c-format
+ msgid " -z lazy Mark object lazy runtime binding (default)\n"
+ msgstr " -z lazy Означава лењо време извршења увезивања објекта (основно)\n"
+
+-#: lexsup.c:2040
++#: lexsup.c:2056
+ #, c-format
+ msgid " -z loadfltr Mark object requiring immediate process\n"
+ msgstr " -z loadfltr Означава објекте да захтевају моменталну обраду\n"
+
+-#: lexsup.c:2042
++#: lexsup.c:2058
+ #, c-format
+ msgid " -z nocopyreloc Don't create copy relocs\n"
+ msgstr " -z nocopyreloc Не ствара умножак премештаја\n"
+
+-#: lexsup.c:2044
++#: lexsup.c:2060
+ #, c-format
+ msgid " -z nodefaultlib Mark object not to use default search paths\n"
+ msgstr " -z nodefaultlib Означава објекат да не користи основне путање претраге\n"
+
+-#: lexsup.c:2046
++#: lexsup.c:2062
+ #, c-format
+ msgid " -z nodelete Mark DSO non-deletable at runtime\n"
+ msgstr " -z nodelete Означава „DSO“ необрисивим у време извршења\n"
+
+-#: lexsup.c:2048
++#: lexsup.c:2064
+ #, c-format
+ msgid " -z nodlopen Mark DSO not available to dlopen\n"
+ msgstr " -z nodlopen Означава „DSO“ недоступним за „dlopen“\n"
+
+-#: lexsup.c:2050
++#: lexsup.c:2066
+ #, c-format
+ msgid " -z nodump Mark DSO not available to dldump\n"
+ msgstr " -z nodump Означава „DSO“ недоступним за „dldump“\n"
+
+-#: lexsup.c:2052
++#: lexsup.c:2068
+ #, c-format
+ msgid " -z now Mark object non-lazy runtime binding\n"
+ msgstr " -z now Означава не лењо време извршења увезивања објекта\n"
+
+-#: lexsup.c:2054
++#: lexsup.c:2070
+ #, c-format
+ msgid ""
+ " -z origin Mark object requiring immediate $ORIGIN\n"
+@@ -2283,92 +2296,92 @@ msgstr ""
+ " -z origin Означава објекат да захтева тренутну „$ORIGIN“\n"
+ " обраду у време извршавања\n"
+
+-#: lexsup.c:2058
++#: lexsup.c:2074
+ #, c-format
+ msgid " -z relro Create RELRO program header (default)\n"
+ msgstr " -z relro Ствара „RELRO“ заглавље програма (основно)\n"
+
+-#: lexsup.c:2060
++#: lexsup.c:2076
+ #, c-format
+ msgid " -z norelro Don't create RELRO program header\n"
+ msgstr " -z norelro Не ствара „RELRO“ заглавље програма\n"
+
+-#: lexsup.c:2063
++#: lexsup.c:2079
+ #, c-format
+ msgid " -z relro Create RELRO program header\n"
+ msgstr " -z relro Ствара „RELRO“ заглавље програма\n"
+
+-#: lexsup.c:2065
++#: lexsup.c:2081
+ #, c-format
+ msgid " -z norelro Don't create RELRO program header (default)\n"
+ msgstr " -z norelro Не ствара „RELRO“ заглавље програма (основно)\n"
+
+-#: lexsup.c:2069
++#: lexsup.c:2085
+ #, c-format
+ msgid " -z separate-code Create separate code program header (default)\n"
+ msgstr " -z separate-code Ствара одвојено заглавље програма кода (основно)\n"
+
+-#: lexsup.c:2071
++#: lexsup.c:2087
+ #, c-format
+ msgid " -z noseparate-code Don't create separate code program header\n"
+ msgstr " -z noseparate-code Не ствара одвојено заглавље програма кода\n"
+
+-#: lexsup.c:2074
++#: lexsup.c:2090
+ #, c-format
+ msgid " -z separate-code Create separate code program header\n"
+ msgstr " -z separate-code Ствара одвојено заглавље програма кода\n"
+
+-#: lexsup.c:2076
++#: lexsup.c:2092
+ #, c-format
+ msgid " -z noseparate-code Don't create separate code program header (default)\n"
+ msgstr " -z noseparate-code Не ствара одвојено заглавље програма кода (основно)\n"
+
+-#: lexsup.c:2079
++#: lexsup.c:2095
+ #, c-format
+ msgid " -z common Generate common symbols with STT_COMMON type\n"
+ msgstr " -z common Ствара опште симболе са „STT_COMMON“ врстом\n"
+
+-#: lexsup.c:2081
++#: lexsup.c:2097
+ #, c-format
+ msgid " -z nocommon Generate common symbols with STT_OBJECT type\n"
+ msgstr " -z nocommon Ствара опште симболе са „STT_OBJECT“ врстом\n"
+
+-#: lexsup.c:2084
++#: lexsup.c:2100
+ #, c-format
+ msgid " -z text Treat DT_TEXTREL in output as error (default)\n"
+ msgstr " -z текст Сматра грешком „DT_TEXTREL“ у излазу (основно)\n"
+
+-#: lexsup.c:2087
++#: lexsup.c:2103
+ #, c-format
+ msgid " -z text Treat DT_TEXTREL in output as error\n"
+ msgstr " -z текст Сматра грешком „DT_TEXTREL“ у излазу\n"
+
+-#: lexsup.c:2091
++#: lexsup.c:2107
+ #, c-format
+ msgid " -z notext Don't treat DT_TEXTREL in output as error (default)\n"
+ msgstr " -z без-текста Не сматра грешком „DT_TEXTREL“ у излазу (основно)\n"
+
+-#: lexsup.c:2093
++#: lexsup.c:2109
+ #, c-format
+ msgid " -z textoff Don't treat DT_TEXTREL in output as error (default)\n"
+ msgstr " -z искљ-текст Не сматра грешком „DT_TEXTREL“ у излазу (основно)\n"
+
+-#: lexsup.c:2098
++#: lexsup.c:2114
+ #, c-format
+ msgid " -z notext Don't treat DT_TEXTREL in output as error\n"
+ msgstr " -z без-текста Не сматра грешком „DT_TEXTREL“ у излазу\n"
+
+-#: lexsup.c:2100
++#: lexsup.c:2116
+ #, c-format
+ msgid " -z textoff Don't treat DT_TEXTREL in output as error\n"
+ msgstr " -z искљ-текст Не сматра грешком „DT_TEXTREL“ у излазу\n"
+
+-#: lexsup.c:2108
++#: lexsup.c:2124
+ #, c-format
+ msgid " --build-id[=STYLE] Generate build ID note\n"
+ msgstr " --build-id[=СТИЛ] Ствара напомену ИБ-а изградње\n"
+
+-#: lexsup.c:2110
++#: lexsup.c:2126
+ #, c-format
+ msgid ""
+ " --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi]\n"
+@@ -2377,82 +2390,82 @@ msgstr ""
+ " --compress-debug-sections=[ништа|zlib|zlib-gnu|zlib-gabi]\n"
+ " Сажима „DWARF“ одељке прочишћавања користећи „zlib“\n"
+
+-#: lexsup.c:2114
++#: lexsup.c:2130
+ #, c-format
+ msgid " Default: zlib-gabi\n"
+ msgstr " Основно: zlib-gabi\n"
+
+-#: lexsup.c:2117
++#: lexsup.c:2133
+ #, c-format
+ msgid " Default: none\n"
+ msgstr " Основно: ништа\n"
+
+-#: lexsup.c:2120
++#: lexsup.c:2136
+ #, c-format
+ msgid " -z common-page-size=SIZE Set common page size to SIZE\n"
+ msgstr " -z common-page-size=ВЕЛЧ Поставља општу величину странице на „ВЕЛИЧИНУ“\n"
+
+-#: lexsup.c:2122
++#: lexsup.c:2138
+ #, c-format
+ msgid " -z max-page-size=SIZE Set maximum page size to SIZE\n"
+ msgstr " -z max-page-size=ВЕЛЧ Поставља највећу величину странице на „ВЕЛИЧИНУ“\n"
+
+-#: lexsup.c:2124
++#: lexsup.c:2140
+ #, c-format
+ msgid " -z defs Report unresolved symbols in object files\n"
+ msgstr " -z defs Пријављује нерешене симболе у ојкетним датотекама\n"
+
+-#: lexsup.c:2126
++#: lexsup.c:2142
+ #, c-format
+ msgid " -z undefs Ignore unresolved symbols in object files\n"
+ msgstr " -z undefs Занемарује нерешене симболе у датотекама објекта\n"
+
+-#: lexsup.c:2128
++#: lexsup.c:2144
+ #, c-format
+ msgid " -z muldefs Allow multiple definitions\n"
+ msgstr " -z muldefs Допушта више дефиниција\n"
+
+-#: lexsup.c:2130
++#: lexsup.c:2146
+ #, c-format
+ msgid " -z stack-size=SIZE Set size of stack segment\n"
+ msgstr " -z stack-size=ВЕЛИЧИНА Поставља величину подеока спремника\n"
+
+-#: lexsup.c:2132
++#: lexsup.c:2148
+ #, c-format
+ msgid " -z execstack Mark executable as requiring executable stack\n"
+ msgstr " -z execstack Означава извршну као да захтева извршни спремник\n"
+
+-#: lexsup.c:2134
++#: lexsup.c:2150
+ #, c-format
+ msgid " -z noexecstack Mark executable as not requiring executable stack\n"
+ msgstr " -z noexecstack Означава извршну као да не захтева извршни спремник\n"
+
+-#: lexsup.c:2136
++#: lexsup.c:2152
+ #, c-format
+ msgid " -z unique-symbol Avoid duplicated local symbol names\n"
+ msgstr " -z unique-symbol Избегава удвостручене локалне називе симбола\n"
+
+-#: lexsup.c:2138
++#: lexsup.c:2154
+ #, c-format
+ msgid " -z nounique-symbol Keep duplicated local symbol names (default)\n"
+ msgstr " -z nounique-symbol Задржава удвостручене локалне називе симбола (основно)\n"
+
+-#: lexsup.c:2140
++#: lexsup.c:2156
+ #, c-format
+ msgid " -z globalaudit Mark executable requiring global auditing\n"
+ msgstr " -z globalaudit Означава извршне који захтевају опште надгледање\n"
+
+-#: lexsup.c:2142
++#: lexsup.c:2158
+ #, c-format
+ msgid " -z start-stop-gc Enable garbage collection on __start/__stop\n"
+ msgstr " -z start-stop-gc Укључује скупљање смећа на „__start/__stop“\n"
+
+-#: lexsup.c:2144
++#: lexsup.c:2160
+ #, c-format
+ msgid " -z nostart-stop-gc Don't garbage collect __start/__stop (default)\n"
+ msgstr " -z nostart-stop-gc Не скупља смеће на „__start/__stop“ (основно)\n"
+
+-#: lexsup.c:2146
++#: lexsup.c:2162
+ #, c-format
+ msgid ""
+ " -z start-stop-visibility=V Set visibility of built-in __start/__stop symbols\n"
+@@ -2461,12 +2474,12 @@ msgstr ""
+ " -z start-stop-visibility=V Поставља видљивост уграђених „__start/__stop“ симбола\n"
+ " на „DEFAULT“, „PROTECTED“, „HIDDEN“ или „INTERNAL“\n"
+
+-#: lexsup.c:2154
++#: lexsup.c:2170
+ #, c-format
+ msgid " --ld-generated-unwind-info Generate exception handling info for PLT\n"
+ msgstr " --ld-generated-unwind-info Ствара податке руковања изузетком за „PLT“\n"
+
+-#: lexsup.c:2156
++#: lexsup.c:2172
+ #, c-format
+ msgid ""
+ " --no-ld-generated-unwind-info\n"
+@@ -2475,49 +2488,49 @@ msgstr ""
+ " --no-ld-generated-unwind-info\n"
+ " Не ствара податке руковања изузетком за „PLT“\n"
+
+-#: lexsup.c:2166
++#: lexsup.c:2182
+ #, c-format
+ msgid "ELF emulations:\n"
+ msgstr "„ELF“ емулације:\n"
+
+-#: lexsup.c:2184
++#: lexsup.c:2200
+ #, c-format
+ msgid "Usage: %s [options] file...\n"
+ msgstr "Употреба: %s [опције] датотека...\n"
+
+-#: lexsup.c:2186
++#: lexsup.c:2202
+ #, c-format
+ msgid "Options:\n"
+ msgstr "Опције:\n"
+
+-#: lexsup.c:2264
++#: lexsup.c:2280
+ #, c-format
+ msgid " @FILE"
+ msgstr " @ДАТОТЕКА"
+
+-#: lexsup.c:2267
++#: lexsup.c:2283
+ #, c-format
+ msgid "Read options from FILE\n"
+ msgstr "Чита опције из ДАТОТЕКЕ\n"
+
+ #. Note: Various tools (such as libtool) depend upon the
+ #. format of the listings below - do not change them.
+-#: lexsup.c:2272
++#: lexsup.c:2288
+ #, c-format
+ msgid "%s: supported targets:"
+ msgstr "%s: подржане мете:"
+
+-#: lexsup.c:2280
++#: lexsup.c:2296
+ #, c-format
+ msgid "%s: supported emulations: "
+ msgstr "%s: подржане емулације: "
+
+-#: lexsup.c:2285
++#: lexsup.c:2301
+ #, c-format
+ msgid "%s: emulation specific options:\n"
+ msgstr "%s: посебне опције емулације:\n"
+
+-#: lexsup.c:2292
++#: lexsup.c:2308
+ #, c-format
+ msgid "Report bugs to %s\n"
+ msgstr "Грешке пријавите на „%s“\n"
+@@ -2526,46 +2539,47 @@ msgstr "Грешке пријавите на „%s“\n"
+ msgid "%F%P: unknown format type %s\n"
+ msgstr "%F%P: непозната врста формата „%s“\n"
+
+-#: pe-dll.c:447
++#: pe-dll.c:448
+ msgid "%X%P: unsupported PEI architecture: %s\n"
+ msgstr "%X%P: неподржана ПЕИ архитектура: %s\n"
+
+-#: pe-dll.c:826
++#: pe-dll.c:827
+ msgid "%X%P: cannot export %s: invalid export name\n"
+ msgstr "%X%P: не могу да извезем „%s“: неисправан назив извоза\n"
+
+-#: pe-dll.c:878
++#: pe-dll.c:879
+ #, c-format
+ msgid "%X%P: error, duplicate EXPORT with ordinals: %s (%d vs %d)\n"
+ msgstr "%X%P: грешка, удвостручени ИЗВОЗ са редним бројевима: %s (%d vs %d)\n"
+
+-#: pe-dll.c:885
++#: pe-dll.c:886
+ #, c-format
+ msgid "%P: warning, duplicate EXPORT: %s\n"
+ msgstr "%P: упозорење, удвостручено „ИЗВЕЗИ“: %s\n"
+
+-#: pe-dll.c:992
++#: pe-dll.c:993
+ #, c-format
+ msgid "%X%P: cannot export %s: symbol not defined\n"
+ msgstr "%X%P: не могу да извезем „%s“: симбол није дефинисан\n"
+
+-#: pe-dll.c:998
++#: pe-dll.c:999
+ #, c-format
+ msgid "%X%P: cannot export %s: symbol wrong type (%d vs %d)\n"
+ msgstr "%X%P: не могу да извезем „%s“: погрешна врста симбола (%d vs %d)\n"
+
+-#: pe-dll.c:1005
++#: pe-dll.c:1006
+ #, c-format
+ msgid "%X%P: cannot export %s: symbol not found\n"
+ msgstr "%X%P: не могу да извезем „%s“: нисам нашао симбол\n"
+
+-#: pe-dll.c:1028 eaarch64cloudabi.c:360 eaarch64cloudabib.c:360
++#: pe-dll.c:1029 eaarch64cloudabi.c:360 eaarch64cloudabib.c:360
+ #: eaarch64elf.c:359 eaarch64elf32.c:359 eaarch64elf32b.c:359
+ #: eaarch64elfb.c:359 eaarch64fbsd.c:360 eaarch64fbsdb.c:360
+-#: eaarch64linux.c:360 eaarch64linux32.c:360 eaarch64linux32b.c:360
+-#: eaarch64linuxb.c:360 eaix5ppc.c:1470 eaix5ppc.c:1480 eaix5rs6.c:1470
+-#: eaix5rs6.c:1480 eaixppc.c:1470 eaixppc.c:1480 eaixrs6.c:1470 eaixrs6.c:1480
+-#: earmelf.c:568 earmelf_fbsd.c:568 earmelf_fuchsia.c:569 earmelf_linux.c:569
++#: eaarch64haiku.c:360 eaarch64linux.c:360 eaarch64linux32.c:360
++#: eaarch64linux32b.c:360 eaarch64linuxb.c:360 eaix5ppc.c:1470 eaix5ppc.c:1480
++#: eaix5rs6.c:1470 eaix5rs6.c:1480 eaixppc.c:1470 eaixppc.c:1480
++#: eaixrs6.c:1470 eaixrs6.c:1480 earmelf.c:568 earmelf_fbsd.c:568
++#: earmelf_fuchsia.c:569 earmelf_haiku.c:569 earmelf_linux.c:569
+ #: earmelf_linux_eabi.c:569 earmelf_linux_fdpiceabi.c:569 earmelf_nacl.c:569
+ #: earmelf_nbsd.c:568 earmelf_phoenix.c:569 earmelf_vxworks.c:568
+ #: earmelfb.c:568 earmelfb_fbsd.c:568 earmelfb_fuchsia.c:569
+@@ -2581,233 +2595,235 @@ msgstr "%X%P: не могу да извезем „%s“: нисам нашао
+ #: eelf32ltsmipn32_fbsd.c:172 eelf32metag.c:87 eelf32mipswindiss.c:172
+ #: eelf64bmip.c:186 eelf64btsmip.c:172 eelf64btsmip_fbsd.c:172
+ #: eelf64lppc.c:119 eelf64lppc_fbsd.c:119 eelf64ltsmip.c:172
+-#: eelf64ltsmip_fbsd.c:172 eelf64ppc.c:119 eelf64ppc_fbsd.c:119 ehppaelf.c:110
+-#: ehppalinux.c:110 ehppanbsd.c:110 ehppaobsd.c:110 em68hc11elf.c:170
+-#: em68hc11elfb.c:170 em68hc12elf.c:170 em68hc12elfb.c:170 enios2elf.c:92
+-#: enios2linux.c:92 eppcmacos.c:1470 eppcmacos.c:1480
++#: eelf64ltsmip_fbsd.c:172 eelf64ppc.c:119 eelf64ppc_fbsd.c:119
++#: eelf_mipsel_haiku.c:172 ehppaelf.c:110 ehppalinux.c:110 ehppanbsd.c:110
++#: ehppaobsd.c:110 em68hc11elf.c:170 em68hc11elfb.c:170 em68hc12elf.c:170
++#: em68hc12elfb.c:170 enios2elf.c:92 enios2linux.c:92 eppcmacos.c:1470
++#: eppcmacos.c:1480
+ msgid "%F%P: can not create BFD: %E\n"
+ msgstr "%F%P: не могу да направим „BFD“: %E\n"
+
+-#: pe-dll.c:1042
++#: pe-dll.c:1043
+ msgid "%X%P: can not create .edata section: %E\n"
+ msgstr "%X%P: не могу да направим „.edata“ одељак: %E\n"
+
+-#: pe-dll.c:1056
++#: pe-dll.c:1057
+ msgid "%X%P: can not create .reloc section: %E\n"
+ msgstr "%X%P: не могу да направим „.reloc“ одељак: %E\n"
+
+-#: pe-dll.c:1117
++#: pe-dll.c:1118
+ #, c-format
+ msgid "%X%P: error: ordinal used twice: %d (%s vs %s)\n"
+ msgstr "%X%P: грешка, редни број је коришћен два пута: %d (%s vs %s)\n"
+
+-#: pe-dll.c:1153
++#: pe-dll.c:1154
+ #, c-format
+ msgid "%X%P: error: export ordinal too large: %d\n"
+ msgstr "%X%P: грешка: извоз редног броја је превелик: %d\n"
+
+-#: pe-dll.c:1476
++#: pe-dll.c:1477
+ #, c-format
+ msgid "Info: resolving %s by linking to %s (auto-import)\n"
+ msgstr "Инфо: решавам „%s“ повезивањем на „%s“ (самостални увоз)\n"
+
+-#: pe-dll.c:1482
++#: pe-dll.c:1483
+ msgid "%P: warning: auto-importing has been activated without --enable-auto-import specified on the command line; this should work unless it involves constant data structures referencing symbols from auto-imported DLLs\n"
+ msgstr "%P: упозорење: самостални увоз је активиран без наведеног „--enable-auto-import“ на линији наредби; ово би требало да ради осим ако не умеша и константне структуре података које упућују на симболе из самостално увезених „DLLs“-а\n"
+
+-#: pe-dll.c:1553
++#: pe-dll.c:1554
+ msgid "%P: zero vma section reloc detected: `%s' #%d f=%d\n"
+ msgstr "%P: откривено је нула премештаја „vma“ одељка: „%s“ #%d f=%d\n"
+
+-#: pe-dll.c:1636
++#: pe-dll.c:1637
+ msgid "%P: base relocation for section `%s' above .reloc section\n"
+ msgstr "%P: премештај основе за одељак „%s“ изнад „.reloc“ одељка\n"
+
+-#: pe-dll.c:1685
++#: pe-dll.c:1686
+ #, c-format
+ msgid "%X%P: error: %d-bit reloc in dll\n"
+ msgstr "%X%P: грешка: %d-битно премештање у „dll“-у\n"
+
+-#: pe-dll.c:1810
++#: pe-dll.c:1811
+ #, c-format
+ msgid "%P: can't open output def file %s\n"
+ msgstr "%P: не могу да отворим излазну датотеку дефиниције „%s“\n"
+
+-#: pe-dll.c:1961
++#: pe-dll.c:1962
+ #, c-format
+ msgid "; no contents available\n"
+ msgstr "; садржај није доступан\n"
+
+-#: pe-dll.c:2820
++#: pe-dll.c:2822
+ msgid "%X%P: %C: variable '%pT' can't be auto-imported; please read the documentation for ld's --enable-auto-import for details\n"
+ msgstr "%X%P: %C: променљива „%pT“ се не може сама увести; прочитајте документацију за лд-ову опцију „--enable-auto-import“\n"
+
+-#: pe-dll.c:2847
++#: pe-dll.c:2850
+ #, c-format
+ msgid "%X%P: can't open .lib file: %s\n"
+ msgstr "%X%P: не могу да отворим датотеку „.lib“: %s\n"
+
+-#: pe-dll.c:2853
++#: pe-dll.c:2856
+ #, c-format
+ msgid "Creating library file: %s\n"
+ msgstr "Правим датотеку библиотеке: %s\n"
+
+-#: pe-dll.c:2883
++#: pe-dll.c:2886
+ msgid "%X%P: bfd_openr %s: %E\n"
+ msgstr "%X%P: „bfd_openr“ „%s“: %E\n"
+
+-#: pe-dll.c:2895
++#: pe-dll.c:2898
+ msgid "%X%P: %s(%s): can't find member in non-archive file"
+ msgstr "%X%P: %s(%s): не могу наћи члана у датотеци која није архива"
+
+-#: pe-dll.c:2909
++#: pe-dll.c:2912
+ msgid "%X%P: %s(%s): can't find member in archive"
+ msgstr "%X%P: %s(%s): не могу наћи члана у архиви"
+
+-#: pe-dll.c:3174
++#: pe-dll.c:3177
+ msgid "%X%P: add symbols %s: %E\n"
+ msgstr "%X%P: додајем симболе „%s“: %E\n"
+
+-#: pe-dll.c:3361
++#: pe-dll.c:3365
+ msgid "%X%P: open %s: %E\n"
+ msgstr "%X%P: отварам „%s“: %E\n"
+
+-#: pe-dll.c:3370
++#: pe-dll.c:3374
+ msgid "%X%P: %s: this doesn't appear to be a DLL\n"
+ msgstr "%X%P: %s: ово не изгледа као да је „DLL“\n"
+
+-#: pe-dll.c:3575
++#: pe-dll.c:3579
+ msgid "%X%P: error: can't use long section names on this arch\n"
+ msgstr "%X%P: грешка: не могу да користим дуге називе одељака на овој архитектури\n"
+
+-#: plugin.c:233 plugin.c:279
++#: plugin.c:236 plugin.c:282
+ msgid "<no plugin>"
+ msgstr "<нема прикључка>"
+
+-#: plugin.c:248 plugin.c:1100
++#: plugin.c:251 plugin.c:1111
+ msgid "%F%P: %s: error loading plugin: %s\n"
+ msgstr "%F%P: %s: грешка учитавања прикључка: %s\n"
+
+-#: plugin.c:255
++#: plugin.c:258
+ msgid "%P: %s: duplicated plugin\n"
+ msgstr "%P: %s: удвостручени прикључак\n"
+
+-#: plugin.c:341
++#: plugin.c:344
+ msgid "%F%P: could not create dummy IR bfd: %E\n"
+ msgstr "%F%P: не могу да направим лажни ИР бфд: %E\n"
+
+-#: plugin.c:422
++#: plugin.c:425
+ msgid "%F%P: %s: non-ELF symbol in ELF BFD!\n"
+ msgstr "%F%P: %s: не-„ELF“ симбол у „ELF BFD“!\n"
+
+-#: plugin.c:433
++#: plugin.c:436
+ msgid "%F%P: unknown ELF symbol visibility: %d!\n"
+ msgstr "%F%P: непозната видљивост „ELF“ симбола: %d!\n"
+
+-#: plugin.c:542
++#: plugin.c:545
+ msgid "%F%P: unsupported input file size: %s (%ld bytes)\n"
+ msgstr "%F%P: неподржана величина улазне датотеке: %s (%ld бајта)\n"
+
+-#: plugin.c:679
++#: plugin.c:690
+ #, c-format
+ msgid "unknown LTO kind value %x"
+ msgstr "непозната „LTO“ врста вредности „%x“"
+
+-#: plugin.c:705
++#: plugin.c:716
+ #, c-format
+ msgid "unknown LTO resolution value %x"
+ msgstr "непозната вредност „LTO“ резолуције „%x“"
+
+-#: plugin.c:725
++#: plugin.c:736
+ #, c-format
+ msgid "unknown LTO visibility value %x"
+ msgstr "непозната вредност „LTO“ видљивости „%x“"
+
+ #. We should not have a new, indirect or warning symbol here.
+-#: plugin.c:805
++#: plugin.c:816
+ msgid "%F%P: %s: plugin symbol table corrupt (sym type %d)\n"
+ msgstr "%F%P: %s: табела симбола прикључка је оштећена (врста симбола „%d“)\n"
+
+-#: plugin.c:867
++#: plugin.c:878
+ msgid "%P: %pB: symbol `%s' definition: %s, visibility: %s, resolution: %s\n"
+ msgstr "%P: %pB: дефиниција симбола „%s“: %s, видљивост: %s, резолуција: %s\n"
+
+-#: plugin.c:944
++#: plugin.c:955
+ msgid "%P: warning: "
+ msgstr "%P: упозорење: "
+
+-#: plugin.c:955
++#: plugin.c:966
+ msgid "%P: error: "
+ msgstr "%P: грешка: "
+
+-#: plugin.c:1107
++#: plugin.c:1118
+ msgid "%F%P: %s: plugin error: %d\n"
+ msgstr "%F%P: %s: грешка прикључка: %d\n"
+
+-#: plugin.c:1162
++#: plugin.c:1173
+ msgid "%F%P: plugin_strdup failed to allocate memory: %s\n"
+ msgstr "%F%P: „plugin_strdup“ није успео да додели меморију: %s\n"
+
+-#: plugin.c:1199
++#: plugin.c:1210
+ msgid "%F%P: plugin failed to allocate memory for input: %s\n"
+ msgstr "%F%P: прикључак није успео да додели меморију за улаз: %s\n"
+
+-#: plugin.c:1226
++#: plugin.c:1238
+ msgid "%F%P: %s: plugin reported error claiming file\n"
+ msgstr "%F%P: %s: прикључак је известио грешку захтевајући датотеку\n"
+
+-#: plugin.c:1337
++#: plugin.c:1349
+ msgid "%P: %s: error in plugin cleanup: %d (ignored)\n"
+ msgstr "%P: %s: грешка у чишћењу прикључка: %d (ignored)\n"
+
+ #: eaarch64cloudabi.c:223 eaarch64cloudabib.c:223 eaarch64elf.c:222
+ #: eaarch64elf32.c:222 eaarch64elf32b.c:222 eaarch64elfb.c:222
+-#: eaarch64fbsd.c:223 eaarch64fbsdb.c:223 eaarch64linux.c:223
+-#: eaarch64linux32.c:223 eaarch64linux32b.c:223 eaarch64linuxb.c:223
+-#: earmelf.c:292 earmelf_fbsd.c:292 earmelf_fuchsia.c:293 earmelf_linux.c:293
+-#: earmelf_linux_eabi.c:293 earmelf_linux_fdpiceabi.c:293 earmelf_nacl.c:293
+-#: earmelf_nbsd.c:292 earmelf_phoenix.c:293 earmelf_vxworks.c:292
+-#: earmelfb.c:292 earmelfb_fbsd.c:292 earmelfb_fuchsia.c:293
+-#: earmelfb_linux.c:293 earmelfb_linux_eabi.c:293
+-#: earmelfb_linux_fdpiceabi.c:293 earmelfb_nacl.c:293 earmelfb_nbsd.c:292
+-#: earmnto.c:292 eavr1.c:178 eavr2.c:178 eavr25.c:178 eavr3.c:178 eavr31.c:178
+-#: eavr35.c:178 eavr4.c:178 eavr5.c:178 eavr51.c:178 eavr6.c:178
+-#: eavrtiny.c:178 eavrxmega1.c:178 eavrxmega2.c:178 eavrxmega3.c:178
+-#: eavrxmega4.c:178 eavrxmega5.c:178 eavrxmega6.c:178 eavrxmega7.c:178
+-#: ecskyelf.c:210 ecskyelf_linux.c:210 eelf32b4300.c:205 eelf32bmip.c:205
+-#: eelf32bmipn32.c:219 eelf32bsmip.c:219 eelf32btsmip.c:205
+-#: eelf32btsmip_fbsd.c:205 eelf32btsmipn32.c:205 eelf32btsmipn32_fbsd.c:205
+-#: eelf32ebmip.c:205 eelf32ebmipvxworks.c:205 eelf32elmip.c:205
+-#: eelf32elmipvxworks.c:205 eelf32l4300.c:205 eelf32lmip.c:205
+-#: eelf32lr5900.c:205 eelf32lr5900n32.c:205 eelf32lsmip.c:205
++#: eaarch64fbsd.c:223 eaarch64fbsdb.c:223 eaarch64haiku.c:223
++#: eaarch64linux.c:223 eaarch64linux32.c:223 eaarch64linux32b.c:223
++#: eaarch64linuxb.c:223 earmelf.c:292 earmelf_fbsd.c:292 earmelf_fuchsia.c:293
++#: earmelf_haiku.c:293 earmelf_linux.c:293 earmelf_linux_eabi.c:293
++#: earmelf_linux_fdpiceabi.c:293 earmelf_nacl.c:293 earmelf_nbsd.c:292
++#: earmelf_phoenix.c:293 earmelf_vxworks.c:292 earmelfb.c:292
++#: earmelfb_fbsd.c:292 earmelfb_fuchsia.c:293 earmelfb_linux.c:293
++#: earmelfb_linux_eabi.c:293 earmelfb_linux_fdpiceabi.c:293
++#: earmelfb_nacl.c:293 earmelfb_nbsd.c:292 earmnto.c:292 eavr1.c:178
++#: eavr2.c:178 eavr25.c:178 eavr3.c:178 eavr31.c:178 eavr35.c:178 eavr4.c:178
++#: eavr5.c:178 eavr51.c:178 eavr6.c:178 eavrtiny.c:178 eavrxmega1.c:178
++#: eavrxmega2.c:178 eavrxmega3.c:178 eavrxmega4.c:178 eavrxmega5.c:178
++#: eavrxmega6.c:178 eavrxmega7.c:178 ecskyelf.c:210 ecskyelf_linux.c:210
++#: eelf32b4300.c:205 eelf32bmip.c:205 eelf32bmipn32.c:219 eelf32bsmip.c:219
++#: eelf32btsmip.c:205 eelf32btsmip_fbsd.c:205 eelf32btsmipn32.c:205
++#: eelf32btsmipn32_fbsd.c:205 eelf32ebmip.c:205 eelf32ebmipvxworks.c:205
++#: eelf32elmip.c:205 eelf32elmipvxworks.c:205 eelf32l4300.c:205
++#: eelf32lmip.c:205 eelf32lr5900.c:205 eelf32lr5900n32.c:205 eelf32lsmip.c:205
+ #: eelf32ltsmip.c:205 eelf32ltsmip_fbsd.c:205 eelf32ltsmipn32.c:205
+ #: eelf32ltsmipn32_fbsd.c:205 eelf32metag.c:206 eelf32mipswindiss.c:205
+ #: eelf64bmip.c:219 eelf64btsmip.c:205 eelf64btsmip_fbsd.c:205
+ #: eelf64lppc.c:482 eelf64lppc_fbsd.c:482 eelf64ltsmip.c:205
+-#: eelf64ltsmip_fbsd.c:205 eelf64ppc.c:482 eelf64ppc_fbsd.c:482 ehppaelf.c:230
+-#: ehppalinux.c:230 ehppanbsd.c:230 ehppaobsd.c:230 em68hc11elf.c:295
+-#: em68hc11elfb.c:295 em68hc12elf.c:295 em68hc12elfb.c:295 enios2elf.c:223
+-#: enios2linux.c:223
++#: eelf64ltsmip_fbsd.c:205 eelf64ppc.c:482 eelf64ppc_fbsd.c:482
++#: eelf_mipsel_haiku.c:205 ehppaelf.c:230 ehppalinux.c:230 ehppanbsd.c:230
++#: ehppaobsd.c:230 em68hc11elf.c:295 em68hc11elfb.c:295 em68hc12elf.c:295
++#: em68hc12elfb.c:295 enios2elf.c:223 enios2linux.c:223
+ msgid "%X%P: can not make stub section: %E\n"
+ msgstr "%X%P: не могу да направим одељак окрајка: %E\n"
+
+ #: eaarch64cloudabi.c:266 eaarch64cloudabib.c:266 eaarch64elf.c:265
+ #: eaarch64elf32.c:265 eaarch64elf32b.c:265 eaarch64elfb.c:265
+-#: eaarch64fbsd.c:266 eaarch64fbsdb.c:266 eaarch64linux.c:266
+-#: eaarch64linux32.c:266 eaarch64linux32b.c:266 eaarch64linuxb.c:266
+-#: earcelf.c:96 earclinux.c:97 earclinux_nps.c:97 earcv2elf.c:96
+-#: earcv2elfx.c:96 earmelf.c:404 earmelf_fbsd.c:404 earmelf_fuchsia.c:405
+-#: earmelf_linux.c:405 earmelf_linux_eabi.c:405 earmelf_linux_fdpiceabi.c:405
+-#: earmelf_nacl.c:405 earmelf_nbsd.c:404 earmelf_phoenix.c:405
+-#: earmelf_vxworks.c:404 earmelfb.c:404 earmelfb_fbsd.c:404
+-#: earmelfb_fuchsia.c:405 earmelfb_linux.c:405 earmelfb_linux_eabi.c:405
++#: eaarch64fbsd.c:266 eaarch64fbsdb.c:266 eaarch64haiku.c:266
++#: eaarch64linux.c:266 eaarch64linux32.c:266 eaarch64linux32b.c:266
++#: eaarch64linuxb.c:266 earcelf.c:96 earclinux.c:97 earclinux_nps.c:97
++#: earcv2elf.c:96 earcv2elfx.c:96 earmelf.c:404 earmelf_fbsd.c:404
++#: earmelf_fuchsia.c:405 earmelf_haiku.c:405 earmelf_linux.c:405
++#: earmelf_linux_eabi.c:405 earmelf_linux_fdpiceabi.c:405 earmelf_nacl.c:405
++#: earmelf_nbsd.c:404 earmelf_phoenix.c:405 earmelf_vxworks.c:404
++#: earmelfb.c:404 earmelfb_fbsd.c:404 earmelfb_fuchsia.c:405
++#: earmelfb_linux.c:405 earmelfb_linux_eabi.c:405
+ #: earmelfb_linux_fdpiceabi.c:405 earmelfb_nacl.c:405 earmelfb_nbsd.c:404
+ #: earmnto.c:404 eavr1.c:299 eavr2.c:299 eavr25.c:299 eavr3.c:299 eavr31.c:299
+ #: eavr35.c:299 eavr4.c:299 eavr5.c:299 eavr51.c:299 eavr6.c:299
+ #: eavrtiny.c:299 eavrxmega1.c:299 eavrxmega2.c:299 eavrxmega3.c:299
+ #: eavrxmega4.c:299 eavrxmega5.c:299 eavrxmega6.c:299 eavrxmega7.c:299
+ #: ecriself.c:96 ecrislinux.c:97 ed10velf.c:96 eelf32_sparc.c:97
+-#: eelf32_sparc_sol2.c:229 eelf32_sparc_vxworks.c:126 eelf32_spu.c:630
++#: eelf32_sparc_sol2.c:229 eelf32_sparc_vxworks.c:126 eelf32_spu.c:766
+ #: eelf32_tic6x_be.c:181 eelf32_tic6x_elf_be.c:181 eelf32_tic6x_elf_le.c:181
+ #: eelf32_tic6x_le.c:181 eelf32_tic6x_linux_be.c:181
+ #: eelf32_tic6x_linux_le.c:181 eelf32_x86_64.c:121 eelf32am33lin.c:96
+@@ -2818,17 +2834,18 @@ msgstr "%X%P: не могу да направим одељак окрајка: %
+ #: eelf32cr16.c:246 eelf32crx.c:133 eelf32ebmip.c:293 eelf32ebmipvxworks.c:322
+ #: eelf32elmip.c:293 eelf32elmipvxworks.c:322 eelf32epiphany.c:96
+ #: eelf32epiphany_4x4.c:98 eelf32frvfd.c:96 eelf32ip2k.c:96 eelf32l4300.c:293
+-#: eelf32lm32.c:96 eelf32lm32fd.c:96 eelf32lmip.c:293 eelf32lppc.c:305
+-#: eelf32lppclinux.c:305 eelf32lppcnto.c:305 eelf32lppcsim.c:305
+-#: eelf32lr5900.c:293 eelf32lr5900n32.c:292 eelf32lriscv.c:89
+-#: eelf32lriscv_ilp32.c:89 eelf32lriscv_ilp32f.c:89 eelf32lsmip.c:293
+-#: eelf32ltsmip.c:293 eelf32ltsmip_fbsd.c:293 eelf32ltsmipn32.c:293
+-#: eelf32ltsmipn32_fbsd.c:293 eelf32m32c.c:107 eelf32mb_linux.c:97
+-#: eelf32mbel_linux.c:97 eelf32mcore.c:96 eelf32mep.c:96 eelf32metag.c:256
+-#: eelf32microblaze.c:96 eelf32microblazeel.c:96 eelf32mipswindiss.c:292
+-#: eelf32moxie.c:96 eelf32or1k.c:97 eelf32or1k_linux.c:97 eelf32ppc.c:305
+-#: eelf32ppc_fbsd.c:305 eelf32ppclinux.c:305 eelf32ppcnto.c:305
+-#: eelf32ppcsim.c:305 eelf32ppcvxworks.c:279 eelf32ppcwindiss.c:305
++#: eelf32lm32.c:96 eelf32lm32fd.c:96 eelf32lmip.c:293 eelf32loongarch.c:88
++#: eelf32lppc.c:317 eelf32lppclinux.c:317 eelf32lppcnto.c:317
++#: eelf32lppcsim.c:317 eelf32lr5900.c:293 eelf32lr5900n32.c:292
++#: eelf32lriscv.c:89 eelf32lriscv_ilp32.c:89 eelf32lriscv_ilp32f.c:89
++#: eelf32lsmip.c:293 eelf32ltsmip.c:293 eelf32ltsmip_fbsd.c:293
++#: eelf32ltsmipn32.c:293 eelf32ltsmipn32_fbsd.c:293 eelf32m32c.c:107
++#: eelf32mb_linux.c:97 eelf32mbel_linux.c:97 eelf32mcore.c:96 eelf32mep.c:96
++#: eelf32metag.c:256 eelf32microblaze.c:96 eelf32microblazeel.c:96
++#: eelf32mipswindiss.c:292 eelf32moxie.c:96 eelf32or1k.c:97
++#: eelf32or1k_linux.c:97 eelf32ppc.c:317 eelf32ppc_fbsd.c:317
++#: eelf32ppchaiku.c:317 eelf32ppclinux.c:317 eelf32ppcnto.c:317
++#: eelf32ppcsim.c:317 eelf32ppcvxworks.c:291 eelf32ppcwindiss.c:317
+ #: eelf32rl78.c:96 eelf32rx.c:112 eelf32rx_linux.c:109 eelf32tilegx.c:97
+ #: eelf32tilegx_be.c:97 eelf32tilepro.c:97 eelf32vax.c:96 eelf32visium.c:96
+ #: eelf32xc16x.c:96 eelf32xc16xl.c:96 eelf32xc16xs.c:96 eelf32xstormy16.c:107
+@@ -2838,15 +2855,16 @@ msgstr "%X%P: не могу да направим одељак окрајка: %
+ #: eelf64alpha.c:180 eelf64alpha_fbsd.c:180 eelf64alpha_nbsd.c:180
+ #: eelf64bmip.c:307 eelf64bpf.c:96 eelf64briscv.c:89 eelf64briscv_lp64.c:89
+ #: eelf64briscv_lp64f.c:89 eelf64btsmip.c:293 eelf64btsmip_fbsd.c:293
+-#: eelf64hppa.c:96 eelf64lppc.c:592 eelf64lppc_fbsd.c:592 eelf64lriscv.c:89
+-#: eelf64lriscv_lp64.c:89 eelf64lriscv_lp64f.c:89 eelf64ltsmip.c:293
+-#: eelf64ltsmip_fbsd.c:293 eelf64mmix.c:207 eelf64ppc.c:592
++#: eelf64hppa.c:96 eelf64loongarch.c:88 eelf64lppc.c:592 eelf64lppc_fbsd.c:592
++#: eelf64lriscv.c:89 eelf64lriscv_lp64.c:89 eelf64lriscv_lp64f.c:89
++#: eelf64ltsmip.c:293 eelf64ltsmip_fbsd.c:293 eelf64mmix.c:207 eelf64ppc.c:592
+ #: eelf64ppc_fbsd.c:592 eelf64rdos.c:112 eelf64tilegx.c:97
+ #: eelf64tilegx_be.c:97 eelf_i386.c:121 eelf_i386_be.c:120
+-#: eelf_i386_fbsd.c:121 eelf_i386_ldso.c:121 eelf_i386_sol2.c:253
+-#: eelf_i386_vxworks.c:150 eelf_iamcu.c:121 eelf_k1om.c:121
+-#: eelf_k1om_fbsd.c:121 eelf_l1om.c:121 eelf_l1om_fbsd.c:121 eelf_s390.c:97
+-#: eelf_x86_64.c:121 eelf_x86_64_cloudabi.c:121 eelf_x86_64_fbsd.c:121
++#: eelf_i386_fbsd.c:121 eelf_i386_haiku.c:121 eelf_i386_ldso.c:121
++#: eelf_i386_sol2.c:253 eelf_i386_vxworks.c:150 eelf_iamcu.c:121
++#: eelf_k1om.c:121 eelf_k1om_fbsd.c:121 eelf_l1om.c:121 eelf_l1om_fbsd.c:121
++#: eelf_mipsel_haiku.c:293 eelf_s390.c:97 eelf_x86_64.c:121
++#: eelf_x86_64_cloudabi.c:121 eelf_x86_64_fbsd.c:121 eelf_x86_64_haiku.c:121
+ #: eelf_x86_64_sol2.c:253 eh8300elf.c:96 eh8300elf_linux.c:96 eh8300helf.c:96
+ #: eh8300helf_linux.c:96 eh8300hnelf.c:96 eh8300self.c:96
+ #: eh8300self_linux.c:96 eh8300snelf.c:96 eh8300sxelf.c:96
+@@ -2867,67 +2885,69 @@ msgstr "%X%P: „.eh_frame/.stab“ уређује: %E\n"
+
+ #: eaarch64cloudabi.c:282 eaarch64cloudabib.c:282 eaarch64elf.c:281
+ #: eaarch64elf32.c:281 eaarch64elf32b.c:281 eaarch64elfb.c:281
+-#: eaarch64fbsd.c:282 eaarch64fbsdb.c:282 eaarch64linux.c:282
+-#: eaarch64linux32.c:282 eaarch64linux32b.c:282 eaarch64linuxb.c:282
+-#: earmelf.c:419 earmelf_fbsd.c:419 earmelf_fuchsia.c:420 earmelf_linux.c:420
+-#: earmelf_linux_eabi.c:420 earmelf_linux_fdpiceabi.c:420 earmelf_nacl.c:420
+-#: earmelf_nbsd.c:419 earmelf_phoenix.c:420 earmelf_vxworks.c:419
+-#: earmelfb.c:419 earmelfb_fbsd.c:419 earmelfb_fuchsia.c:420
+-#: earmelfb_linux.c:420 earmelfb_linux_eabi.c:420
+-#: earmelfb_linux_fdpiceabi.c:420 earmelfb_nacl.c:420 earmelfb_nbsd.c:419
+-#: earmnto.c:419 ecskyelf.c:260 ecskyelf_linux.c:260
++#: eaarch64fbsd.c:282 eaarch64fbsdb.c:282 eaarch64haiku.c:282
++#: eaarch64linux.c:282 eaarch64linux32.c:282 eaarch64linux32b.c:282
++#: eaarch64linuxb.c:282 earmelf.c:419 earmelf_fbsd.c:419 earmelf_fuchsia.c:420
++#: earmelf_haiku.c:420 earmelf_linux.c:420 earmelf_linux_eabi.c:420
++#: earmelf_linux_fdpiceabi.c:420 earmelf_nacl.c:420 earmelf_nbsd.c:419
++#: earmelf_phoenix.c:420 earmelf_vxworks.c:419 earmelfb.c:419
++#: earmelfb_fbsd.c:419 earmelfb_fuchsia.c:420 earmelfb_linux.c:420
++#: earmelfb_linux_eabi.c:420 earmelfb_linux_fdpiceabi.c:420
++#: earmelfb_nacl.c:420 earmelfb_nbsd.c:419 earmnto.c:419 ecskyelf.c:260
++#: ecskyelf_linux.c:260
+ msgid "%X%P: could not compute sections lists for stub generation: %E\n"
+ msgstr "%X%P: не могу да израчунам спискове одељака за стварање окрајка: %E\n"
+
+ #: eaarch64cloudabi.c:297 eaarch64cloudabib.c:297 eaarch64elf.c:296
+ #: eaarch64elf32.c:296 eaarch64elf32b.c:296 eaarch64elfb.c:296
+-#: eaarch64fbsd.c:297 eaarch64fbsdb.c:297 eaarch64linux.c:297
+-#: eaarch64linux32.c:297 eaarch64linux32b.c:297 eaarch64linuxb.c:297
+-#: earmelf.c:434 earmelf_fbsd.c:434 earmelf_fuchsia.c:435 earmelf_linux.c:435
+-#: earmelf_linux_eabi.c:435 earmelf_linux_fdpiceabi.c:435 earmelf_nacl.c:435
+-#: earmelf_nbsd.c:434 earmelf_phoenix.c:435 earmelf_vxworks.c:434
+-#: earmelfb.c:434 earmelfb_fbsd.c:434 earmelfb_fuchsia.c:435
+-#: earmelfb_linux.c:435 earmelfb_linux_eabi.c:435
+-#: earmelfb_linux_fdpiceabi.c:435 earmelfb_nacl.c:435 earmelfb_nbsd.c:434
+-#: earmnto.c:434 eavr1.c:129 eavr1.c:192 eavr2.c:129 eavr2.c:192 eavr25.c:129
+-#: eavr25.c:192 eavr3.c:129 eavr3.c:192 eavr31.c:129 eavr31.c:192 eavr35.c:129
+-#: eavr35.c:192 eavr4.c:129 eavr4.c:192 eavr5.c:129 eavr5.c:192 eavr51.c:129
+-#: eavr51.c:192 eavr6.c:129 eavr6.c:192 eavrtiny.c:129 eavrtiny.c:192
+-#: eavrxmega1.c:129 eavrxmega1.c:192 eavrxmega2.c:129 eavrxmega2.c:192
+-#: eavrxmega3.c:129 eavrxmega3.c:192 eavrxmega4.c:129 eavrxmega4.c:192
+-#: eavrxmega5.c:129 eavrxmega5.c:192 eavrxmega6.c:129 eavrxmega6.c:192
+-#: eavrxmega7.c:129 eavrxmega7.c:192 eelf32metag.c:271 eelf32metag.c:285
+-#: eelf64lppc.c:535 eelf64lppc.c:554 eelf64lppc.c:581 eelf64lppc_fbsd.c:535
+-#: eelf64lppc_fbsd.c:554 eelf64lppc_fbsd.c:581 eelf64ppc.c:535 eelf64ppc.c:554
+-#: eelf64ppc.c:581 eelf64ppc_fbsd.c:535 eelf64ppc_fbsd.c:554
+-#: eelf64ppc_fbsd.c:581 ehppaelf.c:295 ehppaelf.c:310 ehppalinux.c:295
+-#: ehppalinux.c:310 ehppanbsd.c:295 ehppanbsd.c:310 ehppaobsd.c:295
+-#: ehppaobsd.c:310 em68hc11elf.c:90 em68hc11elf.c:100 em68hc11elf.c:317
+-#: em68hc11elfb.c:90 em68hc11elfb.c:100 em68hc11elfb.c:317 em68hc12elf.c:90
+-#: em68hc12elf.c:100 em68hc12elf.c:317 em68hc12elfb.c:90 em68hc12elfb.c:100
+-#: em68hc12elfb.c:317 enios2elf.c:290 enios2elf.c:303 enios2linux.c:290
+-#: enios2linux.c:303
++#: eaarch64fbsd.c:297 eaarch64fbsdb.c:297 eaarch64haiku.c:297
++#: eaarch64linux.c:297 eaarch64linux32.c:297 eaarch64linux32b.c:297
++#: eaarch64linuxb.c:297 earmelf.c:434 earmelf_fbsd.c:434 earmelf_fuchsia.c:435
++#: earmelf_haiku.c:435 earmelf_linux.c:435 earmelf_linux_eabi.c:435
++#: earmelf_linux_fdpiceabi.c:435 earmelf_nacl.c:435 earmelf_nbsd.c:434
++#: earmelf_phoenix.c:435 earmelf_vxworks.c:434 earmelfb.c:434
++#: earmelfb_fbsd.c:434 earmelfb_fuchsia.c:435 earmelfb_linux.c:435
++#: earmelfb_linux_eabi.c:435 earmelfb_linux_fdpiceabi.c:435
++#: earmelfb_nacl.c:435 earmelfb_nbsd.c:434 earmnto.c:434 eavr1.c:129
++#: eavr1.c:192 eavr2.c:129 eavr2.c:192 eavr25.c:129 eavr25.c:192 eavr3.c:129
++#: eavr3.c:192 eavr31.c:129 eavr31.c:192 eavr35.c:129 eavr35.c:192 eavr4.c:129
++#: eavr4.c:192 eavr5.c:129 eavr5.c:192 eavr51.c:129 eavr51.c:192 eavr6.c:129
++#: eavr6.c:192 eavrtiny.c:129 eavrtiny.c:192 eavrxmega1.c:129 eavrxmega1.c:192
++#: eavrxmega2.c:129 eavrxmega2.c:192 eavrxmega3.c:129 eavrxmega3.c:192
++#: eavrxmega4.c:129 eavrxmega4.c:192 eavrxmega5.c:129 eavrxmega5.c:192
++#: eavrxmega6.c:129 eavrxmega6.c:192 eavrxmega7.c:129 eavrxmega7.c:192
++#: eelf32metag.c:271 eelf32metag.c:285 eelf64lppc.c:535 eelf64lppc.c:554
++#: eelf64lppc.c:581 eelf64lppc_fbsd.c:535 eelf64lppc_fbsd.c:554
++#: eelf64lppc_fbsd.c:581 eelf64ppc.c:535 eelf64ppc.c:554 eelf64ppc.c:581
++#: eelf64ppc_fbsd.c:535 eelf64ppc_fbsd.c:554 eelf64ppc_fbsd.c:581
++#: ehppaelf.c:295 ehppaelf.c:310 ehppalinux.c:295 ehppalinux.c:310
++#: ehppanbsd.c:295 ehppanbsd.c:310 ehppaobsd.c:295 ehppaobsd.c:310
++#: em68hc11elf.c:90 em68hc11elf.c:100 em68hc11elf.c:317 em68hc11elfb.c:90
++#: em68hc11elfb.c:100 em68hc11elfb.c:317 em68hc12elf.c:90 em68hc12elf.c:100
++#: em68hc12elf.c:317 em68hc12elfb.c:90 em68hc12elfb.c:100 em68hc12elfb.c:317
++#: enios2elf.c:290 enios2elf.c:303 enios2linux.c:290 enios2linux.c:303
+ msgid "%X%P: can not size stub section: %E\n"
+ msgstr "%X%P: не могу да одрадим величину одељка окрајка: %E\n"
+
+ #: eaarch64cloudabi.c:316 eaarch64cloudabib.c:316 eaarch64elf.c:315
+ #: eaarch64elf32.c:315 eaarch64elf32b.c:315 eaarch64elfb.c:315
+-#: eaarch64fbsd.c:316 eaarch64fbsdb.c:316 eaarch64linux.c:316
+-#: eaarch64linux32.c:316 eaarch64linux32b.c:316 eaarch64linuxb.c:316
+-#: earmelf.c:468 earmelf_fbsd.c:468 earmelf_fuchsia.c:469 earmelf_linux.c:469
+-#: earmelf_linux_eabi.c:469 earmelf_linux_fdpiceabi.c:469 earmelf_nacl.c:469
+-#: earmelf_nbsd.c:468 earmelf_phoenix.c:469 earmelf_vxworks.c:468
+-#: earmelfb.c:468 earmelfb_fbsd.c:468 earmelfb_fuchsia.c:469
+-#: earmelfb_linux.c:469 earmelfb_linux_eabi.c:469
+-#: earmelfb_linux_fdpiceabi.c:469 earmelfb_nacl.c:469 earmelfb_nbsd.c:468
+-#: earmnto.c:468 eavr1.c:201 eavr2.c:201 eavr25.c:201 eavr3.c:201 eavr31.c:201
+-#: eavr35.c:201 eavr4.c:201 eavr5.c:201 eavr51.c:201 eavr6.c:201
+-#: eavrtiny.c:201 eavrxmega1.c:201 eavrxmega2.c:201 eavrxmega3.c:201
+-#: eavrxmega4.c:201 eavrxmega5.c:201 eavrxmega6.c:201 eavrxmega7.c:201
+-#: eelf32metag.c:300 eelf64lppc.c:631 eelf64lppc_fbsd.c:631 eelf64ppc.c:631
+-#: eelf64ppc_fbsd.c:631 ehppaelf.c:332 ehppalinux.c:332 ehppanbsd.c:332
+-#: ehppaobsd.c:332 em68hc11elf.c:321 em68hc11elfb.c:321 em68hc12elf.c:321
+-#: em68hc12elfb.c:321 enios2elf.c:318 enios2linux.c:318
++#: eaarch64fbsd.c:316 eaarch64fbsdb.c:316 eaarch64haiku.c:316
++#: eaarch64linux.c:316 eaarch64linux32.c:316 eaarch64linux32b.c:316
++#: eaarch64linuxb.c:316 earmelf.c:468 earmelf_fbsd.c:468 earmelf_fuchsia.c:469
++#: earmelf_haiku.c:469 earmelf_linux.c:469 earmelf_linux_eabi.c:469
++#: earmelf_linux_fdpiceabi.c:469 earmelf_nacl.c:469 earmelf_nbsd.c:468
++#: earmelf_phoenix.c:469 earmelf_vxworks.c:468 earmelfb.c:468
++#: earmelfb_fbsd.c:468 earmelfb_fuchsia.c:469 earmelfb_linux.c:469
++#: earmelfb_linux_eabi.c:469 earmelfb_linux_fdpiceabi.c:469
++#: earmelfb_nacl.c:469 earmelfb_nbsd.c:468 earmnto.c:468 eavr1.c:201
++#: eavr2.c:201 eavr25.c:201 eavr3.c:201 eavr31.c:201 eavr35.c:201 eavr4.c:201
++#: eavr5.c:201 eavr51.c:201 eavr6.c:201 eavrtiny.c:201 eavrxmega1.c:201
++#: eavrxmega2.c:201 eavrxmega3.c:201 eavrxmega4.c:201 eavrxmega5.c:201
++#: eavrxmega6.c:201 eavrxmega7.c:201 eelf32metag.c:300 eelf64lppc.c:631
++#: eelf64lppc_fbsd.c:631 eelf64ppc.c:631 eelf64ppc_fbsd.c:631 ehppaelf.c:332
++#: ehppalinux.c:332 ehppanbsd.c:332 ehppaobsd.c:332 em68hc11elf.c:321
++#: em68hc11elfb.c:321 em68hc12elf.c:321 em68hc12elfb.c:321 enios2elf.c:318
++#: enios2linux.c:318
+ msgid "%X%P: can not build stubs: %E\n"
+ msgstr "%X%P: не могу да изградим окрајке: %E\n"
+
+@@ -2958,39 +2978,42 @@ msgstr "%X%P: не могу да изградим окрајке: %E\n"
+ #. same time. Use a link followed by objcopy to change output formats.
+ #: eaarch64cloudabi.c:334 eaarch64cloudabib.c:334 eaarch64elf.c:333
+ #: eaarch64elf32.c:333 eaarch64elf32b.c:333 eaarch64elfb.c:333
+-#: eaarch64fbsd.c:334 eaarch64fbsdb.c:334 eaarch64linux.c:334
+-#: eaarch64linux32.c:334 eaarch64linux32b.c:334 eaarch64linuxb.c:334
+-#: earm_wince_pe.c:1426 earmelf.c:540 earmelf_fbsd.c:540 earmelf_fuchsia.c:541
+-#: earmelf_linux.c:541 earmelf_linux_eabi.c:541 earmelf_linux_fdpiceabi.c:541
+-#: earmelf_nacl.c:541 earmelf_nbsd.c:540 earmelf_phoenix.c:541
+-#: earmelf_vxworks.c:540 earmelfb.c:540 earmelfb_fbsd.c:540
+-#: earmelfb_fuchsia.c:541 earmelfb_linux.c:541 earmelfb_linux_eabi.c:541
++#: eaarch64fbsd.c:334 eaarch64fbsdb.c:334 eaarch64haiku.c:334
++#: eaarch64linux.c:334 eaarch64linux32.c:334 eaarch64linux32b.c:334
++#: eaarch64linuxb.c:334 earm_wince_pe.c:1426 earmelf.c:540 earmelf_fbsd.c:540
++#: earmelf_fuchsia.c:541 earmelf_haiku.c:541 earmelf_linux.c:541
++#: earmelf_linux_eabi.c:541 earmelf_linux_fdpiceabi.c:541 earmelf_nacl.c:541
++#: earmelf_nbsd.c:540 earmelf_phoenix.c:541 earmelf_vxworks.c:540
++#: earmelfb.c:540 earmelfb_fbsd.c:540 earmelfb_fuchsia.c:541
++#: earmelfb_linux.c:541 earmelfb_linux_eabi.c:541
+ #: earmelfb_linux_fdpiceabi.c:541 earmelfb_nacl.c:541 earmelfb_nbsd.c:540
+ #: earmnto.c:540 earmpe.c:1426 eavr1.c:142 eavr2.c:142 eavr25.c:142
+ #: eavr3.c:142 eavr31.c:142 eavr35.c:142 eavr4.c:142 eavr5.c:142 eavr51.c:142
+ #: eavr6.c:142 eavrtiny.c:142 eavrxmega1.c:142 eavrxmega2.c:142
+ #: eavrxmega3.c:142 eavrxmega4.c:142 eavrxmega5.c:142 eavrxmega6.c:142
+-#: eavrxmega7.c:142 eelf32briscv.c:128 eelf32briscv_ilp32.c:128
+-#: eelf32briscv_ilp32f.c:128 eelf32lriscv.c:128 eelf32lriscv_ilp32.c:128
+-#: eelf32lriscv_ilp32f.c:128 eelf64briscv.c:128 eelf64briscv_lp64.c:128
+-#: eelf64briscv_lp64f.c:128 eelf64lriscv.c:128 eelf64lriscv_lp64.c:128
+-#: eelf64lriscv_lp64f.c:128 ei386pe.c:1426 ei386pe_posix.c:1426
+-#: emcorepe.c:1426 ends32belf.c:74 ends32belf16m.c:74 ends32belf_linux.c:74
+-#: ends32elf.c:74 ends32elf16m.c:74 ends32elf_linux.c:74 escore3_elf.c:75
+-#: escore7_elf.c:75 eshpe.c:1426 ev850.c:91 ev850_rh850.c:91
++#: eavrxmega7.c:142 eelf32briscv.c:124 eelf32briscv_ilp32.c:124
++#: eelf32briscv_ilp32f.c:124 eelf32loongarch.c:106 eelf32lriscv.c:124
++#: eelf32lriscv_ilp32.c:124 eelf32lriscv_ilp32f.c:124 eelf64briscv.c:124
++#: eelf64briscv_lp64.c:124 eelf64briscv_lp64f.c:124 eelf64loongarch.c:106
++#: eelf64lriscv.c:124 eelf64lriscv_lp64.c:124 eelf64lriscv_lp64f.c:124
++#: ei386pe.c:1426 ei386pe_posix.c:1426 emcorepe.c:1426 ends32belf.c:74
++#: ends32belf16m.c:74 ends32belf_linux.c:74 ends32elf.c:74 ends32elf16m.c:74
++#: ends32elf_linux.c:74 escore3_elf.c:75 escore7_elf.c:75 eshpe.c:1426
++#: ev850.c:91 ev850_rh850.c:91
+ msgid "%F%P: error: cannot change output format whilst linking %s binaries\n"
+ msgstr "%F%P: грешка: не могу да изменим излазни запис док повезујем „%s“ извршне\n"
+
+ #: eaarch64cloudabi.c:570 eaarch64cloudabib.c:570 eaarch64elf.c:569
+ #: eaarch64elf32.c:569 eaarch64elf32b.c:569 eaarch64elfb.c:569
+-#: eaarch64fbsd.c:570 eaarch64fbsdb.c:570 eaarch64linux.c:570
+-#: eaarch64linux32.c:570 eaarch64linux32b.c:570 eaarch64linuxb.c:570
+-#: earcelf.c:202 earclinux.c:258 earclinux_nps.c:258 earcv2elf.c:186
+-#: earcv2elfx.c:186 earmelf.c:812 earmelf_fbsd.c:812 earmelf_fuchsia.c:813
+-#: earmelf_linux.c:813 earmelf_linux_eabi.c:813 earmelf_linux_fdpiceabi.c:813
+-#: earmelf_nacl.c:813 earmelf_nbsd.c:812 earmelf_phoenix.c:813
+-#: earmelf_vxworks.c:848 earmelfb.c:812 earmelfb_fbsd.c:812
+-#: earmelfb_fuchsia.c:813 earmelfb_linux.c:813 earmelfb_linux_eabi.c:813
++#: eaarch64fbsd.c:570 eaarch64fbsdb.c:570 eaarch64haiku.c:570
++#: eaarch64linux.c:570 eaarch64linux32.c:570 eaarch64linux32b.c:570
++#: eaarch64linuxb.c:570 earcelf.c:202 earclinux.c:258 earclinux_nps.c:258
++#: earcv2elf.c:186 earcv2elfx.c:186 earmelf.c:812 earmelf_fbsd.c:812
++#: earmelf_fuchsia.c:813 earmelf_haiku.c:813 earmelf_linux.c:813
++#: earmelf_linux_eabi.c:813 earmelf_linux_fdpiceabi.c:813 earmelf_nacl.c:813
++#: earmelf_nbsd.c:812 earmelf_phoenix.c:813 earmelf_vxworks.c:848
++#: earmelfb.c:812 earmelfb_fbsd.c:812 earmelfb_fuchsia.c:813
++#: earmelfb_linux.c:813 earmelfb_linux_eabi.c:813
+ #: earmelfb_linux_fdpiceabi.c:813 earmelfb_nacl.c:813 earmelfb_nbsd.c:812
+ #: earmnto.c:787 eavr1.c:409 eavr2.c:409 eavr25.c:409 eavr3.c:409 eavr31.c:409
+ #: eavr35.c:409 eavr4.c:409 eavr5.c:409 eavr51.c:409 eavr6.c:409
+@@ -2998,46 +3021,48 @@ msgstr "%F%P: грешка: не могу да изменим излазни з
+ #: eavrxmega4.c:409 eavrxmega5.c:409 eavrxmega6.c:409 eavrxmega7.c:409
+ #: ecriself.c:201 ecrislinux.c:233 ecskyelf.c:445 ecskyelf_linux.c:502
+ #: ed10velf.c:186 eelf32_sparc.c:258 eelf32_sparc_sol2.c:390
+-#: eelf32_sparc_vxworks.c:295 eelf32_spu.c:783 eelf32_tic6x_be.c:369
++#: eelf32_sparc_vxworks.c:295 eelf32_spu.c:919 eelf32_tic6x_be.c:369
+ #: eelf32_tic6x_elf_be.c:369 eelf32_tic6x_elf_le.c:369 eelf32_tic6x_le.c:369
+ #: eelf32_tic6x_linux_be.c:369 eelf32_tic6x_linux_le.c:369
+-#: eelf32_x86_64.c:5327 eelf32am33lin.c:232 eelf32b4300.c:473 eelf32bfin.c:250
+-#: eelf32bfinfd.c:275 eelf32bmip.c:473 eelf32bmipn32.c:487 eelf32briscv.c:330
+-#: eelf32briscv_ilp32.c:330 eelf32briscv_ilp32f.c:330 eelf32bsmip.c:487
++#: eelf32_x86_64.c:5349 eelf32am33lin.c:232 eelf32b4300.c:473 eelf32bfin.c:250
++#: eelf32bfinfd.c:275 eelf32bmip.c:473 eelf32bmipn32.c:487 eelf32briscv.c:326
++#: eelf32briscv_ilp32.c:326 eelf32briscv_ilp32f.c:326 eelf32bsmip.c:487
+ #: eelf32btsmip.c:473 eelf32btsmip_fbsd.c:473 eelf32btsmipn32.c:473
+ #: eelf32btsmipn32_fbsd.c:473 eelf32cr16.c:336 eelf32crx.c:223
+ #: eelf32ebmip.c:473 eelf32ebmipvxworks.c:508 eelf32elmip.c:473
+ #: eelf32elmipvxworks.c:508 eelf32epiphany.c:201 eelf32epiphany_4x4.c:188
+ #: eelf32frvfd.c:257 eelf32ip2k.c:201 eelf32l4300.c:473 eelf32lm32.c:201
+-#: eelf32lm32fd.c:257 eelf32lmip.c:473 eelf32lppc.c:509 eelf32lppclinux.c:509
+-#: eelf32lppcnto.c:509 eelf32lppcsim.c:509 eelf32lr5900.c:442
+-#: eelf32lr5900n32.c:441 eelf32lriscv.c:330 eelf32lriscv_ilp32.c:330
+-#: eelf32lriscv_ilp32f.c:330 eelf32lsmip.c:473 eelf32ltsmip.c:473
+-#: eelf32ltsmip_fbsd.c:473 eelf32ltsmipn32.c:473 eelf32ltsmipn32_fbsd.c:473
+-#: eelf32m32c.c:212 eelf32mb_linux.c:258 eelf32mbel_linux.c:258
+-#: eelf32mcore.c:207 eelf32mep.c:186 eelf32metag.c:507 eelf32microblaze.c:186
+-#: eelf32microblazeel.c:186 eelf32mipswindiss.c:416 eelf32moxie.c:201
+-#: eelf32or1k.c:202 eelf32or1k_linux.c:258 eelf32ppc.c:509
+-#: eelf32ppc_fbsd.c:509 eelf32ppclinux.c:509 eelf32ppcnto.c:509
+-#: eelf32ppcsim.c:509 eelf32ppcvxworks.c:483 eelf32ppcwindiss.c:509
+-#: eelf32rl78.c:201 eelf32rx.c:229 eelf32rx_linux.c:214 eelf32tilegx.c:258
+-#: eelf32tilegx_be.c:258 eelf32tilepro.c:258 eelf32vax.c:232
+-#: eelf32visium.c:186 eelf32xc16x.c:186 eelf32xc16xl.c:186 eelf32xc16xs.c:186
+-#: eelf32xstormy16.c:197 eelf32xtensa.c:2179 eelf32z80.c:213 eelf64_aix.c:232
+-#: eelf64_ia64.c:289 eelf64_ia64_fbsd.c:289 eelf64_s390.c:328
+-#: eelf64_sparc.c:258 eelf64_sparc_fbsd.c:258 eelf64_sparc_sol2.c:390
+-#: eelf64alpha.c:351 eelf64alpha_fbsd.c:351 eelf64alpha_nbsd.c:351
+-#: eelf64bmip.c:487 eelf64bpf.c:186 eelf64briscv.c:330 eelf64briscv_lp64.c:330
+-#: eelf64briscv_lp64f.c:330 eelf64btsmip.c:473 eelf64btsmip_fbsd.c:473
+-#: eelf64hppa.c:202 eelf64lppc.c:959 eelf64lppc_fbsd.c:959 eelf64lriscv.c:330
+-#: eelf64lriscv_lp64.c:330 eelf64lriscv_lp64f.c:330 eelf64ltsmip.c:473
+-#: eelf64ltsmip_fbsd.c:473 eelf64mmix.c:343 eelf64ppc.c:959
+-#: eelf64ppc_fbsd.c:959 eelf64rdos.c:283 eelf64tilegx.c:258
+-#: eelf64tilegx_be.c:258 eelf_i386.c:4949 eelf_i386_be.c:256
+-#: eelf_i386_fbsd.c:292 eelf_i386_ldso.c:267 eelf_i386_sol2.c:424
+-#: eelf_i386_vxworks.c:319 eelf_iamcu.c:292 eelf_k1om.c:5283
+-#: eelf_k1om_fbsd.c:292 eelf_l1om.c:5283 eelf_l1om_fbsd.c:292 eelf_s390.c:258
+-#: eelf_x86_64.c:5327 eelf_x86_64_cloudabi.c:292 eelf_x86_64_fbsd.c:292
++#: eelf32lm32fd.c:257 eelf32lmip.c:473 eelf32loongarch.c:308 eelf32lppc.c:521
++#: eelf32lppclinux.c:521 eelf32lppcnto.c:521 eelf32lppcsim.c:521
++#: eelf32lr5900.c:442 eelf32lr5900n32.c:441 eelf32lriscv.c:326
++#: eelf32lriscv_ilp32.c:326 eelf32lriscv_ilp32f.c:326 eelf32lsmip.c:473
++#: eelf32ltsmip.c:473 eelf32ltsmip_fbsd.c:473 eelf32ltsmipn32.c:473
++#: eelf32ltsmipn32_fbsd.c:473 eelf32m32c.c:212 eelf32mb_linux.c:258
++#: eelf32mbel_linux.c:258 eelf32mcore.c:207 eelf32mep.c:186 eelf32metag.c:507
++#: eelf32microblaze.c:186 eelf32microblazeel.c:186 eelf32mipswindiss.c:416
++#: eelf32moxie.c:201 eelf32or1k.c:202 eelf32or1k_linux.c:258 eelf32ppc.c:521
++#: eelf32ppc_fbsd.c:521 eelf32ppchaiku.c:521 eelf32ppclinux.c:521
++#: eelf32ppcnto.c:521 eelf32ppcsim.c:521 eelf32ppcvxworks.c:495
++#: eelf32ppcwindiss.c:521 eelf32rl78.c:201 eelf32rx.c:229 eelf32rx_linux.c:214
++#: eelf32tilegx.c:258 eelf32tilegx_be.c:258 eelf32tilepro.c:258
++#: eelf32vax.c:232 eelf32visium.c:186 eelf32xc16x.c:186 eelf32xc16xl.c:186
++#: eelf32xc16xs.c:186 eelf32xstormy16.c:197 eelf32xtensa.c:2179
++#: eelf32z80.c:213 eelf64_aix.c:232 eelf64_ia64.c:289 eelf64_ia64_fbsd.c:289
++#: eelf64_s390.c:328 eelf64_sparc.c:258 eelf64_sparc_fbsd.c:258
++#: eelf64_sparc_sol2.c:390 eelf64alpha.c:351 eelf64alpha_fbsd.c:351
++#: eelf64alpha_nbsd.c:351 eelf64bmip.c:487 eelf64bpf.c:186 eelf64briscv.c:326
++#: eelf64briscv_lp64.c:326 eelf64briscv_lp64f.c:326 eelf64btsmip.c:473
++#: eelf64btsmip_fbsd.c:473 eelf64hppa.c:202 eelf64loongarch.c:308
++#: eelf64lppc.c:970 eelf64lppc_fbsd.c:970 eelf64lriscv.c:326
++#: eelf64lriscv_lp64.c:326 eelf64lriscv_lp64f.c:326 eelf64ltsmip.c:473
++#: eelf64ltsmip_fbsd.c:473 eelf64mmix.c:343 eelf64ppc.c:970
++#: eelf64ppc_fbsd.c:970 eelf64rdos.c:283 eelf64tilegx.c:258
++#: eelf64tilegx_be.c:258 eelf_i386.c:4971 eelf_i386_be.c:256
++#: eelf_i386_fbsd.c:292 eelf_i386_haiku.c:292 eelf_i386_ldso.c:267
++#: eelf_i386_sol2.c:424 eelf_i386_vxworks.c:319 eelf_iamcu.c:292
++#: eelf_k1om.c:5283 eelf_k1om_fbsd.c:292 eelf_l1om.c:5283 eelf_l1om_fbsd.c:292
++#: eelf_mipsel_haiku.c:473 eelf_s390.c:258 eelf_x86_64.c:5349
++#: eelf_x86_64_cloudabi.c:292 eelf_x86_64_fbsd.c:292 eelf_x86_64_haiku.c:292
+ #: eelf_x86_64_sol2.c:424 eh8300elf.c:201 eh8300elf_linux.c:201
+ #: eh8300helf.c:201 eh8300helf_linux.c:201 eh8300hnelf.c:201 eh8300self.c:201
+ #: eh8300self_linux.c:201 eh8300snelf.c:201 eh8300sxelf.c:201
+@@ -3059,49 +3084,51 @@ msgstr "%F%P: неисправна „--compress-debug-sections“ одељка:
+
+ #: eaarch64cloudabi.c:621 eaarch64cloudabib.c:621 eaarch64elf.c:620
+ #: eaarch64elf32.c:620 eaarch64elf32b.c:620 eaarch64elfb.c:620
+-#: eaarch64fbsd.c:621 eaarch64fbsdb.c:621 eaarch64linux.c:621
+-#: eaarch64linux32.c:621 eaarch64linux32b.c:621 eaarch64linuxb.c:621
+-#: earcelf.c:253 earclinux.c:309 earclinux_nps.c:309 earmelf.c:863
+-#: earmelf_fbsd.c:863 earmelf_fuchsia.c:864 earmelf_linux.c:864
+-#: earmelf_linux_eabi.c:864 earmelf_linux_fdpiceabi.c:864 earmelf_nacl.c:864
+-#: earmelf_nbsd.c:863 earmelf_phoenix.c:864 earmelf_vxworks.c:899
+-#: earmelfb.c:863 earmelfb_fbsd.c:863 earmelfb_fuchsia.c:864
+-#: earmelfb_linux.c:864 earmelfb_linux_eabi.c:864
++#: eaarch64fbsd.c:621 eaarch64fbsdb.c:621 eaarch64haiku.c:621
++#: eaarch64linux.c:621 eaarch64linux32.c:621 eaarch64linux32b.c:621
++#: eaarch64linuxb.c:621 earcelf.c:253 earclinux.c:309 earclinux_nps.c:309
++#: earmelf.c:863 earmelf_fbsd.c:863 earmelf_fuchsia.c:864 earmelf_haiku.c:864
++#: earmelf_linux.c:864 earmelf_linux_eabi.c:864 earmelf_linux_fdpiceabi.c:864
++#: earmelf_nacl.c:864 earmelf_nbsd.c:863 earmelf_phoenix.c:864
++#: earmelf_vxworks.c:899 earmelfb.c:863 earmelfb_fbsd.c:863
++#: earmelfb_fuchsia.c:864 earmelfb_linux.c:864 earmelfb_linux_eabi.c:864
+ #: earmelfb_linux_fdpiceabi.c:864 earmelfb_nacl.c:864 earmelfb_nbsd.c:863
+ #: earmnto.c:838 ecrislinux.c:284 ecskyelf_linux.c:553 eelf32_sparc.c:309
+ #: eelf32_sparc_sol2.c:441 eelf32_sparc_vxworks.c:346 eelf32_tic6x_be.c:420
+ #: eelf32_tic6x_elf_be.c:420 eelf32_tic6x_elf_le.c:420 eelf32_tic6x_le.c:420
+ #: eelf32_tic6x_linux_be.c:420 eelf32_tic6x_linux_le.c:420
+-#: eelf32_x86_64.c:5378 eelf32am33lin.c:283 eelf32b4300.c:524 eelf32bfin.c:301
+-#: eelf32bfinfd.c:326 eelf32bmip.c:524 eelf32bmipn32.c:538 eelf32briscv.c:381
+-#: eelf32briscv_ilp32.c:381 eelf32briscv_ilp32f.c:381 eelf32bsmip.c:538
++#: eelf32_x86_64.c:5400 eelf32am33lin.c:283 eelf32b4300.c:524 eelf32bfin.c:301
++#: eelf32bfinfd.c:326 eelf32bmip.c:524 eelf32bmipn32.c:538 eelf32briscv.c:377
++#: eelf32briscv_ilp32.c:377 eelf32briscv_ilp32f.c:377 eelf32bsmip.c:538
+ #: eelf32btsmip.c:524 eelf32btsmip_fbsd.c:524 eelf32btsmipn32.c:524
+ #: eelf32btsmipn32_fbsd.c:524 eelf32ebmip.c:524 eelf32ebmipvxworks.c:559
+ #: eelf32elmip.c:524 eelf32elmipvxworks.c:559 eelf32frvfd.c:308
+-#: eelf32l4300.c:524 eelf32lm32fd.c:308 eelf32lmip.c:524 eelf32lppc.c:560
+-#: eelf32lppclinux.c:560 eelf32lppcnto.c:560 eelf32lppcsim.c:560
+-#: eelf32lriscv.c:381 eelf32lriscv_ilp32.c:381 eelf32lriscv_ilp32f.c:381
+-#: eelf32lsmip.c:524 eelf32ltsmip.c:524 eelf32ltsmip_fbsd.c:524
+-#: eelf32ltsmipn32.c:524 eelf32ltsmipn32_fbsd.c:524 eelf32mb_linux.c:309
+-#: eelf32mbel_linux.c:309 eelf32metag.c:558 eelf32or1k_linux.c:309
+-#: eelf32ppc.c:560 eelf32ppc_fbsd.c:560 eelf32ppclinux.c:560
+-#: eelf32ppcnto.c:560 eelf32ppcsim.c:560 eelf32ppcvxworks.c:534
+-#: eelf32ppcwindiss.c:560 eelf32tilegx.c:309 eelf32tilegx_be.c:309
+-#: eelf32tilepro.c:309 eelf32vax.c:283 eelf32xtensa.c:2230 eelf64_aix.c:283
+-#: eelf64_ia64.c:340 eelf64_ia64_fbsd.c:340 eelf64_s390.c:379
+-#: eelf64_sparc.c:309 eelf64_sparc_fbsd.c:309 eelf64_sparc_sol2.c:441
+-#: eelf64alpha.c:402 eelf64alpha_fbsd.c:402 eelf64alpha_nbsd.c:402
+-#: eelf64bmip.c:538 eelf64briscv.c:381 eelf64briscv_lp64.c:381
+-#: eelf64briscv_lp64f.c:381 eelf64btsmip.c:524 eelf64btsmip_fbsd.c:524
+-#: eelf64hppa.c:253 eelf64lppc.c:1010 eelf64lppc_fbsd.c:1010
+-#: eelf64lriscv.c:381 eelf64lriscv_lp64.c:381 eelf64lriscv_lp64f.c:381
++#: eelf32l4300.c:524 eelf32lm32fd.c:308 eelf32lmip.c:524 eelf32loongarch.c:359
++#: eelf32lppc.c:572 eelf32lppclinux.c:572 eelf32lppcnto.c:572
++#: eelf32lppcsim.c:572 eelf32lriscv.c:377 eelf32lriscv_ilp32.c:377
++#: eelf32lriscv_ilp32f.c:377 eelf32lsmip.c:524 eelf32ltsmip.c:524
++#: eelf32ltsmip_fbsd.c:524 eelf32ltsmipn32.c:524 eelf32ltsmipn32_fbsd.c:524
++#: eelf32mb_linux.c:309 eelf32mbel_linux.c:309 eelf32metag.c:558
++#: eelf32or1k_linux.c:309 eelf32ppc.c:572 eelf32ppc_fbsd.c:572
++#: eelf32ppchaiku.c:572 eelf32ppclinux.c:572 eelf32ppcnto.c:572
++#: eelf32ppcsim.c:572 eelf32ppcvxworks.c:546 eelf32ppcwindiss.c:572
++#: eelf32tilegx.c:309 eelf32tilegx_be.c:309 eelf32tilepro.c:309
++#: eelf32vax.c:283 eelf32xtensa.c:2230 eelf64_aix.c:283 eelf64_ia64.c:340
++#: eelf64_ia64_fbsd.c:340 eelf64_s390.c:379 eelf64_sparc.c:309
++#: eelf64_sparc_fbsd.c:309 eelf64_sparc_sol2.c:441 eelf64alpha.c:402
++#: eelf64alpha_fbsd.c:402 eelf64alpha_nbsd.c:402 eelf64bmip.c:538
++#: eelf64briscv.c:377 eelf64briscv_lp64.c:377 eelf64briscv_lp64f.c:377
++#: eelf64btsmip.c:524 eelf64btsmip_fbsd.c:524 eelf64hppa.c:253
++#: eelf64loongarch.c:359 eelf64lppc.c:1021 eelf64lppc_fbsd.c:1021
++#: eelf64lriscv.c:377 eelf64lriscv_lp64.c:377 eelf64lriscv_lp64f.c:377
+ #: eelf64ltsmip.c:524 eelf64ltsmip_fbsd.c:524 eelf64mmix.c:394
+-#: eelf64ppc.c:1010 eelf64ppc_fbsd.c:1010 eelf64rdos.c:334 eelf64tilegx.c:309
+-#: eelf64tilegx_be.c:309 eelf_i386.c:5000 eelf_i386_be.c:307
+-#: eelf_i386_fbsd.c:343 eelf_i386_ldso.c:318 eelf_i386_sol2.c:475
+-#: eelf_i386_vxworks.c:370 eelf_iamcu.c:343 eelf_k1om.c:5334
+-#: eelf_k1om_fbsd.c:343 eelf_l1om.c:5334 eelf_l1om_fbsd.c:343 eelf_s390.c:309
+-#: eelf_x86_64.c:5378 eelf_x86_64_cloudabi.c:343 eelf_x86_64_fbsd.c:343
++#: eelf64ppc.c:1021 eelf64ppc_fbsd.c:1021 eelf64rdos.c:334 eelf64tilegx.c:309
++#: eelf64tilegx_be.c:309 eelf_i386.c:5022 eelf_i386_be.c:307
++#: eelf_i386_fbsd.c:343 eelf_i386_haiku.c:343 eelf_i386_ldso.c:318
++#: eelf_i386_sol2.c:475 eelf_i386_vxworks.c:370 eelf_iamcu.c:343
++#: eelf_k1om.c:5334 eelf_k1om_fbsd.c:343 eelf_l1om.c:5334 eelf_l1om_fbsd.c:343
++#: eelf_mipsel_haiku.c:524 eelf_s390.c:309 eelf_x86_64.c:5400
++#: eelf_x86_64_cloudabi.c:343 eelf_x86_64_fbsd.c:343 eelf_x86_64_haiku.c:343
+ #: eelf_x86_64_sol2.c:475 ehppa64linux.c:283 ehppalinux.c:592 ehppanbsd.c:592
+ #: ehppaobsd.c:592 ei386lynx.c:298 ei386moss.c:298 ei386nto.c:298
+ #: em32relf_linux.c:308 em32rlelf_linux.c:308 em68kelf.c:466
+@@ -3116,14 +3143,15 @@ msgstr "%F%P: неисправан стил хеша „%s“\n"
+
+ #: eaarch64cloudabi.c:638 eaarch64cloudabib.c:638 eaarch64elf.c:637
+ #: eaarch64elf32.c:637 eaarch64elf32b.c:637 eaarch64elfb.c:637
+-#: eaarch64fbsd.c:638 eaarch64fbsdb.c:638 eaarch64linux.c:638
+-#: eaarch64linux32.c:638 eaarch64linux32b.c:638 eaarch64linuxb.c:638
+-#: earcelf.c:270 earclinux.c:326 earclinux_nps.c:326 earcv2elf.c:203
+-#: earcv2elfx.c:203 earmelf.c:880 earmelf_fbsd.c:880 earmelf_fuchsia.c:881
+-#: earmelf_linux.c:881 earmelf_linux_eabi.c:881 earmelf_linux_fdpiceabi.c:881
+-#: earmelf_nacl.c:881 earmelf_nbsd.c:880 earmelf_phoenix.c:881
+-#: earmelf_vxworks.c:916 earmelfb.c:880 earmelfb_fbsd.c:880
+-#: earmelfb_fuchsia.c:881 earmelfb_linux.c:881 earmelfb_linux_eabi.c:881
++#: eaarch64fbsd.c:638 eaarch64fbsdb.c:638 eaarch64haiku.c:638
++#: eaarch64linux.c:638 eaarch64linux32.c:638 eaarch64linux32b.c:638
++#: eaarch64linuxb.c:638 earcelf.c:270 earclinux.c:326 earclinux_nps.c:326
++#: earcv2elf.c:203 earcv2elfx.c:203 earmelf.c:880 earmelf_fbsd.c:880
++#: earmelf_fuchsia.c:881 earmelf_haiku.c:881 earmelf_linux.c:881
++#: earmelf_linux_eabi.c:881 earmelf_linux_fdpiceabi.c:881 earmelf_nacl.c:881
++#: earmelf_nbsd.c:880 earmelf_phoenix.c:881 earmelf_vxworks.c:916
++#: earmelfb.c:880 earmelfb_fbsd.c:880 earmelfb_fuchsia.c:881
++#: earmelfb_linux.c:881 earmelfb_linux_eabi.c:881
+ #: earmelfb_linux_fdpiceabi.c:881 earmelfb_nacl.c:881 earmelfb_nbsd.c:880
+ #: earmnto.c:855 eavr1.c:426 eavr2.c:426 eavr25.c:426 eavr3.c:426 eavr31.c:426
+ #: eavr35.c:426 eavr4.c:426 eavr5.c:426 eavr51.c:426 eavr6.c:426
+@@ -3131,46 +3159,48 @@ msgstr "%F%P: неисправан стил хеша „%s“\n"
+ #: eavrxmega4.c:426 eavrxmega5.c:426 eavrxmega6.c:426 eavrxmega7.c:426
+ #: ecriself.c:218 ecrislinux.c:301 ecskyelf.c:462 ecskyelf_linux.c:570
+ #: ed10velf.c:203 eelf32_sparc.c:326 eelf32_sparc_sol2.c:458
+-#: eelf32_sparc_vxworks.c:363 eelf32_spu.c:800 eelf32_tic6x_be.c:437
++#: eelf32_sparc_vxworks.c:363 eelf32_spu.c:936 eelf32_tic6x_be.c:437
+ #: eelf32_tic6x_elf_be.c:437 eelf32_tic6x_elf_le.c:437 eelf32_tic6x_le.c:437
+ #: eelf32_tic6x_linux_be.c:437 eelf32_tic6x_linux_le.c:437
+-#: eelf32_x86_64.c:5395 eelf32am33lin.c:300 eelf32b4300.c:541 eelf32bfin.c:318
+-#: eelf32bfinfd.c:343 eelf32bmip.c:541 eelf32bmipn32.c:555 eelf32briscv.c:398
+-#: eelf32briscv_ilp32.c:398 eelf32briscv_ilp32f.c:398 eelf32bsmip.c:555
++#: eelf32_x86_64.c:5417 eelf32am33lin.c:300 eelf32b4300.c:541 eelf32bfin.c:318
++#: eelf32bfinfd.c:343 eelf32bmip.c:541 eelf32bmipn32.c:555 eelf32briscv.c:394
++#: eelf32briscv_ilp32.c:394 eelf32briscv_ilp32f.c:394 eelf32bsmip.c:555
+ #: eelf32btsmip.c:541 eelf32btsmip_fbsd.c:541 eelf32btsmipn32.c:541
+ #: eelf32btsmipn32_fbsd.c:541 eelf32cr16.c:353 eelf32crx.c:240
+ #: eelf32ebmip.c:541 eelf32ebmipvxworks.c:576 eelf32elmip.c:541
+ #: eelf32elmipvxworks.c:576 eelf32epiphany.c:218 eelf32epiphany_4x4.c:205
+ #: eelf32frvfd.c:325 eelf32ip2k.c:218 eelf32l4300.c:541 eelf32lm32.c:218
+-#: eelf32lm32fd.c:325 eelf32lmip.c:541 eelf32lppc.c:577 eelf32lppclinux.c:577
+-#: eelf32lppcnto.c:577 eelf32lppcsim.c:577 eelf32lr5900.c:459
+-#: eelf32lr5900n32.c:458 eelf32lriscv.c:398 eelf32lriscv_ilp32.c:398
+-#: eelf32lriscv_ilp32f.c:398 eelf32lsmip.c:541 eelf32ltsmip.c:541
+-#: eelf32ltsmip_fbsd.c:541 eelf32ltsmipn32.c:541 eelf32ltsmipn32_fbsd.c:541
+-#: eelf32m32c.c:229 eelf32mb_linux.c:326 eelf32mbel_linux.c:326
+-#: eelf32mcore.c:224 eelf32mep.c:203 eelf32metag.c:575 eelf32microblaze.c:203
+-#: eelf32microblazeel.c:203 eelf32mipswindiss.c:433 eelf32moxie.c:218
+-#: eelf32or1k.c:219 eelf32or1k_linux.c:326 eelf32ppc.c:577
+-#: eelf32ppc_fbsd.c:577 eelf32ppclinux.c:577 eelf32ppcnto.c:577
+-#: eelf32ppcsim.c:577 eelf32ppcvxworks.c:551 eelf32ppcwindiss.c:577
+-#: eelf32rl78.c:218 eelf32rx.c:246 eelf32rx_linux.c:231 eelf32tilegx.c:326
+-#: eelf32tilegx_be.c:326 eelf32tilepro.c:326 eelf32vax.c:300
+-#: eelf32visium.c:203 eelf32xc16x.c:203 eelf32xc16xl.c:203 eelf32xc16xs.c:203
+-#: eelf32xstormy16.c:214 eelf32xtensa.c:2247 eelf32z80.c:230 eelf64_aix.c:300
+-#: eelf64_ia64.c:357 eelf64_ia64_fbsd.c:357 eelf64_s390.c:396
+-#: eelf64_sparc.c:326 eelf64_sparc_fbsd.c:326 eelf64_sparc_sol2.c:458
+-#: eelf64alpha.c:419 eelf64alpha_fbsd.c:419 eelf64alpha_nbsd.c:419
+-#: eelf64bmip.c:555 eelf64bpf.c:203 eelf64briscv.c:398 eelf64briscv_lp64.c:398
+-#: eelf64briscv_lp64f.c:398 eelf64btsmip.c:541 eelf64btsmip_fbsd.c:541
+-#: eelf64hppa.c:270 eelf64lppc.c:1027 eelf64lppc_fbsd.c:1027
+-#: eelf64lriscv.c:398 eelf64lriscv_lp64.c:398 eelf64lriscv_lp64f.c:398
+-#: eelf64ltsmip.c:541 eelf64ltsmip_fbsd.c:541 eelf64mmix.c:411
+-#: eelf64ppc.c:1027 eelf64ppc_fbsd.c:1027 eelf64rdos.c:351 eelf64tilegx.c:326
+-#: eelf64tilegx_be.c:326 eelf_i386.c:5017 eelf_i386_be.c:324
+-#: eelf_i386_fbsd.c:360 eelf_i386_ldso.c:335 eelf_i386_sol2.c:492
+-#: eelf_i386_vxworks.c:387 eelf_iamcu.c:360 eelf_k1om.c:5351
+-#: eelf_k1om_fbsd.c:360 eelf_l1om.c:5351 eelf_l1om_fbsd.c:360 eelf_s390.c:326
+-#: eelf_x86_64.c:5395 eelf_x86_64_cloudabi.c:360 eelf_x86_64_fbsd.c:360
++#: eelf32lm32fd.c:325 eelf32lmip.c:541 eelf32loongarch.c:376 eelf32lppc.c:589
++#: eelf32lppclinux.c:589 eelf32lppcnto.c:589 eelf32lppcsim.c:589
++#: eelf32lr5900.c:459 eelf32lr5900n32.c:458 eelf32lriscv.c:394
++#: eelf32lriscv_ilp32.c:394 eelf32lriscv_ilp32f.c:394 eelf32lsmip.c:541
++#: eelf32ltsmip.c:541 eelf32ltsmip_fbsd.c:541 eelf32ltsmipn32.c:541
++#: eelf32ltsmipn32_fbsd.c:541 eelf32m32c.c:229 eelf32mb_linux.c:326
++#: eelf32mbel_linux.c:326 eelf32mcore.c:224 eelf32mep.c:203 eelf32metag.c:575
++#: eelf32microblaze.c:203 eelf32microblazeel.c:203 eelf32mipswindiss.c:433
++#: eelf32moxie.c:218 eelf32or1k.c:219 eelf32or1k_linux.c:326 eelf32ppc.c:589
++#: eelf32ppc_fbsd.c:589 eelf32ppchaiku.c:589 eelf32ppclinux.c:589
++#: eelf32ppcnto.c:589 eelf32ppcsim.c:589 eelf32ppcvxworks.c:563
++#: eelf32ppcwindiss.c:589 eelf32rl78.c:218 eelf32rx.c:246 eelf32rx_linux.c:231
++#: eelf32tilegx.c:326 eelf32tilegx_be.c:326 eelf32tilepro.c:326
++#: eelf32vax.c:300 eelf32visium.c:203 eelf32xc16x.c:203 eelf32xc16xl.c:203
++#: eelf32xc16xs.c:203 eelf32xstormy16.c:214 eelf32xtensa.c:2247
++#: eelf32z80.c:230 eelf64_aix.c:300 eelf64_ia64.c:357 eelf64_ia64_fbsd.c:357
++#: eelf64_s390.c:396 eelf64_sparc.c:326 eelf64_sparc_fbsd.c:326
++#: eelf64_sparc_sol2.c:458 eelf64alpha.c:419 eelf64alpha_fbsd.c:419
++#: eelf64alpha_nbsd.c:419 eelf64bmip.c:555 eelf64bpf.c:203 eelf64briscv.c:394
++#: eelf64briscv_lp64.c:394 eelf64briscv_lp64f.c:394 eelf64btsmip.c:541
++#: eelf64btsmip_fbsd.c:541 eelf64hppa.c:270 eelf64loongarch.c:376
++#: eelf64lppc.c:1038 eelf64lppc_fbsd.c:1038 eelf64lriscv.c:394
++#: eelf64lriscv_lp64.c:394 eelf64lriscv_lp64f.c:394 eelf64ltsmip.c:541
++#: eelf64ltsmip_fbsd.c:541 eelf64mmix.c:411 eelf64ppc.c:1038
++#: eelf64ppc_fbsd.c:1038 eelf64rdos.c:351 eelf64tilegx.c:326
++#: eelf64tilegx_be.c:326 eelf_i386.c:5039 eelf_i386_be.c:324
++#: eelf_i386_fbsd.c:360 eelf_i386_haiku.c:360 eelf_i386_ldso.c:335
++#: eelf_i386_sol2.c:492 eelf_i386_vxworks.c:387 eelf_iamcu.c:360
++#: eelf_k1om.c:5351 eelf_k1om_fbsd.c:360 eelf_l1om.c:5351 eelf_l1om_fbsd.c:360
++#: eelf_mipsel_haiku.c:541 eelf_s390.c:326 eelf_x86_64.c:5417
++#: eelf_x86_64_cloudabi.c:360 eelf_x86_64_fbsd.c:360 eelf_x86_64_haiku.c:360
+ #: eelf_x86_64_sol2.c:492 eh8300elf.c:218 eh8300elf_linux.c:218
+ #: eh8300helf.c:218 eh8300helf_linux.c:218 eh8300hnelf.c:218 eh8300self.c:218
+ #: eh8300self_linux.c:218 eh8300snelf.c:218 eh8300sxelf.c:218
+@@ -3190,329 +3220,342 @@ msgstr "%F%P: неисправан стил хеша „%s“\n"
+ msgid "%F%P: invalid maximum page size `%s'\n"
+ msgstr "%F%P: неисправна највећа величина странице „%s“\n"
+
+-#: eaarch64cloudabi.c:647 eaarch64cloudabib.c:647 eaarch64elf.c:646
+-#: eaarch64elf32.c:646 eaarch64elf32b.c:646 eaarch64elfb.c:646
+-#: eaarch64fbsd.c:647 eaarch64fbsdb.c:647 eaarch64linux.c:647
+-#: eaarch64linux32.c:647 eaarch64linux32b.c:647 eaarch64linuxb.c:647
+-#: earcelf.c:279 earclinux.c:335 earclinux_nps.c:335 earcv2elf.c:212
+-#: earcv2elfx.c:212 earmelf.c:889 earmelf_fbsd.c:889 earmelf_fuchsia.c:890
+-#: earmelf_linux.c:890 earmelf_linux_eabi.c:890 earmelf_linux_fdpiceabi.c:890
+-#: earmelf_nacl.c:890 earmelf_nbsd.c:889 earmelf_phoenix.c:890
+-#: earmelf_vxworks.c:925 earmelfb.c:889 earmelfb_fbsd.c:889
+-#: earmelfb_fuchsia.c:890 earmelfb_linux.c:890 earmelfb_linux_eabi.c:890
+-#: earmelfb_linux_fdpiceabi.c:890 earmelfb_nacl.c:890 earmelfb_nbsd.c:889
+-#: earmnto.c:864 eavr1.c:435 eavr2.c:435 eavr25.c:435 eavr3.c:435 eavr31.c:435
+-#: eavr35.c:435 eavr4.c:435 eavr5.c:435 eavr51.c:435 eavr6.c:435
+-#: eavrtiny.c:435 eavrxmega1.c:435 eavrxmega2.c:435 eavrxmega3.c:435
+-#: eavrxmega4.c:435 eavrxmega5.c:435 eavrxmega6.c:435 eavrxmega7.c:435
+-#: ecriself.c:227 ecrislinux.c:310 ecskyelf.c:471 ecskyelf_linux.c:579
+-#: ed10velf.c:212 eelf32_sparc.c:335 eelf32_sparc_sol2.c:467
+-#: eelf32_sparc_vxworks.c:372 eelf32_spu.c:809 eelf32_tic6x_be.c:446
+-#: eelf32_tic6x_elf_be.c:446 eelf32_tic6x_elf_le.c:446 eelf32_tic6x_le.c:446
+-#: eelf32_tic6x_linux_be.c:446 eelf32_tic6x_linux_le.c:446
+-#: eelf32_x86_64.c:5404 eelf32am33lin.c:309 eelf32b4300.c:550 eelf32bfin.c:327
+-#: eelf32bfinfd.c:352 eelf32bmip.c:550 eelf32bmipn32.c:564 eelf32briscv.c:407
+-#: eelf32briscv_ilp32.c:407 eelf32briscv_ilp32f.c:407 eelf32bsmip.c:564
+-#: eelf32btsmip.c:550 eelf32btsmip_fbsd.c:550 eelf32btsmipn32.c:550
+-#: eelf32btsmipn32_fbsd.c:550 eelf32cr16.c:362 eelf32crx.c:249
+-#: eelf32ebmip.c:550 eelf32ebmipvxworks.c:585 eelf32elmip.c:550
+-#: eelf32elmipvxworks.c:585 eelf32epiphany.c:227 eelf32epiphany_4x4.c:214
+-#: eelf32frvfd.c:334 eelf32ip2k.c:227 eelf32l4300.c:550 eelf32lm32.c:227
+-#: eelf32lm32fd.c:334 eelf32lmip.c:550 eelf32lppc.c:586 eelf32lppclinux.c:586
+-#: eelf32lppcnto.c:586 eelf32lppcsim.c:586 eelf32lr5900.c:468
+-#: eelf32lr5900n32.c:467 eelf32lriscv.c:407 eelf32lriscv_ilp32.c:407
+-#: eelf32lriscv_ilp32f.c:407 eelf32lsmip.c:550 eelf32ltsmip.c:550
+-#: eelf32ltsmip_fbsd.c:550 eelf32ltsmipn32.c:550 eelf32ltsmipn32_fbsd.c:550
+-#: eelf32m32c.c:238 eelf32mb_linux.c:335 eelf32mbel_linux.c:335
+-#: eelf32mcore.c:233 eelf32mep.c:212 eelf32metag.c:584 eelf32microblaze.c:212
+-#: eelf32microblazeel.c:212 eelf32mipswindiss.c:442 eelf32moxie.c:227
+-#: eelf32or1k.c:228 eelf32or1k_linux.c:335 eelf32ppc.c:586
+-#: eelf32ppc_fbsd.c:586 eelf32ppclinux.c:586 eelf32ppcnto.c:586
+-#: eelf32ppcsim.c:586 eelf32ppcvxworks.c:560 eelf32ppcwindiss.c:586
+-#: eelf32rl78.c:227 eelf32rx.c:255 eelf32rx_linux.c:240 eelf32tilegx.c:335
+-#: eelf32tilegx_be.c:335 eelf32tilepro.c:335 eelf32vax.c:309
+-#: eelf32visium.c:212 eelf32xc16x.c:212 eelf32xc16xl.c:212 eelf32xc16xs.c:212
+-#: eelf32xstormy16.c:223 eelf32xtensa.c:2256 eelf32z80.c:239 eelf64_aix.c:309
+-#: eelf64_ia64.c:366 eelf64_ia64_fbsd.c:366 eelf64_s390.c:405
+-#: eelf64_sparc.c:335 eelf64_sparc_fbsd.c:335 eelf64_sparc_sol2.c:467
+-#: eelf64alpha.c:428 eelf64alpha_fbsd.c:428 eelf64alpha_nbsd.c:428
+-#: eelf64bmip.c:564 eelf64bpf.c:212 eelf64briscv.c:407 eelf64briscv_lp64.c:407
+-#: eelf64briscv_lp64f.c:407 eelf64btsmip.c:550 eelf64btsmip_fbsd.c:550
+-#: eelf64hppa.c:279 eelf64lppc.c:1036 eelf64lppc_fbsd.c:1036
+-#: eelf64lriscv.c:407 eelf64lriscv_lp64.c:407 eelf64lriscv_lp64f.c:407
+-#: eelf64ltsmip.c:550 eelf64ltsmip_fbsd.c:550 eelf64mmix.c:420
+-#: eelf64ppc.c:1036 eelf64ppc_fbsd.c:1036 eelf64rdos.c:360 eelf64tilegx.c:335
+-#: eelf64tilegx_be.c:335 eelf_i386.c:5026 eelf_i386_be.c:333
+-#: eelf_i386_fbsd.c:369 eelf_i386_ldso.c:344 eelf_i386_sol2.c:501
+-#: eelf_i386_vxworks.c:396 eelf_iamcu.c:369 eelf_k1om.c:5360
+-#: eelf_k1om_fbsd.c:369 eelf_l1om.c:5360 eelf_l1om_fbsd.c:369 eelf_s390.c:335
+-#: eelf_x86_64.c:5404 eelf_x86_64_cloudabi.c:369 eelf_x86_64_fbsd.c:369
+-#: eelf_x86_64_sol2.c:501 eh8300elf.c:227 eh8300elf_linux.c:227
+-#: eh8300helf.c:227 eh8300helf_linux.c:227 eh8300hnelf.c:227 eh8300self.c:227
+-#: eh8300self_linux.c:227 eh8300snelf.c:227 eh8300sxelf.c:227
+-#: eh8300sxelf_linux.c:227 eh8300sxnelf.c:227 ehppa64linux.c:309
+-#: ehppaelf.c:495 ehppalinux.c:618 ehppanbsd.c:618 ehppaobsd.c:618
+-#: ei386lynx.c:324 ei386moss.c:324 ei386nto.c:324 em32relf.c:227
+-#: em32relf_linux.c:334 em32rlelf.c:227 em32rlelf_linux.c:334
+-#: em68hc11elf.c:497 em68hc11elfb.c:497 em68hc12elf.c:497 em68hc12elfb.c:497
+-#: em68kelf.c:492 em68kelfnbsd.c:492 emn10300.c:309 ends32belf.c:348
+-#: ends32belf16m.c:348 ends32belf_linux.c:422 ends32elf.c:348
+-#: ends32elf16m.c:348 ends32elf_linux.c:422 enios2elf.c:514 enios2linux.c:596
+-#: epruelf.c:233 escore3_elf.c:330 escore7_elf.c:330 eshelf.c:309
+-#: eshelf_fd.c:335 eshelf_linux.c:335 eshelf_nbsd.c:309 eshelf_nto.c:309
+-#: eshelf_uclinux.c:309 eshelf_vxworks.c:346 eshlelf.c:309 eshlelf_fd.c:335
+-#: eshlelf_linux.c:335 eshlelf_nbsd.c:309 eshlelf_nto.c:309
+-#: eshlelf_vxworks.c:346 ev850.c:259 ev850_rh850.c:259
++#: eaarch64cloudabi.c:648 eaarch64cloudabib.c:648 eaarch64elf.c:647
++#: eaarch64elf32.c:647 eaarch64elf32b.c:647 eaarch64elfb.c:647
++#: eaarch64fbsd.c:648 eaarch64fbsdb.c:648 eaarch64haiku.c:648
++#: eaarch64linux.c:648 eaarch64linux32.c:648 eaarch64linux32b.c:648
++#: eaarch64linuxb.c:648 earcelf.c:280 earclinux.c:336 earclinux_nps.c:336
++#: earcv2elf.c:213 earcv2elfx.c:213 earmelf.c:890 earmelf_fbsd.c:890
++#: earmelf_fuchsia.c:891 earmelf_haiku.c:891 earmelf_linux.c:891
++#: earmelf_linux_eabi.c:891 earmelf_linux_fdpiceabi.c:891 earmelf_nacl.c:891
++#: earmelf_nbsd.c:890 earmelf_phoenix.c:891 earmelf_vxworks.c:926
++#: earmelfb.c:890 earmelfb_fbsd.c:890 earmelfb_fuchsia.c:891
++#: earmelfb_linux.c:891 earmelfb_linux_eabi.c:891
++#: earmelfb_linux_fdpiceabi.c:891 earmelfb_nacl.c:891 earmelfb_nbsd.c:890
++#: earmnto.c:865 eavr1.c:436 eavr2.c:436 eavr25.c:436 eavr3.c:436 eavr31.c:436
++#: eavr35.c:436 eavr4.c:436 eavr5.c:436 eavr51.c:436 eavr6.c:436
++#: eavrtiny.c:436 eavrxmega1.c:436 eavrxmega2.c:436 eavrxmega3.c:436
++#: eavrxmega4.c:436 eavrxmega5.c:436 eavrxmega6.c:436 eavrxmega7.c:436
++#: ecriself.c:228 ecrislinux.c:311 ecskyelf.c:472 ecskyelf_linux.c:580
++#: ed10velf.c:213 eelf32_sparc.c:336 eelf32_sparc_sol2.c:468
++#: eelf32_sparc_vxworks.c:373 eelf32_spu.c:946 eelf32_tic6x_be.c:447
++#: eelf32_tic6x_elf_be.c:447 eelf32_tic6x_elf_le.c:447 eelf32_tic6x_le.c:447
++#: eelf32_tic6x_linux_be.c:447 eelf32_tic6x_linux_le.c:447
++#: eelf32_x86_64.c:5427 eelf32am33lin.c:310 eelf32b4300.c:551 eelf32bfin.c:328
++#: eelf32bfinfd.c:353 eelf32bmip.c:551 eelf32bmipn32.c:565 eelf32briscv.c:404
++#: eelf32briscv_ilp32.c:404 eelf32briscv_ilp32f.c:404 eelf32bsmip.c:565
++#: eelf32btsmip.c:551 eelf32btsmip_fbsd.c:551 eelf32btsmipn32.c:551
++#: eelf32btsmipn32_fbsd.c:551 eelf32cr16.c:363 eelf32crx.c:250
++#: eelf32ebmip.c:551 eelf32ebmipvxworks.c:586 eelf32elmip.c:551
++#: eelf32elmipvxworks.c:586 eelf32epiphany.c:228 eelf32epiphany_4x4.c:215
++#: eelf32frvfd.c:335 eelf32ip2k.c:228 eelf32l4300.c:551 eelf32lm32.c:228
++#: eelf32lm32fd.c:335 eelf32lmip.c:551 eelf32loongarch.c:386 eelf32lppc.c:599
++#: eelf32lppclinux.c:599 eelf32lppcnto.c:599 eelf32lppcsim.c:599
++#: eelf32lr5900.c:469 eelf32lr5900n32.c:468 eelf32lriscv.c:404
++#: eelf32lriscv_ilp32.c:404 eelf32lriscv_ilp32f.c:404 eelf32lsmip.c:551
++#: eelf32ltsmip.c:551 eelf32ltsmip_fbsd.c:551 eelf32ltsmipn32.c:551
++#: eelf32ltsmipn32_fbsd.c:551 eelf32m32c.c:239 eelf32mb_linux.c:336
++#: eelf32mbel_linux.c:336 eelf32mcore.c:234 eelf32mep.c:213 eelf32metag.c:585
++#: eelf32microblaze.c:213 eelf32microblazeel.c:213 eelf32mipswindiss.c:443
++#: eelf32moxie.c:228 eelf32or1k.c:229 eelf32or1k_linux.c:336 eelf32ppc.c:599
++#: eelf32ppc_fbsd.c:599 eelf32ppchaiku.c:599 eelf32ppclinux.c:599
++#: eelf32ppcnto.c:599 eelf32ppcsim.c:599 eelf32ppcvxworks.c:573
++#: eelf32ppcwindiss.c:599 eelf32rl78.c:228 eelf32rx.c:256 eelf32rx_linux.c:241
++#: eelf32tilegx.c:336 eelf32tilegx_be.c:336 eelf32tilepro.c:336
++#: eelf32vax.c:310 eelf32visium.c:213 eelf32xc16x.c:213 eelf32xc16xl.c:213
++#: eelf32xc16xs.c:213 eelf32xstormy16.c:224 eelf32xtensa.c:2257
++#: eelf32z80.c:240 eelf64_aix.c:310 eelf64_ia64.c:367 eelf64_ia64_fbsd.c:367
++#: eelf64_s390.c:406 eelf64_sparc.c:336 eelf64_sparc_fbsd.c:336
++#: eelf64_sparc_sol2.c:468 eelf64alpha.c:429 eelf64alpha_fbsd.c:429
++#: eelf64alpha_nbsd.c:429 eelf64bmip.c:565 eelf64bpf.c:213 eelf64briscv.c:404
++#: eelf64briscv_lp64.c:404 eelf64briscv_lp64f.c:404 eelf64btsmip.c:551
++#: eelf64btsmip_fbsd.c:551 eelf64hppa.c:280 eelf64loongarch.c:386
++#: eelf64lppc.c:1048 eelf64lppc_fbsd.c:1048 eelf64lriscv.c:404
++#: eelf64lriscv_lp64.c:404 eelf64lriscv_lp64f.c:404 eelf64ltsmip.c:551
++#: eelf64ltsmip_fbsd.c:551 eelf64mmix.c:421 eelf64ppc.c:1048
++#: eelf64ppc_fbsd.c:1048 eelf64rdos.c:361 eelf64tilegx.c:336
++#: eelf64tilegx_be.c:336 eelf_i386.c:5049 eelf_i386_be.c:334
++#: eelf_i386_fbsd.c:370 eelf_i386_haiku.c:370 eelf_i386_ldso.c:345
++#: eelf_i386_sol2.c:502 eelf_i386_vxworks.c:397 eelf_iamcu.c:370
++#: eelf_k1om.c:5361 eelf_k1om_fbsd.c:370 eelf_l1om.c:5361 eelf_l1om_fbsd.c:370
++#: eelf_mipsel_haiku.c:551 eelf_s390.c:336 eelf_x86_64.c:5427
++#: eelf_x86_64_cloudabi.c:370 eelf_x86_64_fbsd.c:370 eelf_x86_64_haiku.c:370
++#: eelf_x86_64_sol2.c:502 eh8300elf.c:228 eh8300elf_linux.c:228
++#: eh8300helf.c:228 eh8300helf_linux.c:228 eh8300hnelf.c:228 eh8300self.c:228
++#: eh8300self_linux.c:228 eh8300snelf.c:228 eh8300sxelf.c:228
++#: eh8300sxelf_linux.c:228 eh8300sxnelf.c:228 ehppa64linux.c:310
++#: ehppaelf.c:496 ehppalinux.c:619 ehppanbsd.c:619 ehppaobsd.c:619
++#: ei386lynx.c:325 ei386moss.c:325 ei386nto.c:325 em32relf.c:228
++#: em32relf_linux.c:335 em32rlelf.c:228 em32rlelf_linux.c:335
++#: em68hc11elf.c:498 em68hc11elfb.c:498 em68hc12elf.c:498 em68hc12elfb.c:498
++#: em68kelf.c:493 em68kelfnbsd.c:493 emn10300.c:310 ends32belf.c:349
++#: ends32belf16m.c:349 ends32belf_linux.c:423 ends32elf.c:349
++#: ends32elf16m.c:349 ends32elf_linux.c:423 enios2elf.c:515 enios2linux.c:597
++#: epruelf.c:234 escore3_elf.c:331 escore7_elf.c:331 eshelf.c:310
++#: eshelf_fd.c:336 eshelf_linux.c:336 eshelf_nbsd.c:310 eshelf_nto.c:310
++#: eshelf_uclinux.c:310 eshelf_vxworks.c:347 eshlelf.c:310 eshlelf_fd.c:336
++#: eshlelf_linux.c:336 eshlelf_nbsd.c:310 eshlelf_nto.c:310
++#: eshlelf_vxworks.c:347 ev850.c:260 ev850_rh850.c:260
+ msgid "%F%P: invalid common page size `%s'\n"
+ msgstr "%F%P: неисправна општа величина странице „%s“\n"
+
+-#: eaarch64cloudabi.c:655 eaarch64cloudabib.c:655 eaarch64elf.c:654
+-#: eaarch64elf32.c:654 eaarch64elf32b.c:654 eaarch64elfb.c:654
+-#: eaarch64fbsd.c:655 eaarch64fbsdb.c:655 eaarch64linux.c:655
+-#: eaarch64linux32.c:655 eaarch64linux32b.c:655 eaarch64linuxb.c:655
+-#: earcelf.c:287 earclinux.c:343 earclinux_nps.c:343 earcv2elf.c:220
+-#: earcv2elfx.c:220 earmelf.c:897 earmelf_fbsd.c:897 earmelf_fuchsia.c:898
+-#: earmelf_linux.c:898 earmelf_linux_eabi.c:898 earmelf_linux_fdpiceabi.c:898
+-#: earmelf_nacl.c:898 earmelf_nbsd.c:897 earmelf_phoenix.c:898
+-#: earmelf_vxworks.c:933 earmelfb.c:897 earmelfb_fbsd.c:897
+-#: earmelfb_fuchsia.c:898 earmelfb_linux.c:898 earmelfb_linux_eabi.c:898
+-#: earmelfb_linux_fdpiceabi.c:898 earmelfb_nacl.c:898 earmelfb_nbsd.c:897
+-#: earmnto.c:872 eavr1.c:443 eavr2.c:443 eavr25.c:443 eavr3.c:443 eavr31.c:443
+-#: eavr35.c:443 eavr4.c:443 eavr5.c:443 eavr51.c:443 eavr6.c:443
+-#: eavrtiny.c:443 eavrxmega1.c:443 eavrxmega2.c:443 eavrxmega3.c:443
+-#: eavrxmega4.c:443 eavrxmega5.c:443 eavrxmega6.c:443 eavrxmega7.c:443
+-#: ecriself.c:235 ecrislinux.c:318 ecskyelf.c:479 ecskyelf_linux.c:587
+-#: ed10velf.c:220 eelf32_sparc.c:343 eelf32_sparc_sol2.c:475
+-#: eelf32_sparc_vxworks.c:380 eelf32_spu.c:817 eelf32_tic6x_be.c:454
+-#: eelf32_tic6x_elf_be.c:454 eelf32_tic6x_elf_le.c:454 eelf32_tic6x_le.c:454
+-#: eelf32_tic6x_linux_be.c:454 eelf32_tic6x_linux_le.c:454
+-#: eelf32_x86_64.c:5412 eelf32am33lin.c:317 eelf32b4300.c:558 eelf32bfin.c:335
+-#: eelf32bfinfd.c:360 eelf32bmip.c:558 eelf32bmipn32.c:572 eelf32briscv.c:415
+-#: eelf32briscv_ilp32.c:415 eelf32briscv_ilp32f.c:415 eelf32bsmip.c:572
+-#: eelf32btsmip.c:558 eelf32btsmip_fbsd.c:558 eelf32btsmipn32.c:558
+-#: eelf32btsmipn32_fbsd.c:558 eelf32cr16.c:370 eelf32crx.c:257
+-#: eelf32ebmip.c:558 eelf32ebmipvxworks.c:593 eelf32elmip.c:558
+-#: eelf32elmipvxworks.c:593 eelf32epiphany.c:235 eelf32epiphany_4x4.c:222
+-#: eelf32frvfd.c:342 eelf32ip2k.c:235 eelf32l4300.c:558 eelf32lm32.c:235
+-#: eelf32lm32fd.c:342 eelf32lmip.c:558 eelf32lppc.c:594 eelf32lppclinux.c:594
+-#: eelf32lppcnto.c:594 eelf32lppcsim.c:594 eelf32lr5900.c:476
+-#: eelf32lr5900n32.c:475 eelf32lriscv.c:415 eelf32lriscv_ilp32.c:415
+-#: eelf32lriscv_ilp32f.c:415 eelf32lsmip.c:558 eelf32ltsmip.c:558
+-#: eelf32ltsmip_fbsd.c:558 eelf32ltsmipn32.c:558 eelf32ltsmipn32_fbsd.c:558
+-#: eelf32m32c.c:246 eelf32mb_linux.c:343 eelf32mbel_linux.c:343
+-#: eelf32mcore.c:241 eelf32mep.c:220 eelf32metag.c:592 eelf32microblaze.c:220
+-#: eelf32microblazeel.c:220 eelf32mipswindiss.c:450 eelf32moxie.c:235
+-#: eelf32or1k.c:236 eelf32or1k_linux.c:343 eelf32ppc.c:594
+-#: eelf32ppc_fbsd.c:594 eelf32ppclinux.c:594 eelf32ppcnto.c:594
+-#: eelf32ppcsim.c:594 eelf32ppcvxworks.c:568 eelf32ppcwindiss.c:594
+-#: eelf32rl78.c:235 eelf32rx.c:263 eelf32rx_linux.c:248 eelf32tilegx.c:343
+-#: eelf32tilegx_be.c:343 eelf32tilepro.c:343 eelf32vax.c:317
+-#: eelf32visium.c:220 eelf32xc16x.c:220 eelf32xc16xl.c:220 eelf32xc16xs.c:220
+-#: eelf32xstormy16.c:231 eelf32xtensa.c:2264 eelf32z80.c:247 eelf64_aix.c:317
+-#: eelf64_ia64.c:374 eelf64_ia64_fbsd.c:374 eelf64_s390.c:413
+-#: eelf64_sparc.c:343 eelf64_sparc_fbsd.c:343 eelf64_sparc_sol2.c:475
+-#: eelf64alpha.c:436 eelf64alpha_fbsd.c:436 eelf64alpha_nbsd.c:436
+-#: eelf64bmip.c:572 eelf64bpf.c:220 eelf64briscv.c:415 eelf64briscv_lp64.c:415
+-#: eelf64briscv_lp64f.c:415 eelf64btsmip.c:558 eelf64btsmip_fbsd.c:558
+-#: eelf64hppa.c:287 eelf64lppc.c:1044 eelf64lppc_fbsd.c:1044
+-#: eelf64lriscv.c:415 eelf64lriscv_lp64.c:415 eelf64lriscv_lp64f.c:415
+-#: eelf64ltsmip.c:558 eelf64ltsmip_fbsd.c:558 eelf64mmix.c:428
+-#: eelf64ppc.c:1044 eelf64ppc_fbsd.c:1044 eelf64rdos.c:368 eelf64tilegx.c:343
+-#: eelf64tilegx_be.c:343 eelf_i386.c:5034 eelf_i386_be.c:341
+-#: eelf_i386_fbsd.c:377 eelf_i386_ldso.c:352 eelf_i386_sol2.c:509
+-#: eelf_i386_vxworks.c:404 eelf_iamcu.c:377 eelf_k1om.c:5368
+-#: eelf_k1om_fbsd.c:377 eelf_l1om.c:5368 eelf_l1om_fbsd.c:377 eelf_s390.c:343
+-#: eelf_x86_64.c:5412 eelf_x86_64_cloudabi.c:377 eelf_x86_64_fbsd.c:377
+-#: eelf_x86_64_sol2.c:509 eh8300elf.c:235 eh8300elf_linux.c:235
+-#: eh8300helf.c:235 eh8300helf_linux.c:235 eh8300hnelf.c:235 eh8300self.c:235
+-#: eh8300self_linux.c:235 eh8300snelf.c:235 eh8300sxelf.c:235
+-#: eh8300sxelf_linux.c:235 eh8300sxnelf.c:235 ehppa64linux.c:317
+-#: ehppaelf.c:503 ehppalinux.c:626 ehppanbsd.c:626 ehppaobsd.c:626
+-#: ei386lynx.c:332 ei386moss.c:332 ei386nto.c:332 em32relf.c:235
+-#: em32relf_linux.c:342 em32rlelf.c:235 em32rlelf_linux.c:342
+-#: em68hc11elf.c:505 em68hc11elfb.c:505 em68hc12elf.c:505 em68hc12elfb.c:505
+-#: em68kelf.c:500 em68kelfnbsd.c:500 emn10300.c:317 ends32belf.c:356
+-#: ends32belf16m.c:356 ends32belf_linux.c:430 ends32elf.c:356
+-#: ends32elf16m.c:356 ends32elf_linux.c:430 enios2elf.c:522 enios2linux.c:604
+-#: epruelf.c:241 escore3_elf.c:338 escore7_elf.c:338 eshelf.c:317
+-#: eshelf_fd.c:343 eshelf_linux.c:343 eshelf_nbsd.c:317 eshelf_nto.c:317
+-#: eshelf_uclinux.c:317 eshelf_vxworks.c:354 eshlelf.c:317 eshlelf_fd.c:343
+-#: eshlelf_linux.c:343 eshlelf_nbsd.c:317 eshlelf_nto.c:317
+-#: eshlelf_vxworks.c:354 ev850.c:267 ev850_rh850.c:267
++#: eaarch64cloudabi.c:657 eaarch64cloudabib.c:657 eaarch64elf.c:656
++#: eaarch64elf32.c:656 eaarch64elf32b.c:656 eaarch64elfb.c:656
++#: eaarch64fbsd.c:657 eaarch64fbsdb.c:657 eaarch64haiku.c:657
++#: eaarch64linux.c:657 eaarch64linux32.c:657 eaarch64linux32b.c:657
++#: eaarch64linuxb.c:657 earcelf.c:289 earclinux.c:345 earclinux_nps.c:345
++#: earcv2elf.c:222 earcv2elfx.c:222 earmelf.c:899 earmelf_fbsd.c:899
++#: earmelf_fuchsia.c:900 earmelf_haiku.c:900 earmelf_linux.c:900
++#: earmelf_linux_eabi.c:900 earmelf_linux_fdpiceabi.c:900 earmelf_nacl.c:900
++#: earmelf_nbsd.c:899 earmelf_phoenix.c:900 earmelf_vxworks.c:935
++#: earmelfb.c:899 earmelfb_fbsd.c:899 earmelfb_fuchsia.c:900
++#: earmelfb_linux.c:900 earmelfb_linux_eabi.c:900
++#: earmelfb_linux_fdpiceabi.c:900 earmelfb_nacl.c:900 earmelfb_nbsd.c:899
++#: earmnto.c:874 eavr1.c:445 eavr2.c:445 eavr25.c:445 eavr3.c:445 eavr31.c:445
++#: eavr35.c:445 eavr4.c:445 eavr5.c:445 eavr51.c:445 eavr6.c:445
++#: eavrtiny.c:445 eavrxmega1.c:445 eavrxmega2.c:445 eavrxmega3.c:445
++#: eavrxmega4.c:445 eavrxmega5.c:445 eavrxmega6.c:445 eavrxmega7.c:445
++#: ecriself.c:237 ecrislinux.c:320 ecskyelf.c:481 ecskyelf_linux.c:589
++#: ed10velf.c:222 eelf32_sparc.c:345 eelf32_sparc_sol2.c:477
++#: eelf32_sparc_vxworks.c:382 eelf32_spu.c:955 eelf32_tic6x_be.c:456
++#: eelf32_tic6x_elf_be.c:456 eelf32_tic6x_elf_le.c:456 eelf32_tic6x_le.c:456
++#: eelf32_tic6x_linux_be.c:456 eelf32_tic6x_linux_le.c:456
++#: eelf32_x86_64.c:5436 eelf32am33lin.c:319 eelf32b4300.c:560 eelf32bfin.c:337
++#: eelf32bfinfd.c:362 eelf32bmip.c:560 eelf32bmipn32.c:574 eelf32briscv.c:413
++#: eelf32briscv_ilp32.c:413 eelf32briscv_ilp32f.c:413 eelf32bsmip.c:574
++#: eelf32btsmip.c:560 eelf32btsmip_fbsd.c:560 eelf32btsmipn32.c:560
++#: eelf32btsmipn32_fbsd.c:560 eelf32cr16.c:372 eelf32crx.c:259
++#: eelf32ebmip.c:560 eelf32ebmipvxworks.c:595 eelf32elmip.c:560
++#: eelf32elmipvxworks.c:595 eelf32epiphany.c:237 eelf32epiphany_4x4.c:224
++#: eelf32frvfd.c:344 eelf32ip2k.c:237 eelf32l4300.c:560 eelf32lm32.c:237
++#: eelf32lm32fd.c:344 eelf32lmip.c:560 eelf32loongarch.c:395 eelf32lppc.c:608
++#: eelf32lppclinux.c:608 eelf32lppcnto.c:608 eelf32lppcsim.c:608
++#: eelf32lr5900.c:478 eelf32lr5900n32.c:477 eelf32lriscv.c:413
++#: eelf32lriscv_ilp32.c:413 eelf32lriscv_ilp32f.c:413 eelf32lsmip.c:560
++#: eelf32ltsmip.c:560 eelf32ltsmip_fbsd.c:560 eelf32ltsmipn32.c:560
++#: eelf32ltsmipn32_fbsd.c:560 eelf32m32c.c:248 eelf32mb_linux.c:345
++#: eelf32mbel_linux.c:345 eelf32mcore.c:243 eelf32mep.c:222 eelf32metag.c:594
++#: eelf32microblaze.c:222 eelf32microblazeel.c:222 eelf32mipswindiss.c:452
++#: eelf32moxie.c:237 eelf32or1k.c:238 eelf32or1k_linux.c:345 eelf32ppc.c:608
++#: eelf32ppc_fbsd.c:608 eelf32ppchaiku.c:608 eelf32ppclinux.c:608
++#: eelf32ppcnto.c:608 eelf32ppcsim.c:608 eelf32ppcvxworks.c:582
++#: eelf32ppcwindiss.c:608 eelf32rl78.c:237 eelf32rx.c:265 eelf32rx_linux.c:250
++#: eelf32tilegx.c:345 eelf32tilegx_be.c:345 eelf32tilepro.c:345
++#: eelf32vax.c:319 eelf32visium.c:222 eelf32xc16x.c:222 eelf32xc16xl.c:222
++#: eelf32xc16xs.c:222 eelf32xstormy16.c:233 eelf32xtensa.c:2266
++#: eelf32z80.c:249 eelf64_aix.c:319 eelf64_ia64.c:376 eelf64_ia64_fbsd.c:376
++#: eelf64_s390.c:415 eelf64_sparc.c:345 eelf64_sparc_fbsd.c:345
++#: eelf64_sparc_sol2.c:477 eelf64alpha.c:438 eelf64alpha_fbsd.c:438
++#: eelf64alpha_nbsd.c:438 eelf64bmip.c:574 eelf64bpf.c:222 eelf64briscv.c:413
++#: eelf64briscv_lp64.c:413 eelf64briscv_lp64f.c:413 eelf64btsmip.c:560
++#: eelf64btsmip_fbsd.c:560 eelf64hppa.c:289 eelf64loongarch.c:395
++#: eelf64lppc.c:1057 eelf64lppc_fbsd.c:1057 eelf64lriscv.c:413
++#: eelf64lriscv_lp64.c:413 eelf64lriscv_lp64f.c:413 eelf64ltsmip.c:560
++#: eelf64ltsmip_fbsd.c:560 eelf64mmix.c:430 eelf64ppc.c:1057
++#: eelf64ppc_fbsd.c:1057 eelf64rdos.c:370 eelf64tilegx.c:345
++#: eelf64tilegx_be.c:345 eelf_i386.c:5058 eelf_i386_be.c:343
++#: eelf_i386_fbsd.c:379 eelf_i386_haiku.c:379 eelf_i386_ldso.c:354
++#: eelf_i386_sol2.c:511 eelf_i386_vxworks.c:406 eelf_iamcu.c:379
++#: eelf_k1om.c:5370 eelf_k1om_fbsd.c:379 eelf_l1om.c:5370 eelf_l1om_fbsd.c:379
++#: eelf_mipsel_haiku.c:560 eelf_s390.c:345 eelf_x86_64.c:5436
++#: eelf_x86_64_cloudabi.c:379 eelf_x86_64_fbsd.c:379 eelf_x86_64_haiku.c:379
++#: eelf_x86_64_sol2.c:511 eh8300elf.c:237 eh8300elf_linux.c:237
++#: eh8300helf.c:237 eh8300helf_linux.c:237 eh8300hnelf.c:237 eh8300self.c:237
++#: eh8300self_linux.c:237 eh8300snelf.c:237 eh8300sxelf.c:237
++#: eh8300sxelf_linux.c:237 eh8300sxnelf.c:237 ehppa64linux.c:319
++#: ehppaelf.c:505 ehppalinux.c:628 ehppanbsd.c:628 ehppaobsd.c:628
++#: ei386lynx.c:334 ei386moss.c:334 ei386nto.c:334 em32relf.c:237
++#: em32relf_linux.c:344 em32rlelf.c:237 em32rlelf_linux.c:344
++#: em68hc11elf.c:507 em68hc11elfb.c:507 em68hc12elf.c:507 em68hc12elfb.c:507
++#: em68kelf.c:502 em68kelfnbsd.c:502 emn10300.c:319 ends32belf.c:358
++#: ends32belf16m.c:358 ends32belf_linux.c:432 ends32elf.c:358
++#: ends32elf16m.c:358 ends32elf_linux.c:432 enios2elf.c:524 enios2linux.c:606
++#: epruelf.c:243 escore3_elf.c:340 escore7_elf.c:340 eshelf.c:319
++#: eshelf_fd.c:345 eshelf_linux.c:345 eshelf_nbsd.c:319 eshelf_nto.c:319
++#: eshelf_uclinux.c:319 eshelf_vxworks.c:356 eshlelf.c:319 eshlelf_fd.c:345
++#: eshlelf_linux.c:345 eshlelf_nbsd.c:319 eshlelf_nto.c:319
++#: eshlelf_vxworks.c:356 ev850.c:269 ev850_rh850.c:269
+ msgid "%F%P: invalid stack size `%s'\n"
+ msgstr "%F%P: неисправна величина спремника „%s“\n"
+
+-#: eaarch64cloudabi.c:694 eaarch64cloudabib.c:694 eaarch64elf.c:693
+-#: eaarch64elf32.c:693 eaarch64elf32b.c:693 eaarch64elfb.c:693
+-#: eaarch64fbsd.c:694 eaarch64fbsdb.c:694 eaarch64linux.c:694
+-#: eaarch64linux32.c:694 eaarch64linux32b.c:694 eaarch64linuxb.c:694
+-#: earcelf.c:326 earclinux.c:382 earclinux_nps.c:382 earcv2elf.c:259
+-#: earcv2elfx.c:259 earmelf.c:936 earmelf_fbsd.c:936 earmelf_fuchsia.c:937
+-#: earmelf_linux.c:937 earmelf_linux_eabi.c:937 earmelf_linux_fdpiceabi.c:937
+-#: earmelf_nacl.c:937 earmelf_nbsd.c:936 earmelf_phoenix.c:937
+-#: earmelf_vxworks.c:972 earmelfb.c:936 earmelfb_fbsd.c:936
+-#: earmelfb_fuchsia.c:937 earmelfb_linux.c:937 earmelfb_linux_eabi.c:937
+-#: earmelfb_linux_fdpiceabi.c:937 earmelfb_nacl.c:937 earmelfb_nbsd.c:936
+-#: earmnto.c:911 eavr1.c:482 eavr2.c:482 eavr25.c:482 eavr3.c:482 eavr31.c:482
+-#: eavr35.c:482 eavr4.c:482 eavr5.c:482 eavr51.c:482 eavr6.c:482
+-#: eavrtiny.c:482 eavrxmega1.c:482 eavrxmega2.c:482 eavrxmega3.c:482
+-#: eavrxmega4.c:482 eavrxmega5.c:482 eavrxmega6.c:482 eavrxmega7.c:482
+-#: ecriself.c:274 ecrislinux.c:357 ecskyelf.c:518 ecskyelf_linux.c:626
+-#: ed10velf.c:259 eelf32_sparc.c:382 eelf32_sparc_sol2.c:514
+-#: eelf32_sparc_vxworks.c:419 eelf32_spu.c:856 eelf32_tic6x_be.c:493
+-#: eelf32_tic6x_elf_be.c:493 eelf32_tic6x_elf_le.c:493 eelf32_tic6x_le.c:493
+-#: eelf32_tic6x_linux_be.c:493 eelf32_tic6x_linux_le.c:493
+-#: eelf32_x86_64.c:5451 eelf32am33lin.c:356 eelf32b4300.c:597 eelf32bfin.c:374
+-#: eelf32bfinfd.c:399 eelf32bmip.c:597 eelf32bmipn32.c:611 eelf32briscv.c:454
+-#: eelf32briscv_ilp32.c:454 eelf32briscv_ilp32f.c:454 eelf32bsmip.c:611
+-#: eelf32btsmip.c:597 eelf32btsmip_fbsd.c:597 eelf32btsmipn32.c:597
+-#: eelf32btsmipn32_fbsd.c:597 eelf32cr16.c:409 eelf32crx.c:296
+-#: eelf32ebmip.c:597 eelf32ebmipvxworks.c:632 eelf32elmip.c:597
+-#: eelf32elmipvxworks.c:632 eelf32epiphany.c:274 eelf32epiphany_4x4.c:261
+-#: eelf32frvfd.c:381 eelf32ip2k.c:274 eelf32l4300.c:597 eelf32lm32.c:274
+-#: eelf32lm32fd.c:381 eelf32lmip.c:597 eelf32lppc.c:633 eelf32lppclinux.c:633
+-#: eelf32lppcnto.c:633 eelf32lppcsim.c:633 eelf32lr5900.c:515
+-#: eelf32lr5900n32.c:514 eelf32lriscv.c:454 eelf32lriscv_ilp32.c:454
+-#: eelf32lriscv_ilp32f.c:454 eelf32lsmip.c:597 eelf32ltsmip.c:597
+-#: eelf32ltsmip_fbsd.c:597 eelf32ltsmipn32.c:597 eelf32ltsmipn32_fbsd.c:597
+-#: eelf32m32c.c:285 eelf32mb_linux.c:382 eelf32mbel_linux.c:382
+-#: eelf32mcore.c:280 eelf32mep.c:259 eelf32metag.c:631 eelf32microblaze.c:259
+-#: eelf32microblazeel.c:259 eelf32mipswindiss.c:489 eelf32moxie.c:274
+-#: eelf32or1k.c:275 eelf32or1k_linux.c:382 eelf32ppc.c:633
+-#: eelf32ppc_fbsd.c:633 eelf32ppclinux.c:633 eelf32ppcnto.c:633
+-#: eelf32ppcsim.c:633 eelf32ppcvxworks.c:607 eelf32ppcwindiss.c:633
+-#: eelf32rl78.c:274 eelf32rx.c:302 eelf32rx_linux.c:287 eelf32tilegx.c:382
+-#: eelf32tilegx_be.c:382 eelf32tilepro.c:382 eelf32vax.c:356
+-#: eelf32visium.c:259 eelf32xc16x.c:259 eelf32xc16xl.c:259 eelf32xc16xs.c:259
+-#: eelf32xstormy16.c:270 eelf32xtensa.c:2303 eelf32z80.c:286 eelf64_aix.c:356
+-#: eelf64_ia64.c:413 eelf64_ia64_fbsd.c:413 eelf64_s390.c:452
+-#: eelf64_sparc.c:382 eelf64_sparc_fbsd.c:382 eelf64_sparc_sol2.c:514
+-#: eelf64alpha.c:475 eelf64alpha_fbsd.c:475 eelf64alpha_nbsd.c:475
+-#: eelf64bmip.c:611 eelf64bpf.c:259 eelf64briscv.c:454 eelf64briscv_lp64.c:454
+-#: eelf64briscv_lp64f.c:454 eelf64btsmip.c:597 eelf64btsmip_fbsd.c:597
+-#: eelf64hppa.c:326 eelf64lppc.c:1083 eelf64lppc_fbsd.c:1083
+-#: eelf64lriscv.c:454 eelf64lriscv_lp64.c:454 eelf64lriscv_lp64f.c:454
+-#: eelf64ltsmip.c:597 eelf64ltsmip_fbsd.c:597 eelf64mmix.c:467
+-#: eelf64ppc.c:1083 eelf64ppc_fbsd.c:1083 eelf64rdos.c:407 eelf64tilegx.c:382
+-#: eelf64tilegx_be.c:382 eelf_i386.c:5073 eelf_i386_be.c:380
+-#: eelf_i386_fbsd.c:416 eelf_i386_ldso.c:391 eelf_i386_sol2.c:548
+-#: eelf_i386_vxworks.c:443 eelf_iamcu.c:416 eelf_k1om.c:5407
+-#: eelf_k1om_fbsd.c:416 eelf_l1om.c:5407 eelf_l1om_fbsd.c:416 eelf_s390.c:382
+-#: eelf_x86_64.c:5451 eelf_x86_64_cloudabi.c:416 eelf_x86_64_fbsd.c:416
+-#: eelf_x86_64_sol2.c:548 eh8300elf.c:274 eh8300elf_linux.c:274
+-#: eh8300helf.c:274 eh8300helf_linux.c:274 eh8300hnelf.c:274 eh8300self.c:274
+-#: eh8300self_linux.c:274 eh8300snelf.c:274 eh8300sxelf.c:274
+-#: eh8300sxelf_linux.c:274 eh8300sxnelf.c:274 ehppa64linux.c:356
+-#: ehppaelf.c:542 ehppalinux.c:665 ehppanbsd.c:665 ehppaobsd.c:665
+-#: ei386lynx.c:371 ei386moss.c:371 ei386nto.c:371 em32relf.c:274
+-#: em32relf_linux.c:381 em32rlelf.c:274 em32rlelf_linux.c:381
+-#: em68hc11elf.c:544 em68hc11elfb.c:544 em68hc12elf.c:544 em68hc12elfb.c:544
+-#: em68kelf.c:539 em68kelfnbsd.c:539 emn10300.c:356 ends32belf.c:395
+-#: ends32belf16m.c:395 ends32belf_linux.c:469 ends32elf.c:395
+-#: ends32elf16m.c:395 ends32elf_linux.c:469 enios2elf.c:561 enios2linux.c:643
+-#: epruelf.c:280 escore3_elf.c:377 escore7_elf.c:377 eshelf.c:356
+-#: eshelf_fd.c:382 eshelf_linux.c:382 eshelf_nbsd.c:356 eshelf_nto.c:356
+-#: eshelf_uclinux.c:356 eshelf_vxworks.c:393 eshlelf.c:356 eshlelf_fd.c:382
+-#: eshlelf_linux.c:382 eshlelf_nbsd.c:356 eshlelf_nto.c:356
+-#: eshlelf_vxworks.c:393 ev850.c:306 ev850_rh850.c:306
++#: eaarch64cloudabi.c:696 eaarch64cloudabib.c:696 eaarch64elf.c:695
++#: eaarch64elf32.c:695 eaarch64elf32b.c:695 eaarch64elfb.c:695
++#: eaarch64fbsd.c:696 eaarch64fbsdb.c:696 eaarch64haiku.c:696
++#: eaarch64linux.c:696 eaarch64linux32.c:696 eaarch64linux32b.c:696
++#: eaarch64linuxb.c:696 earcelf.c:328 earclinux.c:384 earclinux_nps.c:384
++#: earcv2elf.c:261 earcv2elfx.c:261 earmelf.c:938 earmelf_fbsd.c:938
++#: earmelf_fuchsia.c:939 earmelf_haiku.c:939 earmelf_linux.c:939
++#: earmelf_linux_eabi.c:939 earmelf_linux_fdpiceabi.c:939 earmelf_nacl.c:939
++#: earmelf_nbsd.c:938 earmelf_phoenix.c:939 earmelf_vxworks.c:974
++#: earmelfb.c:938 earmelfb_fbsd.c:938 earmelfb_fuchsia.c:939
++#: earmelfb_linux.c:939 earmelfb_linux_eabi.c:939
++#: earmelfb_linux_fdpiceabi.c:939 earmelfb_nacl.c:939 earmelfb_nbsd.c:938
++#: earmnto.c:913 eavr1.c:484 eavr2.c:484 eavr25.c:484 eavr3.c:484 eavr31.c:484
++#: eavr35.c:484 eavr4.c:484 eavr5.c:484 eavr51.c:484 eavr6.c:484
++#: eavrtiny.c:484 eavrxmega1.c:484 eavrxmega2.c:484 eavrxmega3.c:484
++#: eavrxmega4.c:484 eavrxmega5.c:484 eavrxmega6.c:484 eavrxmega7.c:484
++#: ecriself.c:276 ecrislinux.c:359 ecskyelf.c:520 ecskyelf_linux.c:628
++#: ed10velf.c:261 eelf32_sparc.c:384 eelf32_sparc_sol2.c:516
++#: eelf32_sparc_vxworks.c:421 eelf32_spu.c:994 eelf32_tic6x_be.c:495
++#: eelf32_tic6x_elf_be.c:495 eelf32_tic6x_elf_le.c:495 eelf32_tic6x_le.c:495
++#: eelf32_tic6x_linux_be.c:495 eelf32_tic6x_linux_le.c:495
++#: eelf32_x86_64.c:5475 eelf32am33lin.c:358 eelf32b4300.c:599 eelf32bfin.c:376
++#: eelf32bfinfd.c:401 eelf32bmip.c:599 eelf32bmipn32.c:613 eelf32briscv.c:452
++#: eelf32briscv_ilp32.c:452 eelf32briscv_ilp32f.c:452 eelf32bsmip.c:613
++#: eelf32btsmip.c:599 eelf32btsmip_fbsd.c:599 eelf32btsmipn32.c:599
++#: eelf32btsmipn32_fbsd.c:599 eelf32cr16.c:411 eelf32crx.c:298
++#: eelf32ebmip.c:599 eelf32ebmipvxworks.c:634 eelf32elmip.c:599
++#: eelf32elmipvxworks.c:634 eelf32epiphany.c:276 eelf32epiphany_4x4.c:263
++#: eelf32frvfd.c:383 eelf32ip2k.c:276 eelf32l4300.c:599 eelf32lm32.c:276
++#: eelf32lm32fd.c:383 eelf32lmip.c:599 eelf32loongarch.c:434 eelf32lppc.c:647
++#: eelf32lppclinux.c:647 eelf32lppcnto.c:647 eelf32lppcsim.c:647
++#: eelf32lr5900.c:517 eelf32lr5900n32.c:516 eelf32lriscv.c:452
++#: eelf32lriscv_ilp32.c:452 eelf32lriscv_ilp32f.c:452 eelf32lsmip.c:599
++#: eelf32ltsmip.c:599 eelf32ltsmip_fbsd.c:599 eelf32ltsmipn32.c:599
++#: eelf32ltsmipn32_fbsd.c:599 eelf32m32c.c:287 eelf32mb_linux.c:384
++#: eelf32mbel_linux.c:384 eelf32mcore.c:282 eelf32mep.c:261 eelf32metag.c:633
++#: eelf32microblaze.c:261 eelf32microblazeel.c:261 eelf32mipswindiss.c:491
++#: eelf32moxie.c:276 eelf32or1k.c:277 eelf32or1k_linux.c:384 eelf32ppc.c:647
++#: eelf32ppc_fbsd.c:647 eelf32ppchaiku.c:647 eelf32ppclinux.c:647
++#: eelf32ppcnto.c:647 eelf32ppcsim.c:647 eelf32ppcvxworks.c:621
++#: eelf32ppcwindiss.c:647 eelf32rl78.c:276 eelf32rx.c:304 eelf32rx_linux.c:289
++#: eelf32tilegx.c:384 eelf32tilegx_be.c:384 eelf32tilepro.c:384
++#: eelf32vax.c:358 eelf32visium.c:261 eelf32xc16x.c:261 eelf32xc16xl.c:261
++#: eelf32xc16xs.c:261 eelf32xstormy16.c:272 eelf32xtensa.c:2305
++#: eelf32z80.c:288 eelf64_aix.c:358 eelf64_ia64.c:415 eelf64_ia64_fbsd.c:415
++#: eelf64_s390.c:454 eelf64_sparc.c:384 eelf64_sparc_fbsd.c:384
++#: eelf64_sparc_sol2.c:516 eelf64alpha.c:477 eelf64alpha_fbsd.c:477
++#: eelf64alpha_nbsd.c:477 eelf64bmip.c:613 eelf64bpf.c:261 eelf64briscv.c:452
++#: eelf64briscv_lp64.c:452 eelf64briscv_lp64f.c:452 eelf64btsmip.c:599
++#: eelf64btsmip_fbsd.c:599 eelf64hppa.c:328 eelf64loongarch.c:434
++#: eelf64lppc.c:1096 eelf64lppc_fbsd.c:1096 eelf64lriscv.c:452
++#: eelf64lriscv_lp64.c:452 eelf64lriscv_lp64f.c:452 eelf64ltsmip.c:599
++#: eelf64ltsmip_fbsd.c:599 eelf64mmix.c:469 eelf64ppc.c:1096
++#: eelf64ppc_fbsd.c:1096 eelf64rdos.c:409 eelf64tilegx.c:384
++#: eelf64tilegx_be.c:384 eelf_i386.c:5097 eelf_i386_be.c:382
++#: eelf_i386_fbsd.c:418 eelf_i386_haiku.c:418 eelf_i386_ldso.c:393
++#: eelf_i386_sol2.c:550 eelf_i386_vxworks.c:445 eelf_iamcu.c:418
++#: eelf_k1om.c:5409 eelf_k1om_fbsd.c:418 eelf_l1om.c:5409 eelf_l1om_fbsd.c:418
++#: eelf_mipsel_haiku.c:599 eelf_s390.c:384 eelf_x86_64.c:5475
++#: eelf_x86_64_cloudabi.c:418 eelf_x86_64_fbsd.c:418 eelf_x86_64_haiku.c:418
++#: eelf_x86_64_sol2.c:550 eh8300elf.c:276 eh8300elf_linux.c:276
++#: eh8300helf.c:276 eh8300helf_linux.c:276 eh8300hnelf.c:276 eh8300self.c:276
++#: eh8300self_linux.c:276 eh8300snelf.c:276 eh8300sxelf.c:276
++#: eh8300sxelf_linux.c:276 eh8300sxnelf.c:276 ehppa64linux.c:358
++#: ehppaelf.c:544 ehppalinux.c:667 ehppanbsd.c:667 ehppaobsd.c:667
++#: ei386lynx.c:373 ei386moss.c:373 ei386nto.c:373 em32relf.c:276
++#: em32relf_linux.c:383 em32rlelf.c:276 em32rlelf_linux.c:383
++#: em68hc11elf.c:546 em68hc11elfb.c:546 em68hc12elf.c:546 em68hc12elfb.c:546
++#: em68kelf.c:541 em68kelfnbsd.c:541 emn10300.c:358 ends32belf.c:397
++#: ends32belf16m.c:397 ends32belf_linux.c:471 ends32elf.c:397
++#: ends32elf16m.c:397 ends32elf_linux.c:471 enios2elf.c:563 enios2linux.c:645
++#: epruelf.c:282 escore3_elf.c:379 escore7_elf.c:379 eshelf.c:358
++#: eshelf_fd.c:384 eshelf_linux.c:384 eshelf_nbsd.c:358 eshelf_nto.c:358
++#: eshelf_uclinux.c:358 eshelf_vxworks.c:395 eshlelf.c:358 eshlelf_fd.c:384
++#: eshlelf_linux.c:384 eshlelf_nbsd.c:358 eshlelf_nto.c:358
++#: eshlelf_vxworks.c:395 ev850.c:308 ev850_rh850.c:308
+ msgid "%F%P: invalid visibility in `-z %s'; must be default, internal, hidden, or protected"
+ msgstr "%F%P: неисправна видљивост у „-z %s“; мора бити основна, унутрашња, скривена или заштићена"
+
+-#: eaarch64cloudabi.c:767 eaarch64cloudabib.c:767 eaarch64elf.c:762
+-#: eaarch64elf32.c:762 eaarch64elf32b.c:762 eaarch64elfb.c:762
+-#: eaarch64fbsd.c:767 eaarch64fbsdb.c:767 eaarch64linux.c:767
+-#: eaarch64linux32.c:767 eaarch64linux32b.c:767 eaarch64linuxb.c:767
+-#: earcelf.c:386 earclinux.c:446 earclinux_nps.c:446 earcv2elf.c:264
+-#: earcv2elfx.c:264 earmelf.c:996 earmelf_fbsd.c:996 earmelf_fuchsia.c:1001
+-#: earmelf_linux.c:1001 earmelf_linux_eabi.c:1001
+-#: earmelf_linux_fdpiceabi.c:1001 earmelf_nacl.c:1001 earmelf_nbsd.c:996
+-#: earmelf_phoenix.c:1001 earmelf_vxworks.c:1032 earmelfb.c:996
+-#: earmelfb_fbsd.c:996 earmelfb_fuchsia.c:1001 earmelfb_linux.c:1001
+-#: earmelfb_linux_eabi.c:1001 earmelfb_linux_fdpiceabi.c:1001
+-#: earmelfb_nacl.c:1001 earmelfb_nbsd.c:996 earmnto.c:971 eavr1.c:487
+-#: eavr2.c:487 eavr25.c:487 eavr3.c:487 eavr31.c:487 eavr35.c:487 eavr4.c:487
+-#: eavr5.c:487 eavr51.c:487 eavr6.c:487 eavrtiny.c:487 eavrxmega1.c:487
+-#: eavrxmega2.c:487 eavrxmega3.c:487 eavrxmega4.c:487 eavrxmega5.c:487
+-#: eavrxmega6.c:487 eavrxmega7.c:487 ecriself.c:279 ecrislinux.c:421
+-#: ecskyelf.c:523 ecskyelf_linux.c:690 ed10velf.c:264 eelf32_sparc.c:446
+-#: eelf32_sparc_sol2.c:578 eelf32_sparc_vxworks.c:483 eelf32_spu.c:861
+-#: eelf32_tic6x_be.c:553 eelf32_tic6x_elf_be.c:553 eelf32_tic6x_elf_le.c:553
+-#: eelf32_tic6x_le.c:553 eelf32_tic6x_linux_be.c:553
+-#: eelf32_tic6x_linux_le.c:553 eelf32_x86_64.c:5598 eelf32am33lin.c:416
+-#: eelf32b4300.c:661 eelf32bfin.c:434 eelf32bfinfd.c:459 eelf32bmip.c:661
+-#: eelf32bmipn32.c:675 eelf32briscv.c:518 eelf32briscv_ilp32.c:518
+-#: eelf32briscv_ilp32f.c:518 eelf32bsmip.c:675 eelf32btsmip.c:661
+-#: eelf32btsmip_fbsd.c:661 eelf32btsmipn32.c:661 eelf32btsmipn32_fbsd.c:661
+-#: eelf32cr16.c:414 eelf32crx.c:301 eelf32ebmip.c:661 eelf32ebmipvxworks.c:696
+-#: eelf32elmip.c:661 eelf32elmipvxworks.c:696 eelf32epiphany.c:279
+-#: eelf32epiphany_4x4.c:266 eelf32frvfd.c:441 eelf32ip2k.c:279
+-#: eelf32l4300.c:661 eelf32lm32.c:279 eelf32lm32fd.c:441 eelf32lmip.c:661
+-#: eelf32lppc.c:703 eelf32lppclinux.c:703 eelf32lppcnto.c:703
+-#: eelf32lppcsim.c:703 eelf32lr5900.c:520 eelf32lr5900n32.c:519
+-#: eelf32lriscv.c:518 eelf32lriscv_ilp32.c:518 eelf32lriscv_ilp32f.c:518
+-#: eelf32lsmip.c:661 eelf32ltsmip.c:661 eelf32ltsmip_fbsd.c:661
+-#: eelf32ltsmipn32.c:661 eelf32ltsmipn32_fbsd.c:661 eelf32m32c.c:290
+-#: eelf32mb_linux.c:446 eelf32mbel_linux.c:446 eelf32mcore.c:285
+-#: eelf32mep.c:264 eelf32metag.c:695 eelf32microblaze.c:264
+-#: eelf32microblazeel.c:264 eelf32mipswindiss.c:494 eelf32moxie.c:279
+-#: eelf32or1k.c:280 eelf32or1k_linux.c:446 eelf32ppc.c:703
+-#: eelf32ppc_fbsd.c:703 eelf32ppclinux.c:703 eelf32ppcnto.c:703
+-#: eelf32ppcsim.c:703 eelf32ppcvxworks.c:677 eelf32ppcwindiss.c:703
+-#: eelf32rl78.c:279 eelf32rx.c:307 eelf32rx_linux.c:292 eelf32tilegx.c:446
+-#: eelf32tilegx_be.c:446 eelf32tilepro.c:446 eelf32vax.c:416
+-#: eelf32visium.c:264 eelf32xc16x.c:264 eelf32xc16xl.c:264 eelf32xc16xs.c:264
+-#: eelf32xstormy16.c:275 eelf32xtensa.c:2367 eelf32z80.c:291 eelf64_aix.c:416
+-#: eelf64_ia64.c:473 eelf64_ia64_fbsd.c:473 eelf64_s390.c:516
+-#: eelf64_sparc.c:446 eelf64_sparc_fbsd.c:446 eelf64_sparc_sol2.c:578
+-#: eelf64alpha.c:539 eelf64alpha_fbsd.c:539 eelf64alpha_nbsd.c:539
+-#: eelf64bmip.c:675 eelf64bpf.c:264 eelf64briscv.c:518 eelf64briscv_lp64.c:518
+-#: eelf64briscv_lp64f.c:518 eelf64btsmip.c:661 eelf64btsmip_fbsd.c:661
+-#: eelf64hppa.c:386 eelf64lppc.c:1153 eelf64lppc_fbsd.c:1153
+-#: eelf64lriscv.c:518 eelf64lriscv_lp64.c:518 eelf64lriscv_lp64f.c:518
+-#: eelf64ltsmip.c:661 eelf64ltsmip_fbsd.c:661 eelf64mmix.c:527
+-#: eelf64ppc.c:1153 eelf64ppc_fbsd.c:1153 eelf64rdos.c:471 eelf64tilegx.c:446
+-#: eelf64tilegx_be.c:446 eelf_i386.c:5217 eelf_i386_be.c:483
+-#: eelf_i386_fbsd.c:560 eelf_i386_ldso.c:498 eelf_i386_sol2.c:655
+-#: eelf_i386_vxworks.c:550 eelf_iamcu.c:523 eelf_k1om.c:5514
+-#: eelf_k1om_fbsd.c:523 eelf_l1om.c:5514 eelf_l1om_fbsd.c:523 eelf_s390.c:446
+-#: eelf_x86_64.c:5651 eelf_x86_64_cloudabi.c:616 eelf_x86_64_fbsd.c:616
+-#: eelf_x86_64_sol2.c:748 eh8300elf.c:279 eh8300elf_linux.c:279
+-#: eh8300helf.c:279 eh8300helf_linux.c:279 eh8300hnelf.c:279 eh8300self.c:279
+-#: eh8300self_linux.c:279 eh8300snelf.c:279 eh8300sxelf.c:279
+-#: eh8300sxelf_linux.c:279 eh8300sxnelf.c:279 ehppa64linux.c:416
+-#: ehppaelf.c:547 ehppalinux.c:729 ehppanbsd.c:729 ehppaobsd.c:729
+-#: ei386lynx.c:431 ei386moss.c:431 ei386nto.c:431 em32relf.c:279
+-#: em32relf_linux.c:441 em32rlelf.c:279 em32rlelf_linux.c:441
+-#: em68hc11elf.c:549 em68hc11elfb.c:549 em68hc12elf.c:549 em68hc12elfb.c:549
+-#: em68kelf.c:603 em68kelfnbsd.c:603 emn10300.c:416 ends32belf.c:400
+-#: ends32belf16m.c:400 ends32belf_linux.c:533 ends32elf.c:400
+-#: ends32elf16m.c:400 ends32elf_linux.c:533 enios2elf.c:566 enios2linux.c:707
+-#: epruelf.c:285 escore3_elf.c:437 escore7_elf.c:437 eshelf.c:416
+-#: eshelf_fd.c:446 eshelf_linux.c:446 eshelf_nbsd.c:416 eshelf_nto.c:416
+-#: eshelf_uclinux.c:416 eshelf_vxworks.c:453 eshlelf.c:416 eshlelf_fd.c:446
+-#: eshlelf_linux.c:446 eshlelf_nbsd.c:416 eshlelf_nto.c:416
+-#: eshlelf_vxworks.c:453 ev850.c:311 ev850_rh850.c:311
++#: eaarch64cloudabi.c:769 eaarch64cloudabib.c:769 eaarch64elf.c:764
++#: eaarch64elf32.c:764 eaarch64elf32b.c:764 eaarch64elfb.c:764
++#: eaarch64fbsd.c:769 eaarch64fbsdb.c:769 eaarch64haiku.c:769
++#: eaarch64linux.c:769 eaarch64linux32.c:769 eaarch64linux32b.c:769
++#: eaarch64linuxb.c:769 earcelf.c:388 earclinux.c:448 earclinux_nps.c:448
++#: earcv2elf.c:266 earcv2elfx.c:266 earmelf.c:998 earmelf_fbsd.c:998
++#: earmelf_fuchsia.c:1003 earmelf_haiku.c:1003 earmelf_linux.c:1003
++#: earmelf_linux_eabi.c:1003 earmelf_linux_fdpiceabi.c:1003
++#: earmelf_nacl.c:1003 earmelf_nbsd.c:998 earmelf_phoenix.c:1003
++#: earmelf_vxworks.c:1034 earmelfb.c:998 earmelfb_fbsd.c:998
++#: earmelfb_fuchsia.c:1003 earmelfb_linux.c:1003 earmelfb_linux_eabi.c:1003
++#: earmelfb_linux_fdpiceabi.c:1003 earmelfb_nacl.c:1003 earmelfb_nbsd.c:998
++#: earmnto.c:973 eavr1.c:489 eavr2.c:489 eavr25.c:489 eavr3.c:489 eavr31.c:489
++#: eavr35.c:489 eavr4.c:489 eavr5.c:489 eavr51.c:489 eavr6.c:489
++#: eavrtiny.c:489 eavrxmega1.c:489 eavrxmega2.c:489 eavrxmega3.c:489
++#: eavrxmega4.c:489 eavrxmega5.c:489 eavrxmega6.c:489 eavrxmega7.c:489
++#: ecriself.c:281 ecrislinux.c:423 ecskyelf.c:525 ecskyelf_linux.c:692
++#: ed10velf.c:266 eelf32_sparc.c:448 eelf32_sparc_sol2.c:580
++#: eelf32_sparc_vxworks.c:485 eelf32_spu.c:999 eelf32_tic6x_be.c:555
++#: eelf32_tic6x_elf_be.c:555 eelf32_tic6x_elf_le.c:555 eelf32_tic6x_le.c:555
++#: eelf32_tic6x_linux_be.c:555 eelf32_tic6x_linux_le.c:555
++#: eelf32_x86_64.c:5631 eelf32am33lin.c:418 eelf32b4300.c:663 eelf32bfin.c:436
++#: eelf32bfinfd.c:461 eelf32bmip.c:663 eelf32bmipn32.c:677 eelf32briscv.c:516
++#: eelf32briscv_ilp32.c:516 eelf32briscv_ilp32f.c:516 eelf32bsmip.c:677
++#: eelf32btsmip.c:663 eelf32btsmip_fbsd.c:663 eelf32btsmipn32.c:663
++#: eelf32btsmipn32_fbsd.c:663 eelf32cr16.c:416 eelf32crx.c:303
++#: eelf32ebmip.c:663 eelf32ebmipvxworks.c:698 eelf32elmip.c:663
++#: eelf32elmipvxworks.c:698 eelf32epiphany.c:281 eelf32epiphany_4x4.c:268
++#: eelf32frvfd.c:443 eelf32ip2k.c:281 eelf32l4300.c:663 eelf32lm32.c:281
++#: eelf32lm32fd.c:443 eelf32lmip.c:663 eelf32loongarch.c:498 eelf32lppc.c:717
++#: eelf32lppclinux.c:717 eelf32lppcnto.c:717 eelf32lppcsim.c:717
++#: eelf32lr5900.c:522 eelf32lr5900n32.c:521 eelf32lriscv.c:516
++#: eelf32lriscv_ilp32.c:516 eelf32lriscv_ilp32f.c:516 eelf32lsmip.c:663
++#: eelf32ltsmip.c:663 eelf32ltsmip_fbsd.c:663 eelf32ltsmipn32.c:663
++#: eelf32ltsmipn32_fbsd.c:663 eelf32m32c.c:292 eelf32mb_linux.c:448
++#: eelf32mbel_linux.c:448 eelf32mcore.c:287 eelf32mep.c:266 eelf32metag.c:697
++#: eelf32microblaze.c:266 eelf32microblazeel.c:266 eelf32mipswindiss.c:496
++#: eelf32moxie.c:281 eelf32or1k.c:282 eelf32or1k_linux.c:448 eelf32ppc.c:717
++#: eelf32ppc_fbsd.c:717 eelf32ppchaiku.c:717 eelf32ppclinux.c:717
++#: eelf32ppcnto.c:717 eelf32ppcsim.c:717 eelf32ppcvxworks.c:691
++#: eelf32ppcwindiss.c:717 eelf32rl78.c:281 eelf32rx.c:309 eelf32rx_linux.c:294
++#: eelf32tilegx.c:448 eelf32tilegx_be.c:448 eelf32tilepro.c:448
++#: eelf32vax.c:418 eelf32visium.c:266 eelf32xc16x.c:266 eelf32xc16xl.c:266
++#: eelf32xc16xs.c:266 eelf32xstormy16.c:277 eelf32xtensa.c:2369
++#: eelf32z80.c:293 eelf64_aix.c:418 eelf64_ia64.c:475 eelf64_ia64_fbsd.c:475
++#: eelf64_s390.c:518 eelf64_sparc.c:448 eelf64_sparc_fbsd.c:448
++#: eelf64_sparc_sol2.c:580 eelf64alpha.c:541 eelf64alpha_fbsd.c:541
++#: eelf64alpha_nbsd.c:541 eelf64bmip.c:677 eelf64bpf.c:266 eelf64briscv.c:516
++#: eelf64briscv_lp64.c:516 eelf64briscv_lp64f.c:516 eelf64btsmip.c:663
++#: eelf64btsmip_fbsd.c:663 eelf64hppa.c:388 eelf64loongarch.c:498
++#: eelf64lppc.c:1171 eelf64lppc_fbsd.c:1171 eelf64lriscv.c:516
++#: eelf64lriscv_lp64.c:516 eelf64lriscv_lp64f.c:516 eelf64ltsmip.c:663
++#: eelf64ltsmip_fbsd.c:663 eelf64mmix.c:529 eelf64ppc.c:1171
++#: eelf64ppc_fbsd.c:1171 eelf64rdos.c:473 eelf64tilegx.c:448
++#: eelf64tilegx_be.c:448 eelf_i386.c:5250 eelf_i386_be.c:489
++#: eelf_i386_fbsd.c:571 eelf_i386_haiku.c:571 eelf_i386_ldso.c:504
++#: eelf_i386_sol2.c:661 eelf_i386_vxworks.c:556 eelf_iamcu.c:529
++#: eelf_k1om.c:5520 eelf_k1om_fbsd.c:529 eelf_l1om.c:5520 eelf_l1om_fbsd.c:529
++#: eelf_mipsel_haiku.c:663 eelf_s390.c:448 eelf_x86_64.c:5684
++#: eelf_x86_64_cloudabi.c:627 eelf_x86_64_fbsd.c:627 eelf_x86_64_haiku.c:627
++#: eelf_x86_64_sol2.c:759 eh8300elf.c:281 eh8300elf_linux.c:281
++#: eh8300helf.c:281 eh8300helf_linux.c:281 eh8300hnelf.c:281 eh8300self.c:281
++#: eh8300self_linux.c:281 eh8300snelf.c:281 eh8300sxelf.c:281
++#: eh8300sxelf_linux.c:281 eh8300sxnelf.c:281 ehppa64linux.c:418
++#: ehppaelf.c:549 ehppalinux.c:731 ehppanbsd.c:731 ehppaobsd.c:731
++#: ei386lynx.c:433 ei386moss.c:433 ei386nto.c:433 em32relf.c:281
++#: em32relf_linux.c:443 em32rlelf.c:281 em32rlelf_linux.c:443
++#: em68hc11elf.c:551 em68hc11elfb.c:551 em68hc12elf.c:551 em68hc12elfb.c:551
++#: em68kelf.c:605 em68kelfnbsd.c:605 emn10300.c:418 ends32belf.c:402
++#: ends32belf16m.c:402 ends32belf_linux.c:535 ends32elf.c:402
++#: ends32elf16m.c:402 ends32elf_linux.c:535 enios2elf.c:568 enios2linux.c:709
++#: epruelf.c:287 escore3_elf.c:439 escore7_elf.c:439 eshelf.c:418
++#: eshelf_fd.c:448 eshelf_linux.c:448 eshelf_nbsd.c:418 eshelf_nto.c:418
++#: eshelf_uclinux.c:418 eshelf_vxworks.c:455 eshlelf.c:418 eshlelf_fd.c:448
++#: eshlelf_linux.c:448 eshlelf_nbsd.c:418 eshlelf_nto.c:418
++#: eshlelf_vxworks.c:455 ev850.c:313 ev850_rh850.c:313
+ msgid "%P: warning: -z %s ignored\n"
+ msgstr "%P: упозорење: „-z %s“ је занемарено\n"
+
+-#: eaarch64cloudabi.c:801 eaarch64cloudabib.c:801 eaarch64elf.c:796
+-#: eaarch64elf32.c:796 eaarch64elf32b.c:796 eaarch64elfb.c:796
+-#: eaarch64fbsd.c:801 eaarch64fbsdb.c:801 eaarch64linux.c:801
+-#: eaarch64linux32.c:801 eaarch64linux32b.c:801 eaarch64linuxb.c:801
++#: eaarch64cloudabi.c:803 eaarch64cloudabib.c:803 eaarch64elf.c:798
++#: eaarch64elf32.c:798 eaarch64elf32b.c:798 eaarch64elfb.c:798
++#: eaarch64fbsd.c:803 eaarch64fbsdb.c:803 eaarch64haiku.c:803
++#: eaarch64linux.c:803 eaarch64linux32.c:803 eaarch64linux32b.c:803
++#: eaarch64linuxb.c:803
+ msgid "%P: error: unrecognized option for --fix-cortex-a53-843419: %s\n"
+ msgstr "%P: грешка: непозната опција за „--fix-cortex-a53-843419“: %s\n"
+
+-#: eaarch64cloudabi.c:830 eaarch64cloudabib.c:830 eaarch64elf.c:825
+-#: eaarch64elf32.c:825 eaarch64elf32b.c:825 eaarch64elfb.c:825
+-#: eaarch64fbsd.c:830 eaarch64fbsdb.c:830 eaarch64linux.c:830
+-#: eaarch64linux32.c:830 eaarch64linux32b.c:830 eaarch64linuxb.c:830
+-#: earmelf.c:1133 earmelf_fbsd.c:1133 earmelf_fuchsia.c:1138
+-#: earmelf_linux.c:1138 earmelf_linux_eabi.c:1138
+-#: earmelf_linux_fdpiceabi.c:1138 earmelf_nacl.c:1138 earmelf_nbsd.c:1133
+-#: earmelf_phoenix.c:1138 earmelf_vxworks.c:1173 earmelfb.c:1133
+-#: earmelfb_fbsd.c:1133 earmelfb_fuchsia.c:1138 earmelfb_linux.c:1138
+-#: earmelfb_linux_eabi.c:1138 earmelfb_linux_fdpiceabi.c:1138
+-#: earmelfb_nacl.c:1138 earmelfb_nbsd.c:1133 earmnto.c:1108
++#: eaarch64cloudabi.c:832 eaarch64cloudabib.c:832 eaarch64elf.c:827
++#: eaarch64elf32.c:827 eaarch64elf32b.c:827 eaarch64elfb.c:827
++#: eaarch64fbsd.c:832 eaarch64fbsdb.c:832 eaarch64haiku.c:832
++#: eaarch64linux.c:832 eaarch64linux32.c:832 eaarch64linux32b.c:832
++#: eaarch64linuxb.c:832 earmelf.c:1135 earmelf_fbsd.c:1135
++#: earmelf_fuchsia.c:1140 earmelf_haiku.c:1140 earmelf_linux.c:1140
++#: earmelf_linux_eabi.c:1140 earmelf_linux_fdpiceabi.c:1140
++#: earmelf_nacl.c:1140 earmelf_nbsd.c:1135 earmelf_phoenix.c:1140
++#: earmelf_vxworks.c:1175 earmelfb.c:1135 earmelfb_fbsd.c:1135
++#: earmelfb_fuchsia.c:1140 earmelfb_linux.c:1140 earmelfb_linux_eabi.c:1140
++#: earmelfb_linux_fdpiceabi.c:1140 earmelfb_nacl.c:1140 earmelfb_nbsd.c:1135
++#: earmnto.c:1110
+ #, c-format
+ msgid ""
+ " --no-enum-size-warning Don't warn about objects with incompatible\n"
+@@ -3521,17 +3564,18 @@ msgstr ""
+ " --no-enum-size-warning Не упозорава о објектима са несагласним\n"
+ " величинама набрајања\n"
+
+-#: eaarch64cloudabi.c:832 eaarch64cloudabib.c:832 eaarch64elf.c:827
+-#: eaarch64elf32.c:827 eaarch64elf32b.c:827 eaarch64elfb.c:827
+-#: eaarch64fbsd.c:832 eaarch64fbsdb.c:832 eaarch64linux.c:832
+-#: eaarch64linux32.c:832 eaarch64linux32b.c:832 eaarch64linuxb.c:832
+-#: earmelf.c:1135 earmelf_fbsd.c:1135 earmelf_fuchsia.c:1140
+-#: earmelf_linux.c:1140 earmelf_linux_eabi.c:1140
+-#: earmelf_linux_fdpiceabi.c:1140 earmelf_nacl.c:1140 earmelf_nbsd.c:1135
+-#: earmelf_phoenix.c:1140 earmelf_vxworks.c:1175 earmelfb.c:1135
+-#: earmelfb_fbsd.c:1135 earmelfb_fuchsia.c:1140 earmelfb_linux.c:1140
+-#: earmelfb_linux_eabi.c:1140 earmelfb_linux_fdpiceabi.c:1140
+-#: earmelfb_nacl.c:1140 earmelfb_nbsd.c:1135 earmnto.c:1110
++#: eaarch64cloudabi.c:834 eaarch64cloudabib.c:834 eaarch64elf.c:829
++#: eaarch64elf32.c:829 eaarch64elf32b.c:829 eaarch64elfb.c:829
++#: eaarch64fbsd.c:834 eaarch64fbsdb.c:834 eaarch64haiku.c:834
++#: eaarch64linux.c:834 eaarch64linux32.c:834 eaarch64linux32b.c:834
++#: eaarch64linuxb.c:834 earmelf.c:1137 earmelf_fbsd.c:1137
++#: earmelf_fuchsia.c:1142 earmelf_haiku.c:1142 earmelf_linux.c:1142
++#: earmelf_linux_eabi.c:1142 earmelf_linux_fdpiceabi.c:1142
++#: earmelf_nacl.c:1142 earmelf_nbsd.c:1137 earmelf_phoenix.c:1142
++#: earmelf_vxworks.c:1177 earmelfb.c:1137 earmelfb_fbsd.c:1137
++#: earmelfb_fuchsia.c:1142 earmelfb_linux.c:1142 earmelfb_linux_eabi.c:1142
++#: earmelfb_linux_fdpiceabi.c:1142 earmelfb_nacl.c:1142 earmelfb_nbsd.c:1137
++#: earmnto.c:1112
+ #, c-format
+ msgid ""
+ " --no-wchar-size-warning Don't warn about objects with incompatible\n"
+@@ -3540,32 +3584,34 @@ msgstr ""
+ " --no-wchar-size-warning Не упозорава о објектима са несагласним\n"
+ " „wchar_t“ величинама\n"
+
+-#: eaarch64cloudabi.c:834 eaarch64cloudabib.c:834 eaarch64elf.c:829
+-#: eaarch64elf32.c:829 eaarch64elf32b.c:829 eaarch64elfb.c:829
+-#: eaarch64fbsd.c:834 eaarch64fbsdb.c:834 eaarch64linux.c:834
+-#: eaarch64linux32.c:834 eaarch64linux32b.c:834 eaarch64linuxb.c:834
+-#: earmelf.c:1137 earmelf_fbsd.c:1137 earmelf_fuchsia.c:1142
+-#: earmelf_linux.c:1142 earmelf_linux_eabi.c:1142
+-#: earmelf_linux_fdpiceabi.c:1142 earmelf_nacl.c:1142 earmelf_nbsd.c:1137
+-#: earmelf_phoenix.c:1142 earmelf_vxworks.c:1177 earmelfb.c:1137
+-#: earmelfb_fbsd.c:1137 earmelfb_fuchsia.c:1142 earmelfb_linux.c:1142
+-#: earmelfb_linux_eabi.c:1142 earmelfb_linux_fdpiceabi.c:1142
+-#: earmelfb_nacl.c:1142 earmelfb_nbsd.c:1137 earmnto.c:1112
++#: eaarch64cloudabi.c:836 eaarch64cloudabib.c:836 eaarch64elf.c:831
++#: eaarch64elf32.c:831 eaarch64elf32b.c:831 eaarch64elfb.c:831
++#: eaarch64fbsd.c:836 eaarch64fbsdb.c:836 eaarch64haiku.c:836
++#: eaarch64linux.c:836 eaarch64linux32.c:836 eaarch64linux32b.c:836
++#: eaarch64linuxb.c:836 earmelf.c:1139 earmelf_fbsd.c:1139
++#: earmelf_fuchsia.c:1144 earmelf_haiku.c:1144 earmelf_linux.c:1144
++#: earmelf_linux_eabi.c:1144 earmelf_linux_fdpiceabi.c:1144
++#: earmelf_nacl.c:1144 earmelf_nbsd.c:1139 earmelf_phoenix.c:1144
++#: earmelf_vxworks.c:1179 earmelfb.c:1139 earmelfb_fbsd.c:1139
++#: earmelfb_fuchsia.c:1144 earmelfb_linux.c:1144 earmelfb_linux_eabi.c:1144
++#: earmelfb_linux_fdpiceabi.c:1144 earmelfb_nacl.c:1144 earmelfb_nbsd.c:1139
++#: earmnto.c:1114
+ #, c-format
+ msgid " --pic-veneer Always generate PIC interworking veneers\n"
+ msgstr " --pic-veneer Увек ствара „PIC“ међурадне превлаке\n"
+
+-#: eaarch64cloudabi.c:835 eaarch64cloudabib.c:835 eaarch64elf.c:830
+-#: eaarch64elf32.c:830 eaarch64elf32b.c:830 eaarch64elfb.c:830
+-#: eaarch64fbsd.c:835 eaarch64fbsdb.c:835 eaarch64linux.c:835
+-#: eaarch64linux32.c:835 eaarch64linux32b.c:835 eaarch64linuxb.c:835
+-#: earmelf.c:1144 earmelf_fbsd.c:1144 earmelf_fuchsia.c:1149
+-#: earmelf_linux.c:1149 earmelf_linux_eabi.c:1149
+-#: earmelf_linux_fdpiceabi.c:1149 earmelf_nacl.c:1149 earmelf_nbsd.c:1144
+-#: earmelf_phoenix.c:1149 earmelf_vxworks.c:1184 earmelfb.c:1144
+-#: earmelfb_fbsd.c:1144 earmelfb_fuchsia.c:1149 earmelfb_linux.c:1149
+-#: earmelfb_linux_eabi.c:1149 earmelfb_linux_fdpiceabi.c:1149
+-#: earmelfb_nacl.c:1149 earmelfb_nbsd.c:1144 earmnto.c:1119
++#: eaarch64cloudabi.c:837 eaarch64cloudabib.c:837 eaarch64elf.c:832
++#: eaarch64elf32.c:832 eaarch64elf32b.c:832 eaarch64elfb.c:832
++#: eaarch64fbsd.c:837 eaarch64fbsdb.c:837 eaarch64haiku.c:837
++#: eaarch64linux.c:837 eaarch64linux32.c:837 eaarch64linux32b.c:837
++#: eaarch64linuxb.c:837 earmelf.c:1146 earmelf_fbsd.c:1146
++#: earmelf_fuchsia.c:1151 earmelf_haiku.c:1151 earmelf_linux.c:1151
++#: earmelf_linux_eabi.c:1151 earmelf_linux_fdpiceabi.c:1151
++#: earmelf_nacl.c:1151 earmelf_nbsd.c:1146 earmelf_phoenix.c:1151
++#: earmelf_vxworks.c:1186 earmelfb.c:1146 earmelfb_fbsd.c:1146
++#: earmelfb_fuchsia.c:1151 earmelfb_linux.c:1151 earmelfb_linux_eabi.c:1151
++#: earmelfb_linux_fdpiceabi.c:1151 earmelfb_nacl.c:1151 earmelfb_nbsd.c:1146
++#: earmnto.c:1121
+ #, c-format
+ msgid ""
+ " --stub-group-size=N Maximum size of a group of input sections that\n"
+@@ -3586,18 +3632,20 @@ msgstr ""
+ " Вредности +/-1 означавају да повезивач треба да\n"
+ " изабере одговарајућу подразумеваност.\n"
+
+-#: eaarch64cloudabi.c:844 eaarch64cloudabib.c:844 eaarch64elf.c:839
+-#: eaarch64elf32.c:839 eaarch64elf32b.c:839 eaarch64elfb.c:839
+-#: eaarch64fbsd.c:844 eaarch64fbsdb.c:844 eaarch64linux.c:844
+-#: eaarch64linux32.c:844 eaarch64linux32b.c:844 eaarch64linuxb.c:844
++#: eaarch64cloudabi.c:846 eaarch64cloudabib.c:846 eaarch64elf.c:841
++#: eaarch64elf32.c:841 eaarch64elf32b.c:841 eaarch64elfb.c:841
++#: eaarch64fbsd.c:846 eaarch64fbsdb.c:846 eaarch64haiku.c:846
++#: eaarch64linux.c:846 eaarch64linux32.c:846 eaarch64linux32b.c:846
++#: eaarch64linuxb.c:846
+ #, c-format
+ msgid " --fix-cortex-a53-835769 Fix erratum 835769\n"
+ msgstr " --fix-cortex-a53-835769 Поправља грешку 835769\n"
+
+-#: eaarch64cloudabi.c:845 eaarch64cloudabib.c:845 eaarch64elf.c:840
+-#: eaarch64elf32.c:840 eaarch64elf32b.c:840 eaarch64elfb.c:840
+-#: eaarch64fbsd.c:845 eaarch64fbsdb.c:845 eaarch64linux.c:845
+-#: eaarch64linux32.c:845 eaarch64linux32b.c:845 eaarch64linuxb.c:845
++#: eaarch64cloudabi.c:847 eaarch64cloudabib.c:847 eaarch64elf.c:842
++#: eaarch64elf32.c:842 eaarch64elf32b.c:842 eaarch64elfb.c:842
++#: eaarch64fbsd.c:847 eaarch64fbsdb.c:847 eaarch64haiku.c:847
++#: eaarch64linux.c:847 eaarch64linux32.c:847 eaarch64linux32b.c:847
++#: eaarch64linuxb.c:847
+ #, c-format
+ msgid ""
+ " --fix-cortex-a53-843419[=full|adr|adrp] Fix erratum 843419 and optionally specify which workaround to use.\n"
+@@ -3622,26 +3670,29 @@ msgstr ""
+ " инструкцију у „ADR“. Као такво решење ће увек користити\n"
+ " превлаку а ово ће вам дати утрошак и делотворности и величине.\n"
+
+-#: eaarch64cloudabi.c:856 eaarch64cloudabib.c:856 eaarch64elf.c:851
+-#: eaarch64elf32.c:851 eaarch64elf32b.c:851 eaarch64elfb.c:851
+-#: eaarch64fbsd.c:856 eaarch64fbsdb.c:856 eaarch64linux.c:856
+-#: eaarch64linux32.c:856 eaarch64linux32b.c:856 eaarch64linuxb.c:856
++#: eaarch64cloudabi.c:858 eaarch64cloudabib.c:858 eaarch64elf.c:853
++#: eaarch64elf32.c:853 eaarch64elf32b.c:853 eaarch64elfb.c:853
++#: eaarch64fbsd.c:858 eaarch64fbsdb.c:858 eaarch64haiku.c:858
++#: eaarch64linux.c:858 eaarch64linux32.c:858 eaarch64linux32b.c:858
++#: eaarch64linuxb.c:858
+ #, c-format
+ msgid " --no-apply-dynamic-relocs Do not apply link-time values for dynamic relocations\n"
+ msgstr " --no-apply-dynamic-relocs Не примењује вредности времена повезивања за динамичке премештаје\n"
+
+-#: eaarch64cloudabi.c:857 eaarch64cloudabib.c:857 eaarch64elf.c:852
+-#: eaarch64elf32.c:852 eaarch64elf32b.c:852 eaarch64elfb.c:852
+-#: eaarch64fbsd.c:857 eaarch64fbsdb.c:857 eaarch64linux.c:857
+-#: eaarch64linux32.c:857 eaarch64linux32b.c:857 eaarch64linuxb.c:857
++#: eaarch64cloudabi.c:859 eaarch64cloudabib.c:859 eaarch64elf.c:854
++#: eaarch64elf32.c:854 eaarch64elf32b.c:854 eaarch64elfb.c:854
++#: eaarch64fbsd.c:859 eaarch64fbsdb.c:859 eaarch64haiku.c:859
++#: eaarch64linux.c:859 eaarch64linux32.c:859 eaarch64linux32b.c:859
++#: eaarch64linuxb.c:859
+ #, c-format
+ msgid " -z force-bti Turn on Branch Target Identification mechanism and generate PLTs with BTI. Generate warnings for missing BTI on inputs\n"
+ msgstr " -z force-bti Укључује механизам препознавања циља гране и ствара „PLT“-ове са „BTI“. Ствара упозорења за недостајуће „BTI“ на улазима\n"
+
+-#: eaarch64cloudabi.c:858 eaarch64cloudabib.c:858 eaarch64elf.c:853
+-#: eaarch64elf32.c:853 eaarch64elf32b.c:853 eaarch64elfb.c:853
+-#: eaarch64fbsd.c:858 eaarch64fbsdb.c:858 eaarch64linux.c:858
+-#: eaarch64linux32.c:858 eaarch64linux32b.c:858 eaarch64linuxb.c:858
++#: eaarch64cloudabi.c:860 eaarch64cloudabib.c:860 eaarch64elf.c:855
++#: eaarch64elf32.c:855 eaarch64elf32b.c:855 eaarch64elfb.c:855
++#: eaarch64fbsd.c:860 eaarch64fbsdb.c:860 eaarch64haiku.c:860
++#: eaarch64linux.c:860 eaarch64linux32.c:860 eaarch64linux32b.c:860
++#: eaarch64linuxb.c:860
+ #, c-format
+ msgid " -z pac-plt Protect PLTs with Pointer Authentication.\n"
+ msgstr " -z pac-plt Штити „PLT“-ове потврђивањем идентитета показивача.\n"
+@@ -4179,7 +4230,7 @@ msgstr "%F%P: неисправан хекс број за ПЕ парамета
+ msgid "%F%P: strange hex info for PE parameter '%s'\n"
+ msgstr "%F%P: чудни хекс подаци за ПЕ параметар „%s“\n"
+
+-#: earm_wince_pe.c:663 earmpe.c:663 eelf32mcore.c:291 ei386beos.c:266
++#: earm_wince_pe.c:663 earmpe.c:663 eelf32mcore.c:293 ei386beos.c:266
+ #: ei386pe.c:663 ei386pe_posix.c:663 ei386pep.c:642 emcorepe.c:663 eshpe.c:663
+ msgid "%F%P: cannot open base file %s\n"
+ msgstr "%F%P: не могу да отворим датотеку основе „%s“\n"
+@@ -4241,205 +4292,190 @@ msgid "%P: errors encountered processing file %s for interworking\n"
+ msgstr "%P: наиђох на грешке током обраде датотеке „%s“ за међусобни рад\n"
+
+ #: earm_wince_pe.c:1909 earmelf.c:520 earmelf_fbsd.c:520 earmelf_fuchsia.c:521
+-#: earmelf_linux.c:521 earmelf_linux_eabi.c:521 earmelf_linux_fdpiceabi.c:521
+-#: earmelf_nacl.c:521 earmelf_nbsd.c:520 earmelf_phoenix.c:521
+-#: earmelf_vxworks.c:520 earmelfb.c:520 earmelfb_fbsd.c:520
+-#: earmelfb_fuchsia.c:521 earmelfb_linux.c:521 earmelfb_linux_eabi.c:521
+-#: earmelfb_linux_fdpiceabi.c:521 earmelfb_nacl.c:521 earmelfb_nbsd.c:520
+-#: earmnto.c:520 earmpe.c:1909 ei386pe.c:1909 ei386pe_posix.c:1909
+-#: emcorepe.c:1909 eshpe.c:1909
++#: earmelf_haiku.c:521 earmelf_linux.c:521 earmelf_linux_eabi.c:521
++#: earmelf_linux_fdpiceabi.c:521 earmelf_nacl.c:521 earmelf_nbsd.c:520
++#: earmelf_phoenix.c:521 earmelf_vxworks.c:520 earmelfb.c:520
++#: earmelfb_fbsd.c:520 earmelfb_fuchsia.c:521 earmelfb_linux.c:521
++#: earmelfb_linux_eabi.c:521 earmelfb_linux_fdpiceabi.c:521
++#: earmelfb_nacl.c:521 earmelfb_nbsd.c:520 earmnto.c:520 earmpe.c:1909
++#: ei386pe.c:1909 ei386pe_posix.c:1909 emcorepe.c:1909 eshpe.c:1909
+ msgid "%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"
+ msgstr "%P: упозорење: „--thumb-entry %s“ преписује „-e %s“\n"
+
+ #: earm_wince_pe.c:1914 earmelf.c:525 earmelf_fbsd.c:525 earmelf_fuchsia.c:526
+-#: earmelf_linux.c:526 earmelf_linux_eabi.c:526 earmelf_linux_fdpiceabi.c:526
+-#: earmelf_nacl.c:526 earmelf_nbsd.c:525 earmelf_phoenix.c:526
+-#: earmelf_vxworks.c:525 earmelfb.c:525 earmelfb_fbsd.c:525
+-#: earmelfb_fuchsia.c:526 earmelfb_linux.c:526 earmelfb_linux_eabi.c:526
+-#: earmelfb_linux_fdpiceabi.c:526 earmelfb_nacl.c:526 earmelfb_nbsd.c:525
+-#: earmnto.c:525 earmpe.c:1914 ei386pe.c:1914 ei386pe_posix.c:1914
+-#: emcorepe.c:1914 eshpe.c:1914
++#: earmelf_haiku.c:526 earmelf_linux.c:526 earmelf_linux_eabi.c:526
++#: earmelf_linux_fdpiceabi.c:526 earmelf_nacl.c:526 earmelf_nbsd.c:525
++#: earmelf_phoenix.c:526 earmelf_vxworks.c:525 earmelfb.c:525
++#: earmelfb_fbsd.c:525 earmelfb_fuchsia.c:526 earmelfb_linux.c:526
++#: earmelfb_linux_eabi.c:526 earmelfb_linux_fdpiceabi.c:526
++#: earmelfb_nacl.c:526 earmelfb_nbsd.c:525 earmnto.c:525 earmpe.c:1914
++#: ei386pe.c:1914 ei386pe_posix.c:1914 emcorepe.c:1914 eshpe.c:1914
+ msgid "%P: warning: cannot find thumb start symbol %s\n"
+ msgstr "%P: упозорење: не могу да нађем почетни симбол сличице „%s“\n"
+
+-#: earmelf.c:138 earmelf_fbsd.c:138 earmelf_fuchsia.c:139 earmelf_linux.c:139
+-#: earmelf_linux_eabi.c:139 earmelf_linux_fdpiceabi.c:139 earmelf_nacl.c:139
+-#: earmelf_nbsd.c:138 earmelf_phoenix.c:139 earmelf_vxworks.c:138
+-#: earmelfb.c:138 earmelfb_fbsd.c:138 earmelfb_fuchsia.c:139
+-#: earmelfb_linux.c:139 earmelfb_linux_eabi.c:139
++#: earmelf.c:138 earmelf_fbsd.c:138 earmelf_fuchsia.c:139 earmelf_haiku.c:139
++#: earmelf_linux.c:139 earmelf_linux_eabi.c:139 earmelf_linux_fdpiceabi.c:139
++#: earmelf_nacl.c:139 earmelf_nbsd.c:138 earmelf_phoenix.c:139
++#: earmelf_vxworks.c:138 earmelfb.c:138 earmelfb_fbsd.c:138
++#: earmelfb_fuchsia.c:139 earmelfb_linux.c:139 earmelfb_linux_eabi.c:139
+ #: earmelfb_linux_fdpiceabi.c:139 earmelfb_nacl.c:139 earmelfb_nbsd.c:138
+ #: earmnto.c:138 ei386beos.c:615
+ #, c-format
+ msgid "%P: errors encountered processing file %s\n"
+ msgstr "%P: наиђох на грешке током обраде датотеке „%s“\n"
+
+-#: earmelf.c:551 earmelf_fbsd.c:551 earmelf_fuchsia.c:552 earmelf_linux.c:552
+-#: earmelf_linux_eabi.c:552 earmelf_linux_fdpiceabi.c:552 earmelf_nacl.c:552
+-#: earmelf_nbsd.c:551 earmelf_phoenix.c:552 earmelf_vxworks.c:551
+-#: earmelfb.c:551 earmelfb_fbsd.c:551 earmelfb_fuchsia.c:552
+-#: earmelfb_linux.c:552 earmelfb_linux_eabi.c:552
++#: earmelf.c:551 earmelf_fbsd.c:551 earmelf_fuchsia.c:552 earmelf_haiku.c:552
++#: earmelf_linux.c:552 earmelf_linux_eabi.c:552 earmelf_linux_fdpiceabi.c:552
++#: earmelf_nacl.c:552 earmelf_nbsd.c:551 earmelf_phoenix.c:552
++#: earmelf_vxworks.c:551 earmelfb.c:551 earmelfb_fbsd.c:551
++#: earmelfb_fuchsia.c:552 earmelfb_linux.c:552 earmelfb_linux_eabi.c:552
+ #: earmelfb_linux_fdpiceabi.c:552 earmelfb_nacl.c:552 earmelfb_nbsd.c:551
+ #: earmnto.c:551
+ msgid "%F%P: %s: can't open: %E\n"
+ msgstr "%F%P: %s: не могу да отворим: %E\n"
+
+-#: earmelf.c:554 earmelf_fbsd.c:554 earmelf_fuchsia.c:555 earmelf_linux.c:555
+-#: earmelf_linux_eabi.c:555 earmelf_linux_fdpiceabi.c:555 earmelf_nacl.c:555
+-#: earmelf_nbsd.c:554 earmelf_phoenix.c:555 earmelf_vxworks.c:554
+-#: earmelfb.c:554 earmelfb_fbsd.c:554 earmelfb_fuchsia.c:555
+-#: earmelfb_linux.c:555 earmelfb_linux_eabi.c:555
++#: earmelf.c:554 earmelf_fbsd.c:554 earmelf_fuchsia.c:555 earmelf_haiku.c:555
++#: earmelf_linux.c:555 earmelf_linux_eabi.c:555 earmelf_linux_fdpiceabi.c:555
++#: earmelf_nacl.c:555 earmelf_nbsd.c:554 earmelf_phoenix.c:555
++#: earmelf_vxworks.c:554 earmelfb.c:554 earmelfb_fbsd.c:554
++#: earmelfb_fuchsia.c:555 earmelfb_linux.c:555 earmelfb_linux_eabi.c:555
+ #: earmelfb_linux_fdpiceabi.c:555 earmelfb_nacl.c:555 earmelfb_nbsd.c:554
+ #: earmnto.c:554
+ msgid "%F%P: %s: not a relocatable file: %E\n"
+ msgstr "%F%P: %s: није преместива датотека: %E\n"
+
+-#: earmelf.c:1043 earmelf_fbsd.c:1043 earmelf_fuchsia.c:1048
+-#: earmelf_linux.c:1048 earmelf_linux_eabi.c:1048
+-#: earmelf_linux_fdpiceabi.c:1048 earmelf_nacl.c:1048 earmelf_nbsd.c:1043
+-#: earmelf_phoenix.c:1048 earmelf_vxworks.c:1079 earmelfb.c:1043
+-#: earmelfb_fbsd.c:1043 earmelfb_fuchsia.c:1048 earmelfb_linux.c:1048
+-#: earmelfb_linux_eabi.c:1048 earmelfb_linux_fdpiceabi.c:1048
+-#: earmelfb_nacl.c:1048 earmelfb_nbsd.c:1043 earmnto.c:1018
++#: earmelf.c:1045 earmelf_fbsd.c:1045 earmelf_fuchsia.c:1050
++#: earmelf_haiku.c:1050 earmelf_linux.c:1050 earmelf_linux_eabi.c:1050
++#: earmelf_linux_fdpiceabi.c:1050 earmelf_nacl.c:1050 earmelf_nbsd.c:1045
++#: earmelf_phoenix.c:1050 earmelf_vxworks.c:1081 earmelfb.c:1045
++#: earmelfb_fbsd.c:1045 earmelfb_fuchsia.c:1050 earmelfb_linux.c:1050
++#: earmelfb_linux_eabi.c:1050 earmelfb_linux_fdpiceabi.c:1050
++#: earmelfb_nacl.c:1050 earmelfb_nbsd.c:1045 earmnto.c:1020
+ msgid "%P: unrecognized VFP11 fix type '%s'\n"
+ msgstr "%P: непозната врста „VFP11“ поправке „%s“\n"
+
+-#: earmelf.c:1056 earmelf_fbsd.c:1056 earmelf_fuchsia.c:1061
+-#: earmelf_linux.c:1061 earmelf_linux_eabi.c:1061
+-#: earmelf_linux_fdpiceabi.c:1061 earmelf_nacl.c:1061 earmelf_nbsd.c:1056
+-#: earmelf_phoenix.c:1061 earmelf_vxworks.c:1092 earmelfb.c:1056
+-#: earmelfb_fbsd.c:1056 earmelfb_fuchsia.c:1061 earmelfb_linux.c:1061
+-#: earmelfb_linux_eabi.c:1061 earmelfb_linux_fdpiceabi.c:1061
+-#: earmelfb_nacl.c:1061 earmelfb_nbsd.c:1056 earmnto.c:1031
++#: earmelf.c:1058 earmelf_fbsd.c:1058 earmelf_fuchsia.c:1063
++#: earmelf_haiku.c:1063 earmelf_linux.c:1063 earmelf_linux_eabi.c:1063
++#: earmelf_linux_fdpiceabi.c:1063 earmelf_nacl.c:1063 earmelf_nbsd.c:1058
++#: earmelf_phoenix.c:1063 earmelf_vxworks.c:1094 earmelfb.c:1058
++#: earmelfb_fbsd.c:1058 earmelfb_fuchsia.c:1063 earmelfb_linux.c:1063
++#: earmelfb_linux_eabi.c:1063 earmelfb_linux_fdpiceabi.c:1063
++#: earmelfb_nacl.c:1063 earmelfb_nbsd.c:1058 earmnto.c:1033
+ msgid "%P: unrecognized STM32L4XX fix type '%s'\n"
+ msgstr "%P: непозната врста „STM32L4XX“ поправке „%s“\n"
+
+-#: earmelf.c:1123 earmelf_fbsd.c:1123 earmelf_fuchsia.c:1128
+-#: earmelf_linux.c:1128 earmelf_linux_eabi.c:1128
+-#: earmelf_linux_fdpiceabi.c:1128 earmelf_nacl.c:1128 earmelf_nbsd.c:1123
+-#: earmelf_phoenix.c:1128 earmelf_vxworks.c:1163 earmelfb.c:1123
+-#: earmelfb_fbsd.c:1123 earmelfb_fuchsia.c:1128 earmelfb_linux.c:1128
+-#: earmelfb_linux_eabi.c:1128 earmelfb_linux_fdpiceabi.c:1128
+-#: earmelfb_nacl.c:1128 earmelfb_nbsd.c:1123 earmnto.c:1098
+-#, c-format
+-msgid " --thumb-entry=<sym> Set the entry point to be Thumb symbol <sym>\n"
+-msgstr " --thumb-entry=<сим> Подешава тачку уноса на симбол сличице <сим>\n"
+-
+-#: earmelf.c:1124 earmelf_fbsd.c:1124 earmelf_fuchsia.c:1129
+-#: earmelf_linux.c:1129 earmelf_linux_eabi.c:1129
+-#: earmelf_linux_fdpiceabi.c:1129 earmelf_nacl.c:1129 earmelf_nbsd.c:1124
+-#: earmelf_phoenix.c:1129 earmelf_vxworks.c:1164 earmelfb.c:1124
+-#: earmelfb_fbsd.c:1124 earmelfb_fuchsia.c:1129 earmelfb_linux.c:1129
+-#: earmelfb_linux_eabi.c:1129 earmelfb_linux_fdpiceabi.c:1129
+-#: earmelfb_nacl.c:1129 earmelfb_nbsd.c:1124 earmnto.c:1099
+-#, c-format
+-msgid " --be8 Output BE8 format image\n"
+-msgstr " --be8 Даје излаз слике у „BE8“ запису\n"
+-
+ #: earmelf.c:1125 earmelf_fbsd.c:1125 earmelf_fuchsia.c:1130
+-#: earmelf_linux.c:1130 earmelf_linux_eabi.c:1130
++#: earmelf_haiku.c:1130 earmelf_linux.c:1130 earmelf_linux_eabi.c:1130
+ #: earmelf_linux_fdpiceabi.c:1130 earmelf_nacl.c:1130 earmelf_nbsd.c:1125
+ #: earmelf_phoenix.c:1130 earmelf_vxworks.c:1165 earmelfb.c:1125
+ #: earmelfb_fbsd.c:1125 earmelfb_fuchsia.c:1130 earmelfb_linux.c:1130
+ #: earmelfb_linux_eabi.c:1130 earmelfb_linux_fdpiceabi.c:1130
+ #: earmelfb_nacl.c:1130 earmelfb_nbsd.c:1125 earmnto.c:1100
+ #, c-format
+-msgid " --target1-rel Interpret R_ARM_TARGET1 as R_ARM_REL32\n"
+-msgstr " --target1-rel Тумачи „R_ARM_TARGET1“ као „R_ARM_REL32“\n"
++msgid " --thumb-entry=<sym> Set the entry point to be Thumb symbol <sym>\n"
++msgstr " --thumb-entry=<сим> Подешава тачку уноса на симбол сличице <сим>\n"
+
+ #: earmelf.c:1126 earmelf_fbsd.c:1126 earmelf_fuchsia.c:1131
+-#: earmelf_linux.c:1131 earmelf_linux_eabi.c:1131
++#: earmelf_haiku.c:1131 earmelf_linux.c:1131 earmelf_linux_eabi.c:1131
+ #: earmelf_linux_fdpiceabi.c:1131 earmelf_nacl.c:1131 earmelf_nbsd.c:1126
+ #: earmelf_phoenix.c:1131 earmelf_vxworks.c:1166 earmelfb.c:1126
+ #: earmelfb_fbsd.c:1126 earmelfb_fuchsia.c:1131 earmelfb_linux.c:1131
+ #: earmelfb_linux_eabi.c:1131 earmelfb_linux_fdpiceabi.c:1131
+ #: earmelfb_nacl.c:1131 earmelfb_nbsd.c:1126 earmnto.c:1101
+ #, c-format
+-msgid " --target1-abs Interpret R_ARM_TARGET1 as R_ARM_ABS32\n"
+-msgstr " --target1-abs Тумачи „R_ARM_TARGET1“ као „R_ARM_REL32“\n"
++msgid " --be8 Output BE8 format image\n"
++msgstr " --be8 Даје излаз слике у „BE8“ запису\n"
+
+ #: earmelf.c:1127 earmelf_fbsd.c:1127 earmelf_fuchsia.c:1132
+-#: earmelf_linux.c:1132 earmelf_linux_eabi.c:1132
++#: earmelf_haiku.c:1132 earmelf_linux.c:1132 earmelf_linux_eabi.c:1132
+ #: earmelf_linux_fdpiceabi.c:1132 earmelf_nacl.c:1132 earmelf_nbsd.c:1127
+ #: earmelf_phoenix.c:1132 earmelf_vxworks.c:1167 earmelfb.c:1127
+ #: earmelfb_fbsd.c:1127 earmelfb_fuchsia.c:1132 earmelfb_linux.c:1132
+ #: earmelfb_linux_eabi.c:1132 earmelfb_linux_fdpiceabi.c:1132
+ #: earmelfb_nacl.c:1132 earmelfb_nbsd.c:1127 earmnto.c:1102
+ #, c-format
+-msgid " --target2=<type> Specify definition of R_ARM_TARGET2\n"
+-msgstr " --target2=<врста> Наводи дефиницију за „R_ARM_TARGET2“\n"
++msgid " --target1-rel Interpret R_ARM_TARGET1 as R_ARM_REL32\n"
++msgstr " --target1-rel Тумачи „R_ARM_TARGET1“ као „R_ARM_REL32“\n"
+
+ #: earmelf.c:1128 earmelf_fbsd.c:1128 earmelf_fuchsia.c:1133
+-#: earmelf_linux.c:1133 earmelf_linux_eabi.c:1133
++#: earmelf_haiku.c:1133 earmelf_linux.c:1133 earmelf_linux_eabi.c:1133
+ #: earmelf_linux_fdpiceabi.c:1133 earmelf_nacl.c:1133 earmelf_nbsd.c:1128
+ #: earmelf_phoenix.c:1133 earmelf_vxworks.c:1168 earmelfb.c:1128
+ #: earmelfb_fbsd.c:1128 earmelfb_fuchsia.c:1133 earmelfb_linux.c:1133
+ #: earmelfb_linux_eabi.c:1133 earmelfb_linux_fdpiceabi.c:1133
+ #: earmelfb_nacl.c:1133 earmelfb_nbsd.c:1128 earmnto.c:1103
+ #, c-format
+-msgid " --fix-v4bx Rewrite BX rn as MOV pc, rn for ARMv4\n"
+-msgstr " --fix-v4bx Преписује „BX rn“ као „MOV pc“, „rn“ за „ARMv4“\n"
++msgid " --target1-abs Interpret R_ARM_TARGET1 as R_ARM_ABS32\n"
++msgstr " --target1-abs Тумачи „R_ARM_TARGET1“ као „R_ARM_REL32“\n"
+
+ #: earmelf.c:1129 earmelf_fbsd.c:1129 earmelf_fuchsia.c:1134
+-#: earmelf_linux.c:1134 earmelf_linux_eabi.c:1134
++#: earmelf_haiku.c:1134 earmelf_linux.c:1134 earmelf_linux_eabi.c:1134
+ #: earmelf_linux_fdpiceabi.c:1134 earmelf_nacl.c:1134 earmelf_nbsd.c:1129
+ #: earmelf_phoenix.c:1134 earmelf_vxworks.c:1169 earmelfb.c:1129
+ #: earmelfb_fbsd.c:1129 earmelfb_fuchsia.c:1134 earmelfb_linux.c:1134
+ #: earmelfb_linux_eabi.c:1134 earmelfb_linux_fdpiceabi.c:1134
+ #: earmelfb_nacl.c:1134 earmelfb_nbsd.c:1129 earmnto.c:1104
+ #, c-format
+-msgid " --fix-v4bx-interworking Rewrite BX rn branch to ARMv4 interworking veneer\n"
+-msgstr " --fix-v4bx-interworking Преписује „BX rn“ грану у „ARMv4“ међурадну превлаку\n"
++msgid " --target2=<type> Specify definition of R_ARM_TARGET2\n"
++msgstr " --target2=<врста> Наводи дефиницију за „R_ARM_TARGET2“\n"
+
+ #: earmelf.c:1130 earmelf_fbsd.c:1130 earmelf_fuchsia.c:1135
+-#: earmelf_linux.c:1135 earmelf_linux_eabi.c:1135
++#: earmelf_haiku.c:1135 earmelf_linux.c:1135 earmelf_linux_eabi.c:1135
+ #: earmelf_linux_fdpiceabi.c:1135 earmelf_nacl.c:1135 earmelf_nbsd.c:1130
+ #: earmelf_phoenix.c:1135 earmelf_vxworks.c:1170 earmelfb.c:1130
+ #: earmelfb_fbsd.c:1130 earmelfb_fuchsia.c:1135 earmelfb_linux.c:1135
+ #: earmelfb_linux_eabi.c:1135 earmelfb_linux_fdpiceabi.c:1135
+ #: earmelfb_nacl.c:1135 earmelfb_nbsd.c:1130 earmnto.c:1105
+ #, c-format
+-msgid " --use-blx Enable use of BLX instructions\n"
+-msgstr " --use-blx Омогућује коришћење „BLX“ инструкција\n"
++msgid " --fix-v4bx Rewrite BX rn as MOV pc, rn for ARMv4\n"
++msgstr " --fix-v4bx Преписује „BX rn“ као „MOV pc“, „rn“ за „ARMv4“\n"
+
+ #: earmelf.c:1131 earmelf_fbsd.c:1131 earmelf_fuchsia.c:1136
+-#: earmelf_linux.c:1136 earmelf_linux_eabi.c:1136
++#: earmelf_haiku.c:1136 earmelf_linux.c:1136 earmelf_linux_eabi.c:1136
+ #: earmelf_linux_fdpiceabi.c:1136 earmelf_nacl.c:1136 earmelf_nbsd.c:1131
+ #: earmelf_phoenix.c:1136 earmelf_vxworks.c:1171 earmelfb.c:1131
+ #: earmelfb_fbsd.c:1131 earmelfb_fuchsia.c:1136 earmelfb_linux.c:1136
+ #: earmelfb_linux_eabi.c:1136 earmelfb_linux_fdpiceabi.c:1136
+ #: earmelfb_nacl.c:1136 earmelfb_nbsd.c:1131 earmnto.c:1106
+ #, c-format
+-msgid " --vfp11-denorm-fix Specify how to fix VFP11 denorm erratum\n"
+-msgstr " --vfp11-denorm-fix Наводи како поправити „VFP11“ денорм грешку\n"
++msgid " --fix-v4bx-interworking Rewrite BX rn branch to ARMv4 interworking veneer\n"
++msgstr " --fix-v4bx-interworking Преписује „BX rn“ грану у „ARMv4“ међурадну превлаку\n"
+
+ #: earmelf.c:1132 earmelf_fbsd.c:1132 earmelf_fuchsia.c:1137
+-#: earmelf_linux.c:1137 earmelf_linux_eabi.c:1137
++#: earmelf_haiku.c:1137 earmelf_linux.c:1137 earmelf_linux_eabi.c:1137
+ #: earmelf_linux_fdpiceabi.c:1137 earmelf_nacl.c:1137 earmelf_nbsd.c:1132
+ #: earmelf_phoenix.c:1137 earmelf_vxworks.c:1172 earmelfb.c:1132
+ #: earmelfb_fbsd.c:1132 earmelfb_fuchsia.c:1137 earmelfb_linux.c:1137
+ #: earmelfb_linux_eabi.c:1137 earmelfb_linux_fdpiceabi.c:1137
+ #: earmelfb_nacl.c:1137 earmelfb_nbsd.c:1132 earmnto.c:1107
+ #, c-format
+-msgid " --fix-stm32l4xx-629360 Specify how to fix STM32L4XX 629360 erratum\n"
+-msgstr " --fix-stm32l4xx-629360 Наводи каоко поправити „STM32L4XX 629360“ грешку\n"
++msgid " --use-blx Enable use of BLX instructions\n"
++msgstr " --use-blx Омогућује коришћење „BLX“ инструкција\n"
++
++#: earmelf.c:1133 earmelf_fbsd.c:1133 earmelf_fuchsia.c:1138
++#: earmelf_haiku.c:1138 earmelf_linux.c:1138 earmelf_linux_eabi.c:1138
++#: earmelf_linux_fdpiceabi.c:1138 earmelf_nacl.c:1138 earmelf_nbsd.c:1133
++#: earmelf_phoenix.c:1138 earmelf_vxworks.c:1173 earmelfb.c:1133
++#: earmelfb_fbsd.c:1133 earmelfb_fuchsia.c:1138 earmelfb_linux.c:1138
++#: earmelfb_linux_eabi.c:1138 earmelfb_linux_fdpiceabi.c:1138
++#: earmelfb_nacl.c:1138 earmelfb_nbsd.c:1133 earmnto.c:1108
++#, c-format
++msgid " --vfp11-denorm-fix Specify how to fix VFP11 denorm erratum\n"
++msgstr " --vfp11-denorm-fix Наводи како поправити „VFP11“ денорм грешку\n"
+
+-#: earmelf.c:1138 earmelf_fbsd.c:1138 earmelf_fuchsia.c:1143
+-#: earmelf_linux.c:1143 earmelf_linux_eabi.c:1143
+-#: earmelf_linux_fdpiceabi.c:1143 earmelf_nacl.c:1143 earmelf_nbsd.c:1138
+-#: earmelf_phoenix.c:1143 earmelf_vxworks.c:1178 earmelfb.c:1138
+-#: earmelfb_fbsd.c:1138 earmelfb_fuchsia.c:1143 earmelfb_linux.c:1143
+-#: earmelfb_linux_eabi.c:1143 earmelfb_linux_fdpiceabi.c:1143
+-#: earmelfb_nacl.c:1143 earmelfb_nbsd.c:1138 earmnto.c:1113
++#: earmelf.c:1134 earmelf_fbsd.c:1134 earmelf_fuchsia.c:1139
++#: earmelf_haiku.c:1139 earmelf_linux.c:1139 earmelf_linux_eabi.c:1139
++#: earmelf_linux_fdpiceabi.c:1139 earmelf_nacl.c:1139 earmelf_nbsd.c:1134
++#: earmelf_phoenix.c:1139 earmelf_vxworks.c:1174 earmelfb.c:1134
++#: earmelfb_fbsd.c:1134 earmelfb_fuchsia.c:1139 earmelfb_linux.c:1139
++#: earmelfb_linux_eabi.c:1139 earmelfb_linux_fdpiceabi.c:1139
++#: earmelfb_nacl.c:1139 earmelfb_nbsd.c:1134 earmnto.c:1109
+ #, c-format
+-msgid ""
+-" --long-plt Generate long .plt entries\n"
+-" to handle large .plt/.got displacements\n"
+-msgstr ""
+-" --long-plt Ствара дуге „.plt“ уносе\n"
+-" за руковање дугим „.plt/.got“ размештајима\n"
++msgid " --fix-stm32l4xx-629360 Specify how to fix STM32L4XX 629360 erratum\n"
++msgstr " --fix-stm32l4xx-629360 Наводи каоко поправити „STM32L4XX 629360“ грешку\n"
+
+ #: earmelf.c:1140 earmelf_fbsd.c:1140 earmelf_fuchsia.c:1145
+-#: earmelf_linux.c:1145 earmelf_linux_eabi.c:1145
++#: earmelf_haiku.c:1145 earmelf_linux.c:1145 earmelf_linux_eabi.c:1145
+ #: earmelf_linux_fdpiceabi.c:1145 earmelf_nacl.c:1145 earmelf_nbsd.c:1140
+ #: earmelf_phoenix.c:1145 earmelf_vxworks.c:1180 earmelfb.c:1140
+ #: earmelfb_fbsd.c:1140 earmelfb_fuchsia.c:1145 earmelfb_linux.c:1145
+@@ -4447,14 +4483,14 @@ msgstr ""
+ #: earmelfb_nacl.c:1145 earmelfb_nbsd.c:1140 earmnto.c:1115
+ #, c-format
+ msgid ""
+-" --cmse-implib Make import library to be a secure gateway import\n"
+-" library as per ARMv8-M Security Extensions\n"
++" --long-plt Generate long .plt entries\n"
++" to handle large .plt/.got displacements\n"
+ msgstr ""
+-" --cmse-implib Чини да библиотека увоза буде безбедна библиотека увоза\n"
+-" мрежног пролаза као за „ARMv8-M“ проширења безбедности\n"
++" --long-plt Ствара дуге „.plt“ уносе\n"
++" за руковање дугим „.plt/.got“ размештајима\n"
+
+ #: earmelf.c:1142 earmelf_fbsd.c:1142 earmelf_fuchsia.c:1147
+-#: earmelf_linux.c:1147 earmelf_linux_eabi.c:1147
++#: earmelf_haiku.c:1147 earmelf_linux.c:1147 earmelf_linux_eabi.c:1147
+ #: earmelf_linux_fdpiceabi.c:1147 earmelf_nacl.c:1147 earmelf_nbsd.c:1142
+ #: earmelf_phoenix.c:1147 earmelf_vxworks.c:1182 earmelfb.c:1142
+ #: earmelfb_fbsd.c:1142 earmelfb_fuchsia.c:1147 earmelfb_linux.c:1147
+@@ -4462,60 +4498,75 @@ msgstr ""
+ #: earmelfb_nacl.c:1147 earmelfb_nbsd.c:1142 earmnto.c:1117
+ #, c-format
+ msgid ""
++" --cmse-implib Make import library to be a secure gateway import\n"
++" library as per ARMv8-M Security Extensions\n"
++msgstr ""
++" --cmse-implib Чини да библиотека увоза буде безбедна библиотека увоза\n"
++" мрежног пролаза као за „ARMv8-M“ проширења безбедности\n"
++
++#: earmelf.c:1144 earmelf_fbsd.c:1144 earmelf_fuchsia.c:1149
++#: earmelf_haiku.c:1149 earmelf_linux.c:1149 earmelf_linux_eabi.c:1149
++#: earmelf_linux_fdpiceabi.c:1149 earmelf_nacl.c:1149 earmelf_nbsd.c:1144
++#: earmelf_phoenix.c:1149 earmelf_vxworks.c:1184 earmelfb.c:1144
++#: earmelfb_fbsd.c:1144 earmelfb_fuchsia.c:1149 earmelfb_linux.c:1149
++#: earmelfb_linux_eabi.c:1149 earmelfb_linux_fdpiceabi.c:1149
++#: earmelfb_nacl.c:1149 earmelfb_nbsd.c:1144 earmnto.c:1119
++#, c-format
++msgid ""
+ " --in-implib Import library whose symbols address must\n"
+ " remain stable\n"
+ msgstr ""
+ " --in-implib Увози библиотеку чија адреса симбола мора\n"
+ " остати стабилна\n"
+
+-#: earmelf.c:1153 earmelf_fbsd.c:1153 earmelf_fuchsia.c:1158
+-#: earmelf_linux.c:1158 earmelf_linux_eabi.c:1158
+-#: earmelf_linux_fdpiceabi.c:1158 earmelf_nacl.c:1158 earmelf_nbsd.c:1153
+-#: earmelf_phoenix.c:1158 earmelf_vxworks.c:1193 earmelfb.c:1153
+-#: earmelfb_fbsd.c:1153 earmelfb_fuchsia.c:1158 earmelfb_linux.c:1158
+-#: earmelfb_linux_eabi.c:1158 earmelfb_linux_fdpiceabi.c:1158
+-#: earmelfb_nacl.c:1158 earmelfb_nbsd.c:1153 earmnto.c:1128
++#: earmelf.c:1155 earmelf_fbsd.c:1155 earmelf_fuchsia.c:1160
++#: earmelf_haiku.c:1160 earmelf_linux.c:1160 earmelf_linux_eabi.c:1160
++#: earmelf_linux_fdpiceabi.c:1160 earmelf_nacl.c:1160 earmelf_nbsd.c:1155
++#: earmelf_phoenix.c:1160 earmelf_vxworks.c:1195 earmelfb.c:1155
++#: earmelfb_fbsd.c:1155 earmelfb_fuchsia.c:1160 earmelfb_linux.c:1160
++#: earmelfb_linux_eabi.c:1160 earmelfb_linux_fdpiceabi.c:1160
++#: earmelfb_nacl.c:1160 earmelfb_nbsd.c:1155 earmnto.c:1130
+ #, c-format
+ msgid " --[no-]fix-cortex-a8 Disable/enable Cortex-A8 Thumb-2 branch erratum fix\n"
+ msgstr " --[no-]fix-cortex-a8 Онемогућује/омогућује поправку грешке „Cortex-A8 Thumb-2“ гране\n"
+
+-#: earmelf.c:1154 earmelf_fbsd.c:1154 earmelf_fuchsia.c:1159
+-#: earmelf_linux.c:1159 earmelf_linux_eabi.c:1159
+-#: earmelf_linux_fdpiceabi.c:1159 earmelf_nacl.c:1159 earmelf_nbsd.c:1154
+-#: earmelf_phoenix.c:1159 earmelf_vxworks.c:1194 earmelfb.c:1154
+-#: earmelfb_fbsd.c:1154 earmelfb_fuchsia.c:1159 earmelfb_linux.c:1159
+-#: earmelfb_linux_eabi.c:1159 earmelfb_linux_fdpiceabi.c:1159
+-#: earmelfb_nacl.c:1159 earmelfb_nbsd.c:1154 earmnto.c:1129
++#: earmelf.c:1156 earmelf_fbsd.c:1156 earmelf_fuchsia.c:1161
++#: earmelf_haiku.c:1161 earmelf_linux.c:1161 earmelf_linux_eabi.c:1161
++#: earmelf_linux_fdpiceabi.c:1161 earmelf_nacl.c:1161 earmelf_nbsd.c:1156
++#: earmelf_phoenix.c:1161 earmelf_vxworks.c:1196 earmelfb.c:1156
++#: earmelfb_fbsd.c:1156 earmelfb_fuchsia.c:1161 earmelfb_linux.c:1161
++#: earmelfb_linux_eabi.c:1161 earmelfb_linux_fdpiceabi.c:1161
++#: earmelfb_nacl.c:1161 earmelfb_nbsd.c:1156 earmnto.c:1131
+ #, c-format
+ msgid " --no-merge-exidx-entries Disable merging exidx entries\n"
+ msgstr " --no-merge-exidx-entries Искључује стапање „exidx“ уноса\n"
+
+-#: earmelf.c:1155 earmelf_fbsd.c:1155 earmelf_fuchsia.c:1160
+-#: earmelf_linux.c:1160 earmelf_linux_eabi.c:1160
+-#: earmelf_linux_fdpiceabi.c:1160 earmelf_nacl.c:1160 earmelf_nbsd.c:1155
+-#: earmelf_phoenix.c:1160 earmelf_vxworks.c:1195 earmelfb.c:1155
+-#: earmelfb_fbsd.c:1155 earmelfb_fuchsia.c:1160 earmelfb_linux.c:1160
+-#: earmelfb_linux_eabi.c:1160 earmelfb_linux_fdpiceabi.c:1160
+-#: earmelfb_nacl.c:1160 earmelfb_nbsd.c:1155 earmnto.c:1130
++#: earmelf.c:1157 earmelf_fbsd.c:1157 earmelf_fuchsia.c:1162
++#: earmelf_haiku.c:1162 earmelf_linux.c:1162 earmelf_linux_eabi.c:1162
++#: earmelf_linux_fdpiceabi.c:1162 earmelf_nacl.c:1162 earmelf_nbsd.c:1157
++#: earmelf_phoenix.c:1162 earmelf_vxworks.c:1197 earmelfb.c:1157
++#: earmelfb_fbsd.c:1157 earmelfb_fuchsia.c:1162 earmelfb_linux.c:1162
++#: earmelfb_linux_eabi.c:1162 earmelfb_linux_fdpiceabi.c:1162
++#: earmelfb_nacl.c:1162 earmelfb_nbsd.c:1157 earmnto.c:1132
+ #, c-format
+ msgid " --[no-]fix-arm1176 Disable/enable ARM1176 BLX immediate erratum fix\n"
+ msgstr " --[no-]fix-arm1176 Онемогућава/омогућава тренутну поправку „ARM1176 BLX“ грешке\n"
+
+ #: earmelf_vxworks.c:600 eelf32_sparc_vxworks.c:71 eelf32ebmipvxworks.c:267
+-#: eelf32elmipvxworks.c:267 eelf32ppcvxworks.c:224 eelf_i386_vxworks.c:95
++#: eelf32elmipvxworks.c:267 eelf32ppcvxworks.c:236 eelf_i386_vxworks.c:95
+ #: eshelf_vxworks.c:71 eshlelf_vxworks.c:71
+ msgid "%X%P: cannot create dynamic sections %E\n"
+ msgstr "%X%P: не могу да направим динамичке одељке „%E“\n"
+
+ #: earmelf_vxworks.c:606 eelf32_sparc_vxworks.c:77 eelf32ebmipvxworks.c:273
+-#: eelf32elmipvxworks.c:273 eelf32ppcvxworks.c:230 eelf_i386_vxworks.c:101
++#: eelf32elmipvxworks.c:273 eelf32ppcvxworks.c:242 eelf_i386_vxworks.c:101
+ #: eshelf_vxworks.c:77 eshlelf_vxworks.c:77
+ msgid "%X%P: dynamic sections created in non-dynamic link\n"
+ msgstr "%X%P: динамички одељци су створени у нединамичкој вези\n"
+
+-#: earmelf_vxworks.c:1197 eelf32_sparc_vxworks.c:500 eelf32ebmipvxworks.c:758
+-#: eelf32elmipvxworks.c:758 eelf32ppcvxworks.c:811 eelf_i386_vxworks.c:577
+-#: eshelf_vxworks.c:470 eshlelf_vxworks.c:470
++#: earmelf_vxworks.c:1199 eelf32_sparc_vxworks.c:502 eelf32ebmipvxworks.c:760
++#: eelf32elmipvxworks.c:760 eelf32ppcvxworks.c:825 eelf_i386_vxworks.c:587
++#: eshelf_vxworks.c:472 eshlelf_vxworks.c:472
+ #, c-format
+ msgid " --force-dynamic Always create dynamic sections\n"
+ msgstr " --force-dynamic Увек ствара динамичке одељке\n"
+@@ -4534,10 +4585,10 @@ msgstr "%X%P: не могу да поставим списак улазног о
+ msgid "%X%P: can not create stub BFD: %E\n"
+ msgstr "%X%P: не могу да направим „BFD“ окрајка: %E\n"
+
+-#: eavr1.c:536 eavr2.c:536 eavr25.c:536 eavr3.c:536 eavr31.c:536 eavr35.c:536
+-#: eavr4.c:536 eavr5.c:536 eavr51.c:536 eavr6.c:536 eavrtiny.c:536
+-#: eavrxmega1.c:536 eavrxmega2.c:536 eavrxmega3.c:536 eavrxmega4.c:536
+-#: eavrxmega5.c:536 eavrxmega6.c:536 eavrxmega7.c:536
++#: eavr1.c:538 eavr2.c:538 eavr25.c:538 eavr3.c:538 eavr31.c:538 eavr35.c:538
++#: eavr4.c:538 eavr5.c:538 eavr51.c:538 eavr6.c:538 eavrtiny.c:538
++#: eavrxmega1.c:538 eavrxmega2.c:538 eavrxmega3.c:538 eavrxmega4.c:538
++#: eavrxmega5.c:538 eavrxmega6.c:538 eavrxmega7.c:538
+ #, c-format
+ msgid ""
+ " --pmem-wrap-around=<val> Make the linker relaxation machine assume that a\n"
+@@ -4548,10 +4599,10 @@ msgstr ""
+ " да се преламања бројача програма јављају на адреси\n"
+ " <вредност>. Подржане вредности су: 8k, 16k, 32k и 64k.\n"
+
+-#: eavr1.c:542 eavr2.c:542 eavr25.c:542 eavr3.c:542 eavr31.c:542 eavr35.c:542
+-#: eavr4.c:542 eavr5.c:542 eavr51.c:542 eavr6.c:542 eavrtiny.c:542
+-#: eavrxmega1.c:542 eavrxmega2.c:542 eavrxmega3.c:542 eavrxmega4.c:542
+-#: eavrxmega5.c:542 eavrxmega6.c:542 eavrxmega7.c:542
++#: eavr1.c:544 eavr2.c:544 eavr25.c:544 eavr3.c:544 eavr31.c:544 eavr35.c:544
++#: eavr4.c:544 eavr5.c:544 eavr51.c:544 eavr6.c:544 eavrtiny.c:544
++#: eavrxmega1.c:544 eavrxmega2.c:544 eavrxmega3.c:544 eavrxmega4.c:544
++#: eavrxmega5.c:544 eavrxmega6.c:544 eavrxmega7.c:544
+ #, c-format
+ msgid ""
+ " --no-call-ret-replacement The relaxation machine normally will\n"
+@@ -4564,10 +4615,10 @@ msgstr ""
+ " инструкције једном инструкцијом скока.\n"
+ " Ова опција искључује ову оптимизацију.\n"
+
+-#: eavr1.c:550 eavr2.c:550 eavr25.c:550 eavr3.c:550 eavr31.c:550 eavr35.c:550
+-#: eavr4.c:550 eavr5.c:550 eavr51.c:550 eavr6.c:550 eavrtiny.c:550
+-#: eavrxmega1.c:550 eavrxmega2.c:550 eavrxmega3.c:550 eavrxmega4.c:550
+-#: eavrxmega5.c:550 eavrxmega6.c:550 eavrxmega7.c:550
++#: eavr1.c:552 eavr2.c:552 eavr25.c:552 eavr3.c:552 eavr31.c:552 eavr35.c:552
++#: eavr4.c:552 eavr5.c:552 eavr51.c:552 eavr6.c:552 eavrtiny.c:552
++#: eavrxmega1.c:552 eavrxmega2.c:552 eavrxmega3.c:552 eavrxmega4.c:552
++#: eavrxmega5.c:552 eavrxmega6.c:552 eavrxmega7.c:552
+ #, c-format
+ msgid ""
+ " --no-stubs If the linker detects to attempt to access\n"
+@@ -4580,19 +4631,19 @@ msgstr ""
+ " ограничено на највише 128k, убацује окрајак\n"
+ " скока. Ово можете искључити овом опцијом.\n"
+
+-#: eavr1.c:558 eavr2.c:558 eavr25.c:558 eavr3.c:558 eavr31.c:558 eavr35.c:558
+-#: eavr4.c:558 eavr5.c:558 eavr51.c:558 eavr6.c:558 eavrtiny.c:558
+-#: eavrxmega1.c:558 eavrxmega2.c:558 eavrxmega3.c:558 eavrxmega4.c:558
+-#: eavrxmega5.c:558 eavrxmega6.c:558 eavrxmega7.c:558
+-#, c-format
+-msgid " --debug-stubs Used for debugging avr-ld.\n"
+-msgstr " --debug-stubs Користи се за прочишћавање „avr-ld“.\n"
+-
+ #: eavr1.c:560 eavr2.c:560 eavr25.c:560 eavr3.c:560 eavr31.c:560 eavr35.c:560
+ #: eavr4.c:560 eavr5.c:560 eavr51.c:560 eavr6.c:560 eavrtiny.c:560
+ #: eavrxmega1.c:560 eavrxmega2.c:560 eavrxmega3.c:560 eavrxmega4.c:560
+ #: eavrxmega5.c:560 eavrxmega6.c:560 eavrxmega7.c:560
+ #, c-format
++msgid " --debug-stubs Used for debugging avr-ld.\n"
++msgstr " --debug-stubs Користи се за прочишћавање „avr-ld“.\n"
++
++#: eavr1.c:562 eavr2.c:562 eavr25.c:562 eavr3.c:562 eavr31.c:562 eavr35.c:562
++#: eavr4.c:562 eavr5.c:562 eavr51.c:562 eavr6.c:562 eavrtiny.c:562
++#: eavrxmega1.c:562 eavrxmega2.c:562 eavrxmega3.c:562 eavrxmega4.c:562
++#: eavrxmega5.c:562 eavrxmega6.c:562 eavrxmega7.c:562
++#, c-format
+ msgid " --debug-relax Used for debugging avr-ld.\n"
+ msgstr " --debug-relax Користи се за прочишћавање „avr-ld“.\n"
+
+@@ -4604,7 +4655,7 @@ msgstr "%X%P: не могу да одрадим величину одељка о
+ msgid "%X%P: cannot build stubs: %E\n"
+ msgstr "%X%P: не могу да изградим окрајке: %E\n"
+
+-#: ecskyelf.c:553 ecskyelf_linux.c:720
++#: ecskyelf.c:555 ecskyelf_linux.c:722
+ #, c-format
+ msgid ""
+ " --[no-]branch-stub Disable/enable use of stubs to expand branch\n"
+@@ -4613,7 +4664,7 @@ msgstr ""
+ " --[no-]branch-stub Онемогућује/омогућује коришћење окрајака за ширење гране\n"
+ " инструкција које не могу да дођу до циља.\n"
+
+-#: ecskyelf.c:557 ecskyelf_linux.c:724
++#: ecskyelf.c:559 ecskyelf_linux.c:726
+ #, c-format
+ msgid ""
+ " --stub-group-size=N Maximum size of a group of input sections\n"
+@@ -4669,79 +4720,84 @@ msgstr "%X%P: „%pA“ превазилази опсег локалног см
+ msgid "%P: --auto-overlay ignored with zero local store range\n"
+ msgstr "%P: „--auto-overlay“ занемарено са нултим опсегом локалног смештаја\n"
+
+-#: eelf32_spu.c:894
++#: eelf32_spu.c:675
++#, c-format
++msgid "running: %s \"%s\" \"%s\" \"%s\" \"%s\"\n"
++msgstr "покрећем: %s „%s“ „%s“ „%s“ „%s“\n"
++
++#: eelf32_spu.c:1032
+ msgid "%F%P: invalid --local-store address range `%s'\n"
+ msgstr "%F%P: неисправан опсег „--local-store“ адресе „%s“\n"
+
+-#: eelf32_spu.c:930
++#: eelf32_spu.c:1068
+ msgid "%F%P: invalid --num-lines/--num-regions `%u'\n"
+ msgstr "%F%P: неисправно „--num-lines/--num-regions“ „%u“\n"
+
+-#: eelf32_spu.c:935
++#: eelf32_spu.c:1073
+ msgid "%F%P: invalid --line-size/--region-size `%u'\n"
+ msgstr "%F%P: неисправно „--line-size/--region-size“ „%u“\n"
+
+-#: eelf32_spu.c:956
++#: eelf32_spu.c:1094
+ msgid "%F%P: invalid --num-lines/--num-regions `%s'\n"
+ msgstr "%F%P: неисправно „--num-lines/--num-regions“ „%s“\n"
+
+-#: eelf32_spu.c:969
++#: eelf32_spu.c:1107
+ msgid "%F%P: invalid --line-size/--region-size `%s'\n"
+ msgstr "%F%P: неисправно „--line-size/--region-size“ „%s“\n"
+
+-#: eelf32_spu.c:978
++#: eelf32_spu.c:1116
+ msgid "%F%P: invalid --fixed-space value `%s'\n"
+ msgstr "%F%P: неисправна „--fixed-space“ вредност „%s“\n"
+
+-#: eelf32_spu.c:987
++#: eelf32_spu.c:1125
+ msgid "%F%P: invalid --reserved-space value `%s'\n"
+ msgstr "%F%P: неисправна „--reserved-space“ вредност „%s“\n"
+
+-#: eelf32_spu.c:996
++#: eelf32_spu.c:1134
+ msgid "%F%P: invalid --extra-stack-space value `%s'\n"
+ msgstr "%F%P: неисправна „--extra-stack-space“ вредност „%s“\n"
+
+-#: eelf32_spu.c:1033
++#: eelf32_spu.c:1171
+ #, c-format
+ msgid " --plugin Make SPU plugin\n"
+ msgstr " --plugin Прави „SPU“ прикључак\n"
+
+-#: eelf32_spu.c:1035
++#: eelf32_spu.c:1173
+ #, c-format
+ msgid " --no-overlays No overlay handling\n"
+ msgstr " --no-overlays Нема руковања преклапањем\n"
+
+-#: eelf32_spu.c:1037
++#: eelf32_spu.c:1175
+ #, c-format
+ msgid " --compact-stubs Use smaller and possibly slower call stubs\n"
+ msgstr " --compact-stubs Користи мање и по могућству спорије окрајке позива\n"
+
+-#: eelf32_spu.c:1039
++#: eelf32_spu.c:1177
+ #, c-format
+ msgid " --emit-stub-syms Add symbols on overlay call stubs\n"
+ msgstr " --emit-stub-syms Додаје симболе на преклапање окрајака позива\n"
+
+-#: eelf32_spu.c:1041
++#: eelf32_spu.c:1179
+ #, c-format
+ msgid " --extra-overlay-stubs Add stubs on all calls out of overlay regions\n"
+ msgstr " --extra-overlay-stubs Додаје окрајке на све позиве ван области преклапања\n"
+
+-#: eelf32_spu.c:1043
++#: eelf32_spu.c:1181
+ #, c-format
+ msgid " --local-store=lo:hi Valid address range\n"
+ msgstr " --local-store=lo:hi Исправан опсег адресе\n"
+
+-#: eelf32_spu.c:1045
++#: eelf32_spu.c:1183
+ #, c-format
+ msgid " --stack-analysis Estimate maximum stack requirement\n"
+ msgstr " --stack-analysis Процењује највеће захтевање спремника\n"
+
+-#: eelf32_spu.c:1047
++#: eelf32_spu.c:1185
+ #, c-format
+ msgid " --emit-stack-syms Add sym giving stack needed for each func\n"
+ msgstr " --emit-stack-syms Додаје симбол дајући спремник потребан за сваку функцију\n"
+
+-#: eelf32_spu.c:1049
++#: eelf32_spu.c:1187
+ #, c-format
+ msgid ""
+ " --auto-overlay [=filename] Create an overlay script in filename if\n"
+@@ -4750,12 +4806,12 @@ msgstr ""
+ " --auto-overlay [=датотека] Ствара скрипту преклапања у датотеци ако\n"
+ " извршна не стане у локалном смештају\n"
+
+-#: eelf32_spu.c:1052
++#: eelf32_spu.c:1190
+ #, c-format
+ msgid " --auto-relink Rerun linker using auto-overlay script\n"
+ msgstr " --auto-relink Поново покреће повезивача користећи скрипту ауто-преклапања\n"
+
+-#: eelf32_spu.c:1054
++#: eelf32_spu.c:1192
+ #, c-format
+ msgid ""
+ " --overlay-rodata Place read-only data with associated function\n"
+@@ -4764,22 +4820,22 @@ msgstr ""
+ " --overlay-rodata Ставља податке само за читање са придруженим кодом\n"
+ " функције у преклапањима\n"
+
+-#: eelf32_spu.c:1057
++#: eelf32_spu.c:1195
+ #, c-format
+ msgid " --num-regions Number of overlay buffers (default 1)\n"
+ msgstr " --num-regions Број међумеморија преклапања (основно је 1)\n"
+
+-#: eelf32_spu.c:1059
++#: eelf32_spu.c:1197
+ #, c-format
+ msgid " --region-size Size of overlay buffers (default 0, auto)\n"
+ msgstr " --region-size Величина међумеморија преклапања (основно је 0, самостално)\n"
+
+-#: eelf32_spu.c:1061
++#: eelf32_spu.c:1199
+ #, c-format
+ msgid " --fixed-space=bytes Local store for non-overlay code and data\n"
+ msgstr " --fixed-space=бајта Локални смештај за код и податке не-преклапања\n"
+
+-#: eelf32_spu.c:1063
++#: eelf32_spu.c:1201
+ #, c-format
+ msgid ""
+ " --reserved-space=bytes Local store for stack and heap. If not specified\n"
+@@ -4788,7 +4844,7 @@ msgstr ""
+ " --reserved-space=бајтова Локални смештај за спремник и гомилу. Ако није наведено\n"
+ " „ld“ ће проценити величину спремника и претпоставити да нема гомиле\n"
+
+-#: eelf32_spu.c:1066
++#: eelf32_spu.c:1204
+ #, c-format
+ msgid ""
+ " --extra-stack-space=bytes Space for negative sp access (default 2000) if\n"
+@@ -4797,27 +4853,27 @@ msgstr ""
+ " --extra-stack-space=бајта Простор за негативан „sp“ приступ (основно је 2000) ако\n"
+ " „--reserved-space“ није дато\n"
+
+-#: eelf32_spu.c:1069
++#: eelf32_spu.c:1207
+ #, c-format
+ msgid " --soft-icache Generate software icache overlays\n"
+ msgstr " --soft-icache Ствара софтверска „icache“ преклапања\n"
+
+-#: eelf32_spu.c:1071
++#: eelf32_spu.c:1209
+ #, c-format
+ msgid " --num-lines Number of soft-icache lines (default 32)\n"
+ msgstr " --num-lines Број „soft-icache“ редова (основно је 32)\n"
+
+-#: eelf32_spu.c:1073
++#: eelf32_spu.c:1211
+ #, c-format
+ msgid " --line-size Size of soft-icache lines (default 1k)\n"
+ msgstr " --line-size Величина „soft-icache“ редова (основно је 1k)\n"
+
+-#: eelf32_spu.c:1075
++#: eelf32_spu.c:1213
+ #, c-format
+ msgid " --non-ia-text Allow non-icache code in icache lines\n"
+ msgstr " --non-ia-text Допушта „non-icache“ код у „icache“ редовима\n"
+
+-#: eelf32_spu.c:1077
++#: eelf32_spu.c:1215
+ #, c-format
+ msgid " --lrlive-analysis Scan function prologue for lr liveness\n"
+ msgstr " --lrlive-analysis ТРажи има ли у прологу функције „lr“ живости\n"
+@@ -4827,106 +4883,126 @@ msgstr " --lrlive-analysis ТРажи има ли у прол
+ msgid "%F%P: invalid --dsbt-index %d, outside DSBT size\n"
+ msgstr "%F%P: неисправно „--dsbt-index“ %d, изван „DSBT“ величине\n"
+
+-#: eelf32_tic6x_be.c:563 eelf32_tic6x_elf_be.c:563 eelf32_tic6x_elf_le.c:563
+-#: eelf32_tic6x_le.c:563 eelf32_tic6x_linux_be.c:563
+-#: eelf32_tic6x_linux_le.c:563
++#: eelf32_tic6x_be.c:565 eelf32_tic6x_elf_be.c:565 eelf32_tic6x_elf_le.c:565
++#: eelf32_tic6x_le.c:565 eelf32_tic6x_linux_be.c:565
++#: eelf32_tic6x_linux_le.c:565
+ msgid "%F%P: invalid --dsbt-index %s\n"
+ msgstr "%F%P: неисправно „--dsbt-index %s“\n"
+
+-#: eelf32_tic6x_be.c:573 eelf32_tic6x_elf_be.c:573 eelf32_tic6x_elf_le.c:573
+-#: eelf32_tic6x_le.c:573 eelf32_tic6x_linux_be.c:573
+-#: eelf32_tic6x_linux_le.c:573
++#: eelf32_tic6x_be.c:575 eelf32_tic6x_elf_be.c:575 eelf32_tic6x_elf_le.c:575
++#: eelf32_tic6x_le.c:575 eelf32_tic6x_linux_be.c:575
++#: eelf32_tic6x_linux_le.c:575
+ msgid "%F%P: invalid --dsbt-size %s\n"
+ msgstr "%F%P: неисправно „--dsbt-size %s“\n"
+
+-#: eelf32_tic6x_be.c:589 eelf32_tic6x_elf_be.c:589 eelf32_tic6x_elf_le.c:589
+-#: eelf32_tic6x_le.c:589 eelf32_tic6x_linux_be.c:589
+-#: eelf32_tic6x_linux_le.c:589
++#: eelf32_tic6x_be.c:591 eelf32_tic6x_elf_be.c:591 eelf32_tic6x_elf_le.c:591
++#: eelf32_tic6x_le.c:591 eelf32_tic6x_linux_be.c:591
++#: eelf32_tic6x_linux_le.c:591
+ #, c-format
+ msgid " --dsbt-index <index> Use this as the DSBT index for the output object\n"
+ msgstr " --dsbt-index <индекс> Користи ово као „DSBT“ индекс за излазни објект\n"
+
+-#: eelf32_tic6x_be.c:590 eelf32_tic6x_elf_be.c:590 eelf32_tic6x_elf_le.c:590
+-#: eelf32_tic6x_le.c:590 eelf32_tic6x_linux_be.c:590
+-#: eelf32_tic6x_linux_le.c:590
++#: eelf32_tic6x_be.c:592 eelf32_tic6x_elf_be.c:592 eelf32_tic6x_elf_le.c:592
++#: eelf32_tic6x_le.c:592 eelf32_tic6x_linux_be.c:592
++#: eelf32_tic6x_linux_le.c:592
+ #, c-format
+ msgid " --dsbt-size <index> Use this as the number of entries in the DSBT table\n"
+ msgstr " --dsbt-size <индекс> Користи ово као број уноса у „DSBT“ табели\n"
+
+-#: eelf32_tic6x_be.c:591 eelf32_tic6x_elf_be.c:591 eelf32_tic6x_elf_le.c:591
+-#: eelf32_tic6x_le.c:591 eelf32_tic6x_linux_be.c:591
+-#: eelf32_tic6x_linux_le.c:591
++#: eelf32_tic6x_be.c:593 eelf32_tic6x_elf_be.c:593 eelf32_tic6x_elf_le.c:593
++#: eelf32_tic6x_le.c:593 eelf32_tic6x_linux_be.c:593
++#: eelf32_tic6x_linux_le.c:593
+ #, c-format
+ msgid " --no-merge-exidx-entries\n"
+ msgstr " --no-merge-exidx-entries\n"
+
+-#: eelf32_tic6x_be.c:592 eelf32_tic6x_elf_be.c:592 eelf32_tic6x_elf_le.c:592
+-#: eelf32_tic6x_le.c:592 eelf32_tic6x_linux_be.c:592
+-#: eelf32_tic6x_linux_le.c:592
++#: eelf32_tic6x_be.c:594 eelf32_tic6x_elf_be.c:594 eelf32_tic6x_elf_le.c:594
++#: eelf32_tic6x_le.c:594 eelf32_tic6x_linux_be.c:594
++#: eelf32_tic6x_linux_le.c:594
+ #, c-format
+ msgid " Disable merging exidx entries\n"
+ msgstr " Онеогућује стапање „exidx“ уноса\n"
+
+-#: eelf32_x86_64.c:5543 eelf_i386.c:5162 eelf_i386_be.c:465
+-#: eelf_i386_fbsd.c:505 eelf_i386_ldso.c:480 eelf_i386_sol2.c:637
+-#: eelf_i386_vxworks.c:532 eelf_iamcu.c:505 eelf_k1om.c:5496
+-#: eelf_k1om_fbsd.c:505 eelf_l1om.c:5496 eelf_l1om_fbsd.c:505
+-#: eelf_x86_64.c:5543 eelf_x86_64_cloudabi.c:508 eelf_x86_64_fbsd.c:508
+-#: eelf_x86_64_sol2.c:640
++#: eelf32_x86_64.c:5571 eelf_i386.c:5190 eelf_i386_be.c:471
++#: eelf_i386_fbsd.c:511 eelf_i386_haiku.c:511 eelf_i386_ldso.c:486
++#: eelf_i386_sol2.c:643 eelf_i386_vxworks.c:538 eelf_iamcu.c:511
++#: eelf_k1om.c:5502 eelf_k1om_fbsd.c:511 eelf_l1om.c:5502 eelf_l1om_fbsd.c:511
++#: eelf_x86_64.c:5571 eelf_x86_64_cloudabi.c:514 eelf_x86_64_fbsd.c:514
++#: eelf_x86_64_haiku.c:514 eelf_x86_64_sol2.c:646
+ msgid "%F%P: invalid number for -z call-nop=prefix-: %s\n"
+ msgstr "%F%P: неисправан број за „-z call-nop=prefix-“: %s\n"
+
+-#: eelf32_x86_64.c:5552 eelf_i386.c:5171 eelf_i386_be.c:474
+-#: eelf_i386_fbsd.c:514 eelf_i386_ldso.c:489 eelf_i386_sol2.c:646
+-#: eelf_i386_vxworks.c:541 eelf_iamcu.c:514 eelf_k1om.c:5505
+-#: eelf_k1om_fbsd.c:514 eelf_l1om.c:5505 eelf_l1om_fbsd.c:514
+-#: eelf_x86_64.c:5552 eelf_x86_64_cloudabi.c:517 eelf_x86_64_fbsd.c:517
+-#: eelf_x86_64_sol2.c:649
++#: eelf32_x86_64.c:5580 eelf_i386.c:5199 eelf_i386_be.c:480
++#: eelf_i386_fbsd.c:520 eelf_i386_haiku.c:520 eelf_i386_ldso.c:495
++#: eelf_i386_sol2.c:652 eelf_i386_vxworks.c:547 eelf_iamcu.c:520
++#: eelf_k1om.c:5511 eelf_k1om_fbsd.c:520 eelf_l1om.c:5511 eelf_l1om_fbsd.c:520
++#: eelf_x86_64.c:5580 eelf_x86_64_cloudabi.c:523 eelf_x86_64_fbsd.c:523
++#: eelf_x86_64_haiku.c:523 eelf_x86_64_sol2.c:655
+ msgid "%F%P: invalid number for -z call-nop=suffix-: %s\n"
+ msgstr "%F%P: неисправан број за „-z call-nop=suffix-“: %s\n"
+
+-#: eelf32_x86_64.c:5557 eelf_i386.c:5176 eelf_i386_be.c:479
+-#: eelf_i386_fbsd.c:519 eelf_i386_ldso.c:494 eelf_i386_sol2.c:651
+-#: eelf_i386_vxworks.c:546 eelf_iamcu.c:519 eelf_k1om.c:5510
+-#: eelf_k1om_fbsd.c:519 eelf_l1om.c:5510 eelf_l1om_fbsd.c:519
+-#: eelf_x86_64.c:5557 eelf_x86_64_cloudabi.c:522 eelf_x86_64_fbsd.c:522
+-#: eelf_x86_64_sol2.c:654
++#: eelf32_x86_64.c:5585 eelf_i386.c:5204 eelf_i386_be.c:485
++#: eelf_i386_fbsd.c:525 eelf_i386_haiku.c:525 eelf_i386_ldso.c:500
++#: eelf_i386_sol2.c:657 eelf_i386_vxworks.c:552 eelf_iamcu.c:525
++#: eelf_k1om.c:5516 eelf_k1om_fbsd.c:525 eelf_l1om.c:5516 eelf_l1om_fbsd.c:525
++#: eelf_x86_64.c:5585 eelf_x86_64_cloudabi.c:528 eelf_x86_64_fbsd.c:528
++#: eelf_x86_64_haiku.c:528 eelf_x86_64_sol2.c:660
+ msgid "%F%P: unsupported option: -z %s\n"
+ msgstr "%F%P: неподржана опција: „-z“ „%s“\n"
+
+-#: eelf32_x86_64.c:5579 eelf_i386.c:5198 eelf_i386_fbsd.c:541
+-#: eelf_x86_64.c:5579 eelf_x86_64_cloudabi.c:544 eelf_x86_64_fbsd.c:544
+-#: eelf_x86_64_sol2.c:676
++#: eelf32_x86_64.c:5607 eelf_i386.c:5226 eelf_i386_fbsd.c:547
++#: eelf_i386_haiku.c:547 eelf_x86_64.c:5607 eelf_x86_64_cloudabi.c:550
++#: eelf_x86_64_fbsd.c:550 eelf_x86_64_haiku.c:550 eelf_x86_64_sol2.c:682
+ msgid "%F%P: invalid option for -z cet-report=: %s\n"
+ msgstr "%F%P: неисправна опција „-z cet-report=“: %s\n"
+
+-#: eelf32_x86_64.c:5593 eelf_i386.c:5212 eelf_i386_fbsd.c:555
+-#: eelf_x86_64.c:5593 eelf_x86_64_cloudabi.c:558 eelf_x86_64_fbsd.c:558
+-#: eelf_x86_64_sol2.c:690
++#: eelf32_x86_64.c:5621 eelf_i386.c:5240 eelf_i386_fbsd.c:561
++#: eelf_i386_haiku.c:561 eelf_x86_64.c:5621 eelf_x86_64_cloudabi.c:564
++#: eelf_x86_64_fbsd.c:564 eelf_x86_64_haiku.c:564 eelf_x86_64_sol2.c:696
+ msgid "%F%P: invalid x86-64 ISA level: %s\n"
+ msgstr "%F%P: неисправан „x86-64 ISA“ ниво: %s\n"
+
+-#: eelf32_x86_64.c:5630 eelf_i386.c:5249 eelf_i386_be.c:495
+-#: eelf_i386_fbsd.c:592 eelf_i386_ldso.c:519 eelf_i386_sol2.c:676
+-#: eelf_i386_vxworks.c:567 eelf_iamcu.c:544 eelf_k1om.c:5535
+-#: eelf_k1om_fbsd.c:544 eelf_l1om.c:5535 eelf_l1om_fbsd.c:544
+-#: eelf_x86_64.c:5683 eelf_x86_64_cloudabi.c:648 eelf_x86_64_fbsd.c:648
+-#: eelf_x86_64_sol2.c:780
++#: eelf32_x86_64.c:5663 eelf_i386.c:5282 eelf_i386_be.c:501
++#: eelf_i386_fbsd.c:603 eelf_i386_haiku.c:603 eelf_i386_ldso.c:525
++#: eelf_i386_sol2.c:682 eelf_i386_vxworks.c:573 eelf_iamcu.c:550
++#: eelf_k1om.c:5541 eelf_k1om_fbsd.c:550 eelf_l1om.c:5541 eelf_l1om_fbsd.c:550
++#: eelf_x86_64.c:5716 eelf_x86_64_cloudabi.c:659 eelf_x86_64_fbsd.c:659
++#: eelf_x86_64_haiku.c:659 eelf_x86_64_sol2.c:791
+ #, c-format
+ msgid " -z noextern-protected-data Do not treat protected data symbol as external\n"
+ msgstr " -z noextern-protected-data Не сматра заштићени симбол података спољним\n"
+
+-#: eelf32_x86_64.c:5633 eelf32lppc.c:803 eelf32lppclinux.c:803
+-#: eelf32lppcnto.c:803 eelf32lppcsim.c:803 eelf32ppc.c:803
+-#: eelf32ppc_fbsd.c:803 eelf32ppclinux.c:803 eelf32ppcnto.c:803
+-#: eelf32ppcsim.c:803 eelf32ppcvxworks.c:781 eelf32ppcwindiss.c:803
+-#: eelf64lppc.c:1328 eelf64lppc_fbsd.c:1328 eelf64ppc.c:1328
+-#: eelf64ppc_fbsd.c:1328 eelf_i386.c:5252 eelf_i386_be.c:498
+-#: eelf_i386_fbsd.c:595 eelf_i386_ldso.c:522 eelf_i386_sol2.c:679
+-#: eelf_i386_vxworks.c:570 eelf_iamcu.c:547 eelf_k1om.c:5538
+-#: eelf_k1om_fbsd.c:547 eelf_l1om.c:5538 eelf_l1om_fbsd.c:547
+-#: eelf_x86_64.c:5686 eelf_x86_64_cloudabi.c:651 eelf_x86_64_fbsd.c:651
+-#: eelf_x86_64_sol2.c:783
++#: eelf32_x86_64.c:5665 eelf_i386.c:5284 eelf_i386_be.c:503
++#: eelf_i386_fbsd.c:605 eelf_i386_haiku.c:605 eelf_i386_ldso.c:527
++#: eelf_i386_sol2.c:684 eelf_i386_vxworks.c:575 eelf_iamcu.c:552
++#: eelf_k1om.c:5543 eelf_k1om_fbsd.c:552 eelf_l1om.c:5543 eelf_l1om_fbsd.c:552
++#: eelf_x86_64.c:5718 eelf_x86_64_cloudabi.c:661 eelf_x86_64_fbsd.c:661
++#: eelf_x86_64_haiku.c:661 eelf_x86_64_sol2.c:793
++#, c-format
++msgid " -z indirect-extern-access Enable indirect external access\n"
++msgstr " -z indirect-extern-access Укључује посредан спољни приступ\n"
++
++#: eelf32_x86_64.c:5667 eelf_i386.c:5286 eelf_i386_be.c:505
++#: eelf_i386_fbsd.c:607 eelf_i386_haiku.c:607 eelf_i386_ldso.c:529
++#: eelf_i386_sol2.c:686 eelf_i386_vxworks.c:577 eelf_iamcu.c:554
++#: eelf_k1om.c:5545 eelf_k1om_fbsd.c:554 eelf_l1om.c:5545 eelf_l1om_fbsd.c:554
++#: eelf_x86_64.c:5720 eelf_x86_64_cloudabi.c:663 eelf_x86_64_fbsd.c:663
++#: eelf_x86_64_haiku.c:663 eelf_x86_64_sol2.c:795
++#, c-format
++msgid " -z noindirect-extern-access Disable indirect external access (default)\n"
++msgstr " -z noindirect-extern-access Искључује посредан спољни приступ (основно)\n"
++
++#: eelf32_x86_64.c:5670 eelf32lppc.c:817 eelf32lppclinux.c:817
++#: eelf32lppcnto.c:817 eelf32lppcsim.c:817 eelf32ppc.c:817
++#: eelf32ppc_fbsd.c:817 eelf32ppchaiku.c:817 eelf32ppclinux.c:817
++#: eelf32ppcnto.c:817 eelf32ppcsim.c:817 eelf32ppcvxworks.c:795
++#: eelf32ppcwindiss.c:817 eelf64lppc.c:1346 eelf64lppc_fbsd.c:1346
++#: eelf64ppc.c:1346 eelf64ppc_fbsd.c:1346 eelf_i386.c:5289 eelf_i386_be.c:508
++#: eelf_i386_fbsd.c:610 eelf_i386_haiku.c:610 eelf_i386_ldso.c:532
++#: eelf_i386_sol2.c:689 eelf_i386_vxworks.c:580 eelf_iamcu.c:557
++#: eelf_k1om.c:5548 eelf_k1om_fbsd.c:557 eelf_l1om.c:5548 eelf_l1om_fbsd.c:557
++#: eelf_x86_64.c:5723 eelf_x86_64_cloudabi.c:666 eelf_x86_64_fbsd.c:666
++#: eelf_x86_64_haiku.c:666 eelf_x86_64_sol2.c:798
+ #, c-format
+ msgid ""
+ " -z dynamic-undefined-weak Make undefined weak symbols dynamic\n"
+@@ -4935,46 +5011,46 @@ msgstr ""
+ " -z dynamic-undefined-weak Чини недефинисане слабе симболе динамичким\n"
+ " -z nodynamic-undefined-weak Не чини недефинисане слабе симболе динамичким\n"
+
+-#: eelf32_x86_64.c:5637 eelf_x86_64.c:5690 eelf_x86_64_cloudabi.c:655
+-#: eelf_x86_64_fbsd.c:655 eelf_x86_64_sol2.c:787
++#: eelf32_x86_64.c:5674 eelf_x86_64.c:5727 eelf_x86_64_cloudabi.c:670
++#: eelf_x86_64_fbsd.c:670 eelf_x86_64_haiku.c:670 eelf_x86_64_sol2.c:802
+ #, c-format
+ msgid " -z noreloc-overflow Disable relocation overflow check\n"
+ msgstr " -z noreloc-overflow Искључује проверу прекорачења премештаја\n"
+
+-#: eelf32_x86_64.c:5640 eelf_i386.c:5256 eelf_i386_be.c:502
+-#: eelf_i386_fbsd.c:599 eelf_i386_ldso.c:526 eelf_i386_sol2.c:683
+-#: eelf_i386_vxworks.c:574 eelf_iamcu.c:551 eelf_k1om.c:5542
+-#: eelf_k1om_fbsd.c:551 eelf_l1om.c:5542 eelf_l1om_fbsd.c:551
+-#: eelf_x86_64.c:5693 eelf_x86_64_cloudabi.c:658 eelf_x86_64_fbsd.c:658
+-#: eelf_x86_64_sol2.c:790
++#: eelf32_x86_64.c:5677 eelf_i386.c:5293 eelf_i386_be.c:512
++#: eelf_i386_fbsd.c:614 eelf_i386_haiku.c:614 eelf_i386_ldso.c:536
++#: eelf_i386_sol2.c:693 eelf_i386_vxworks.c:584 eelf_iamcu.c:561
++#: eelf_k1om.c:5552 eelf_k1om_fbsd.c:561 eelf_l1om.c:5552 eelf_l1om_fbsd.c:561
++#: eelf_x86_64.c:5730 eelf_x86_64_cloudabi.c:673 eelf_x86_64_fbsd.c:673
++#: eelf_x86_64_haiku.c:673 eelf_x86_64_sol2.c:805
+ #, c-format
+ msgid " -z call-nop=PADDING Use PADDING as 1-byte NOP for branch\n"
+ msgstr " -z call-nop=ПОПУЊАВАЊЕ Користи ПОПУЊАВАЊЕ као 1-бајтни „NOP“ за грану\n"
+
+-#: eelf32_x86_64.c:5643 eelf_i386.c:5259 eelf_i386_fbsd.c:602
+-#: eelf_x86_64.c:5696 eelf_x86_64_cloudabi.c:661 eelf_x86_64_fbsd.c:661
+-#: eelf_x86_64_sol2.c:793
++#: eelf32_x86_64.c:5680 eelf_i386.c:5296 eelf_i386_fbsd.c:617
++#: eelf_i386_haiku.c:617 eelf_x86_64.c:5733 eelf_x86_64_cloudabi.c:676
++#: eelf_x86_64_fbsd.c:676 eelf_x86_64_haiku.c:676 eelf_x86_64_sol2.c:808
+ #, c-format
+ msgid " -z ibtplt Generate IBT-enabled PLT entries\n"
+ msgstr " -z ibtplt Ствара „IBT“-ом омогућене „PLT“ уносе\n"
+
+-#: eelf32_x86_64.c:5645 eelf_i386.c:5261 eelf_i386_fbsd.c:604
+-#: eelf_x86_64.c:5698 eelf_x86_64_cloudabi.c:663 eelf_x86_64_fbsd.c:663
+-#: eelf_x86_64_sol2.c:795
++#: eelf32_x86_64.c:5682 eelf_i386.c:5298 eelf_i386_fbsd.c:619
++#: eelf_i386_haiku.c:619 eelf_x86_64.c:5735 eelf_x86_64_cloudabi.c:678
++#: eelf_x86_64_fbsd.c:678 eelf_x86_64_haiku.c:678 eelf_x86_64_sol2.c:810
+ #, c-format
+ msgid " -z ibt Generate GNU_PROPERTY_X86_FEATURE_1_IBT\n"
+ msgstr " -z ibt Ствара „GNU_PROPERTY_X86_FEATURE_1_IBT“\n"
+
+-#: eelf32_x86_64.c:5647 eelf_i386.c:5263 eelf_i386_fbsd.c:606
+-#: eelf_x86_64.c:5700 eelf_x86_64_cloudabi.c:665 eelf_x86_64_fbsd.c:665
+-#: eelf_x86_64_sol2.c:797
++#: eelf32_x86_64.c:5684 eelf_i386.c:5300 eelf_i386_fbsd.c:621
++#: eelf_i386_haiku.c:621 eelf_x86_64.c:5737 eelf_x86_64_cloudabi.c:680
++#: eelf_x86_64_fbsd.c:680 eelf_x86_64_haiku.c:680 eelf_x86_64_sol2.c:812
+ #, c-format
+ msgid " -z shstk Generate GNU_PROPERTY_X86_FEATURE_1_SHSTK\n"
+ msgstr " -z shstk Ствара „GNU_PROPERTY_X86_FEATURE_1_SHSTK“\n"
+
+-#: eelf32_x86_64.c:5649 eelf_i386.c:5265 eelf_i386_fbsd.c:608
+-#: eelf_x86_64.c:5702 eelf_x86_64_cloudabi.c:667 eelf_x86_64_fbsd.c:667
+-#: eelf_x86_64_sol2.c:799
++#: eelf32_x86_64.c:5686 eelf_i386.c:5302 eelf_i386_fbsd.c:623
++#: eelf_i386_haiku.c:623 eelf_x86_64.c:5739 eelf_x86_64_cloudabi.c:682
++#: eelf_x86_64_fbsd.c:682 eelf_x86_64_haiku.c:682 eelf_x86_64_sol2.c:814
+ #, c-format
+ msgid ""
+ " -z cet-report=[none|warning|error] (default: none)\n"
+@@ -4983,55 +5059,73 @@ msgstr ""
+ " -z cet-report=[ништа|упозорење|грешка] (основно: ништа)\n"
+ " Извештава о недостајућим „IBT“ и „SHSTK“ извештајима\n"
+
+-#: eelf32_x86_64.c:5653 eelf_i386.c:5269 eelf_i386_fbsd.c:612
+-#: eelf_x86_64.c:5706 eelf_x86_64_cloudabi.c:671 eelf_x86_64_fbsd.c:671
+-#: eelf_x86_64_sol2.c:803
++#: eelf32_x86_64.c:5690 eelf_i386.c:5306 eelf_i386_fbsd.c:627
++#: eelf_i386_haiku.c:627 eelf_x86_64.c:5743 eelf_x86_64_cloudabi.c:686
++#: eelf_x86_64_fbsd.c:686 eelf_x86_64_haiku.c:686 eelf_x86_64_sol2.c:818
+ #, c-format
+ msgid " -z report-relative-reloc Report relative relocations\n"
+ msgstr " -z report-relative-reloc Извештава о релативним премештајима\n"
+
+-#: eelf32_x86_64.c:5656 eelf_i386.c:5272 eelf_i386_fbsd.c:615
+-#: eelf_x86_64.c:5709 eelf_x86_64_cloudabi.c:674 eelf_x86_64_fbsd.c:674
+-#: eelf_x86_64_sol2.c:806
++#: eelf32_x86_64.c:5693 eelf_i386.c:5309 eelf_i386_fbsd.c:630
++#: eelf_i386_haiku.c:630 eelf_x86_64.c:5746 eelf_x86_64_cloudabi.c:689
++#: eelf_x86_64_fbsd.c:689 eelf_x86_64_haiku.c:689 eelf_x86_64_sol2.c:821
+ #, c-format
+ msgid " -z x86-64-{baseline|v[234]} Mark x86-64-{baseline|v[234]} ISA level as needed\n"
+ msgstr " -z x86-64-{baseline|v[234]} Означава потребним „x86-64-{baseline|v[234]} ISA“ ниво\n"
+
+-#: eelf32b4300.c:698 eelf32bmip.c:698 eelf32bmipn32.c:712 eelf32bsmip.c:712
+-#: eelf32btsmip.c:698 eelf32btsmip_fbsd.c:698 eelf32btsmipn32.c:698
+-#: eelf32btsmipn32_fbsd.c:698 eelf32ebmip.c:698 eelf32ebmipvxworks.c:737
+-#: eelf32elmip.c:698 eelf32elmipvxworks.c:737 eelf32l4300.c:698
+-#: eelf32lmip.c:698 eelf32lr5900.c:557 eelf32lr5900n32.c:556 eelf32lsmip.c:698
+-#: eelf32ltsmip.c:698 eelf32ltsmip_fbsd.c:698 eelf32ltsmipn32.c:698
+-#: eelf32ltsmipn32_fbsd.c:698 eelf32mipswindiss.c:531 eelf64bmip.c:712
+-#: eelf64btsmip.c:698 eelf64btsmip_fbsd.c:698 eelf64ltsmip.c:698
+-#: eelf64ltsmip_fbsd.c:698
++#: eelf32_x86_64.c:5696 eelf64lppc.c:1350 eelf64lppc_fbsd.c:1350
++#: eelf64ppc.c:1350 eelf64ppc_fbsd.c:1350 eelf_i386.c:5312
++#: eelf_i386_fbsd.c:633 eelf_i386_haiku.c:633 eelf_x86_64.c:5763
++#: eelf_x86_64_cloudabi.c:706 eelf_x86_64_fbsd.c:706 eelf_x86_64_haiku.c:706
++#: eelf_x86_64_sol2.c:838
++#, c-format
++msgid " -z pack-relative-relocs Pack relative relocations\n"
++msgstr " -z pack-relative-relocs Пакује релативне премештаје\n"
++
++#: eelf32_x86_64.c:5698 eelf64lppc.c:1352 eelf64lppc_fbsd.c:1352
++#: eelf64ppc.c:1352 eelf64ppc_fbsd.c:1352 eelf_i386.c:5314
++#: eelf_i386_fbsd.c:635 eelf_i386_haiku.c:635 eelf_x86_64.c:5765
++#: eelf_x86_64_cloudabi.c:708 eelf_x86_64_fbsd.c:708 eelf_x86_64_haiku.c:708
++#: eelf_x86_64_sol2.c:840
++#, c-format
++msgid " -z nopack-relative-relocs Do not pack relative relocations (default)\n"
++msgstr " -z nopack-relative-relocs Не пакује релативне премештаје (основно)\n"
++
++#: eelf32b4300.c:700 eelf32bmip.c:700 eelf32bmipn32.c:714 eelf32bsmip.c:714
++#: eelf32btsmip.c:700 eelf32btsmip_fbsd.c:700 eelf32btsmipn32.c:700
++#: eelf32btsmipn32_fbsd.c:700 eelf32ebmip.c:700 eelf32ebmipvxworks.c:739
++#: eelf32elmip.c:700 eelf32elmipvxworks.c:739 eelf32l4300.c:700
++#: eelf32lmip.c:700 eelf32lr5900.c:559 eelf32lr5900n32.c:558 eelf32lsmip.c:700
++#: eelf32ltsmip.c:700 eelf32ltsmip_fbsd.c:700 eelf32ltsmipn32.c:700
++#: eelf32ltsmipn32_fbsd.c:700 eelf32mipswindiss.c:533 eelf64bmip.c:714
++#: eelf64btsmip.c:700 eelf64btsmip_fbsd.c:700 eelf64ltsmip.c:700
++#: eelf64ltsmip_fbsd.c:700 eelf_mipsel_haiku.c:700
+ #, c-format
+ msgid " --insn32 Only generate 32-bit microMIPS instructions\n"
+ msgstr " --insn32 Ствара само 32-битне „microMIPS“ инструкције\n"
+
+-#: eelf32b4300.c:701 eelf32bmip.c:701 eelf32bmipn32.c:715 eelf32bsmip.c:715
+-#: eelf32btsmip.c:701 eelf32btsmip_fbsd.c:701 eelf32btsmipn32.c:701
+-#: eelf32btsmipn32_fbsd.c:701 eelf32ebmip.c:701 eelf32ebmipvxworks.c:740
+-#: eelf32elmip.c:701 eelf32elmipvxworks.c:740 eelf32l4300.c:701
+-#: eelf32lmip.c:701 eelf32lr5900.c:560 eelf32lr5900n32.c:559 eelf32lsmip.c:701
+-#: eelf32ltsmip.c:701 eelf32ltsmip_fbsd.c:701 eelf32ltsmipn32.c:701
+-#: eelf32ltsmipn32_fbsd.c:701 eelf32mipswindiss.c:534 eelf64bmip.c:715
+-#: eelf64btsmip.c:701 eelf64btsmip_fbsd.c:701 eelf64ltsmip.c:701
+-#: eelf64ltsmip_fbsd.c:701
++#: eelf32b4300.c:703 eelf32bmip.c:703 eelf32bmipn32.c:717 eelf32bsmip.c:717
++#: eelf32btsmip.c:703 eelf32btsmip_fbsd.c:703 eelf32btsmipn32.c:703
++#: eelf32btsmipn32_fbsd.c:703 eelf32ebmip.c:703 eelf32ebmipvxworks.c:742
++#: eelf32elmip.c:703 eelf32elmipvxworks.c:742 eelf32l4300.c:703
++#: eelf32lmip.c:703 eelf32lr5900.c:562 eelf32lr5900n32.c:561 eelf32lsmip.c:703
++#: eelf32ltsmip.c:703 eelf32ltsmip_fbsd.c:703 eelf32ltsmipn32.c:703
++#: eelf32ltsmipn32_fbsd.c:703 eelf32mipswindiss.c:536 eelf64bmip.c:717
++#: eelf64btsmip.c:703 eelf64btsmip_fbsd.c:703 eelf64ltsmip.c:703
++#: eelf64ltsmip_fbsd.c:703 eelf_mipsel_haiku.c:703
+ #, c-format
+ msgid " --no-insn32 Generate all microMIPS instructions\n"
+ msgstr " --no---insn32 Ствара све „microMIPS“ инструкције\n"
+
+-#: eelf32b4300.c:704 eelf32bmip.c:704 eelf32bmipn32.c:718 eelf32bsmip.c:718
+-#: eelf32btsmip.c:704 eelf32btsmip_fbsd.c:704 eelf32btsmipn32.c:704
+-#: eelf32btsmipn32_fbsd.c:704 eelf32ebmip.c:704 eelf32ebmipvxworks.c:743
+-#: eelf32elmip.c:704 eelf32elmipvxworks.c:743 eelf32l4300.c:704
+-#: eelf32lmip.c:704 eelf32lr5900.c:563 eelf32lr5900n32.c:562 eelf32lsmip.c:704
+-#: eelf32ltsmip.c:704 eelf32ltsmip_fbsd.c:704 eelf32ltsmipn32.c:704
+-#: eelf32ltsmipn32_fbsd.c:704 eelf32mipswindiss.c:537 eelf64bmip.c:718
+-#: eelf64btsmip.c:704 eelf64btsmip_fbsd.c:704 eelf64ltsmip.c:704
+-#: eelf64ltsmip_fbsd.c:704
++#: eelf32b4300.c:706 eelf32bmip.c:706 eelf32bmipn32.c:720 eelf32bsmip.c:720
++#: eelf32btsmip.c:706 eelf32btsmip_fbsd.c:706 eelf32btsmipn32.c:706
++#: eelf32btsmipn32_fbsd.c:706 eelf32ebmip.c:706 eelf32ebmipvxworks.c:745
++#: eelf32elmip.c:706 eelf32elmipvxworks.c:745 eelf32l4300.c:706
++#: eelf32lmip.c:706 eelf32lr5900.c:565 eelf32lr5900n32.c:564 eelf32lsmip.c:706
++#: eelf32ltsmip.c:706 eelf32ltsmip_fbsd.c:706 eelf32ltsmipn32.c:706
++#: eelf32ltsmipn32_fbsd.c:706 eelf32mipswindiss.c:539 eelf64bmip.c:720
++#: eelf64btsmip.c:706 eelf64btsmip_fbsd.c:706 eelf64ltsmip.c:706
++#: eelf64ltsmip_fbsd.c:706 eelf_mipsel_haiku.c:706
+ #, c-format
+ msgid ""
+ " --ignore-branch-isa Accept invalid branch relocations requiring\n"
+@@ -5040,15 +5134,15 @@ msgstr ""
+ " --ignore-branch-isa Прихвата неисправне премештаје гране захтевајући\n"
+ " прекидача „ISA“ режима\n"
+
+-#: eelf32b4300.c:708 eelf32bmip.c:708 eelf32bmipn32.c:722 eelf32bsmip.c:722
+-#: eelf32btsmip.c:708 eelf32btsmip_fbsd.c:708 eelf32btsmipn32.c:708
+-#: eelf32btsmipn32_fbsd.c:708 eelf32ebmip.c:708 eelf32ebmipvxworks.c:747
+-#: eelf32elmip.c:708 eelf32elmipvxworks.c:747 eelf32l4300.c:708
+-#: eelf32lmip.c:708 eelf32lr5900.c:567 eelf32lr5900n32.c:566 eelf32lsmip.c:708
+-#: eelf32ltsmip.c:708 eelf32ltsmip_fbsd.c:708 eelf32ltsmipn32.c:708
+-#: eelf32ltsmipn32_fbsd.c:708 eelf32mipswindiss.c:541 eelf64bmip.c:722
+-#: eelf64btsmip.c:708 eelf64btsmip_fbsd.c:708 eelf64ltsmip.c:708
+-#: eelf64ltsmip_fbsd.c:708
++#: eelf32b4300.c:710 eelf32bmip.c:710 eelf32bmipn32.c:724 eelf32bsmip.c:724
++#: eelf32btsmip.c:710 eelf32btsmip_fbsd.c:710 eelf32btsmipn32.c:710
++#: eelf32btsmipn32_fbsd.c:710 eelf32ebmip.c:710 eelf32ebmipvxworks.c:749
++#: eelf32elmip.c:710 eelf32elmipvxworks.c:749 eelf32l4300.c:710
++#: eelf32lmip.c:710 eelf32lr5900.c:569 eelf32lr5900n32.c:568 eelf32lsmip.c:710
++#: eelf32ltsmip.c:710 eelf32ltsmip_fbsd.c:710 eelf32ltsmipn32.c:710
++#: eelf32ltsmipn32_fbsd.c:710 eelf32mipswindiss.c:543 eelf64bmip.c:724
++#: eelf64btsmip.c:710 eelf64btsmip_fbsd.c:710 eelf64ltsmip.c:710
++#: eelf64ltsmip_fbsd.c:710 eelf_mipsel_haiku.c:710
+ #, c-format
+ msgid ""
+ " --no-ignore-branch-isa Reject invalid branch relocations requiring\n"
+@@ -5057,38 +5151,38 @@ msgstr ""
+ " --no-ignore-branch-isa Одбацује неисправне премештаје гране захтевајући\n"
+ " прекидача „ISA“ режима\n"
+
+-#: eelf32b4300.c:712 eelf32bmip.c:712 eelf32bmipn32.c:726 eelf32bsmip.c:726
+-#: eelf32btsmip.c:712 eelf32btsmip_fbsd.c:712 eelf32btsmipn32.c:712
+-#: eelf32btsmipn32_fbsd.c:712 eelf32ebmip.c:712 eelf32ebmipvxworks.c:751
+-#: eelf32elmip.c:712 eelf32elmipvxworks.c:751 eelf32l4300.c:712
+-#: eelf32lmip.c:712 eelf32lr5900.c:571 eelf32lr5900n32.c:570 eelf32lsmip.c:712
+-#: eelf32ltsmip.c:712 eelf32ltsmip_fbsd.c:712 eelf32ltsmipn32.c:712
+-#: eelf32ltsmipn32_fbsd.c:712 eelf32mipswindiss.c:545 eelf64bmip.c:726
+-#: eelf64btsmip.c:712 eelf64btsmip_fbsd.c:712 eelf64ltsmip.c:712
+-#: eelf64ltsmip_fbsd.c:712
++#: eelf32b4300.c:714 eelf32bmip.c:714 eelf32bmipn32.c:728 eelf32bsmip.c:728
++#: eelf32btsmip.c:714 eelf32btsmip_fbsd.c:714 eelf32btsmipn32.c:714
++#: eelf32btsmipn32_fbsd.c:714 eelf32ebmip.c:714 eelf32ebmipvxworks.c:753
++#: eelf32elmip.c:714 eelf32elmipvxworks.c:753 eelf32l4300.c:714
++#: eelf32lmip.c:714 eelf32lr5900.c:573 eelf32lr5900n32.c:572 eelf32lsmip.c:714
++#: eelf32ltsmip.c:714 eelf32ltsmip_fbsd.c:714 eelf32ltsmipn32.c:714
++#: eelf32ltsmipn32_fbsd.c:714 eelf32mipswindiss.c:547 eelf64bmip.c:728
++#: eelf64btsmip.c:714 eelf64btsmip_fbsd.c:714 eelf64ltsmip.c:714
++#: eelf64ltsmip_fbsd.c:714 eelf_mipsel_haiku.c:714
+ #, c-format
+ msgid " --compact-branches Generate compact branches/jumps for MIPS R6\n"
+ msgstr " --compact-branches Ствара сажете гране/скокове за „MIPS R6“\n"
+
+-#: eelf32b4300.c:715 eelf32bmip.c:715 eelf32bmipn32.c:729 eelf32bsmip.c:729
+-#: eelf32btsmip.c:715 eelf32btsmip_fbsd.c:715 eelf32btsmipn32.c:715
+-#: eelf32btsmipn32_fbsd.c:715 eelf32ebmip.c:715 eelf32ebmipvxworks.c:754
+-#: eelf32elmip.c:715 eelf32elmipvxworks.c:754 eelf32l4300.c:715
+-#: eelf32lmip.c:715 eelf32lr5900.c:574 eelf32lr5900n32.c:573 eelf32lsmip.c:715
+-#: eelf32ltsmip.c:715 eelf32ltsmip_fbsd.c:715 eelf32ltsmipn32.c:715
+-#: eelf32ltsmipn32_fbsd.c:715 eelf32mipswindiss.c:548 eelf64bmip.c:729
+-#: eelf64btsmip.c:715 eelf64btsmip_fbsd.c:715 eelf64ltsmip.c:715
+-#: eelf64ltsmip_fbsd.c:715
++#: eelf32b4300.c:717 eelf32bmip.c:717 eelf32bmipn32.c:731 eelf32bsmip.c:731
++#: eelf32btsmip.c:717 eelf32btsmip_fbsd.c:717 eelf32btsmipn32.c:717
++#: eelf32btsmipn32_fbsd.c:717 eelf32ebmip.c:717 eelf32ebmipvxworks.c:756
++#: eelf32elmip.c:717 eelf32elmipvxworks.c:756 eelf32l4300.c:717
++#: eelf32lmip.c:717 eelf32lr5900.c:576 eelf32lr5900n32.c:575 eelf32lsmip.c:717
++#: eelf32ltsmip.c:717 eelf32ltsmip_fbsd.c:717 eelf32ltsmipn32.c:717
++#: eelf32ltsmipn32_fbsd.c:717 eelf32mipswindiss.c:550 eelf64bmip.c:731
++#: eelf64btsmip.c:717 eelf64btsmip_fbsd.c:717 eelf64ltsmip.c:717
++#: eelf64ltsmip_fbsd.c:717 eelf_mipsel_haiku.c:717
+ #, c-format
+ msgid " --no-compact-branches Generate delay slot branches/jumps for MIPS R6\n"
+ msgstr " --no-compact-branches Ствара гране/скокове застоја утора за „MIPS R6“\n"
+
+-#: eelf32bfin.c:454 eelf32bfinfd.c:479
++#: eelf32bfin.c:456 eelf32bfinfd.c:481
+ #, c-format
+ msgid " --code-in-l1 Put code in L1\n"
+ msgstr " --code-in-l1 Ставља код у „L1“\n"
+
+-#: eelf32bfin.c:456 eelf32bfinfd.c:481
++#: eelf32bfin.c:458 eelf32bfinfd.c:483
+ #, c-format
+ msgid " --data-in-l1 Put data in L1\n"
+ msgstr " --data-in-l1 Ставља податке у „L1“\n"
+@@ -5114,140 +5208,146 @@ msgid "%X%P: %pB: can not create runtime reloc information: %s\n"
+ msgstr "%X%P: %pB: не могу да направим податке премштаја времена извршења: %s\n"
+
+ #: eelf32lppc.c:96 eelf32lppclinux.c:96 eelf32lppcnto.c:96 eelf32lppcsim.c:96
+-#: eelf32ppc.c:96 eelf32ppc_fbsd.c:96 eelf32ppclinux.c:96 eelf32ppcnto.c:96
+-#: eelf32ppcsim.c:96 eelf32ppcwindiss.c:96
++#: eelf32ppc.c:96 eelf32ppc_fbsd.c:96 eelf32ppchaiku.c:96 eelf32ppclinux.c:96
++#: eelf32ppcnto.c:96 eelf32ppcsim.c:96 eelf32ppcwindiss.c:96
+ msgid "%X%P: select_plt_layout problem %E\n"
+ msgstr "%X%P: „select_plt_layout“ проблем „%E“\n"
+
+ #: eelf32lppc.c:160 eelf32lppclinux.c:160 eelf32lppcnto.c:160
+ #: eelf32lppcsim.c:160 eelf32ppc.c:160 eelf32ppc_fbsd.c:160
+-#: eelf32ppclinux.c:160 eelf32ppcnto.c:160 eelf32ppcsim.c:160
+-#: eelf32ppcvxworks.c:105 eelf32ppcwindiss.c:160 eelf64lppc.c:321
+-#: eelf64lppc_fbsd.c:321 eelf64ppc.c:321 eelf64ppc_fbsd.c:321
++#: eelf32ppchaiku.c:160 eelf32ppclinux.c:160 eelf32ppcnto.c:160
++#: eelf32ppcsim.c:160 eelf32ppcvxworks.c:105 eelf32ppcwindiss.c:160
++#: eelf64lppc.c:321 eelf64lppc_fbsd.c:321 eelf64ppc.c:321 eelf64ppc_fbsd.c:321
+ msgid "%X%P: inline PLT: %E\n"
+ msgstr "%X%P: унутарње „PLT“: %E\n"
+
+ #: eelf32lppc.c:168 eelf32lppclinux.c:168 eelf32lppcnto.c:168
+ #: eelf32lppcsim.c:168 eelf32ppc.c:168 eelf32ppc_fbsd.c:168
+-#: eelf32ppclinux.c:168 eelf32ppcnto.c:168 eelf32ppcsim.c:168
+-#: eelf32ppcvxworks.c:113 eelf32ppcwindiss.c:168 eelf64lppc.c:325
+-#: eelf64lppc.c:344 eelf64lppc_fbsd.c:325 eelf64lppc_fbsd.c:344
+-#: eelf64ppc.c:325 eelf64ppc.c:344 eelf64ppc_fbsd.c:325 eelf64ppc_fbsd.c:344
++#: eelf32ppchaiku.c:168 eelf32ppclinux.c:168 eelf32ppcnto.c:168
++#: eelf32ppcsim.c:168 eelf32ppcvxworks.c:113 eelf32ppcwindiss.c:168
++#: eelf64lppc.c:325 eelf64lppc.c:344 eelf64lppc_fbsd.c:325
++#: eelf64lppc_fbsd.c:344 eelf64ppc.c:325 eelf64ppc.c:344 eelf64ppc_fbsd.c:325
++#: eelf64ppc_fbsd.c:344
+ msgid "%X%P: TLS problem %E\n"
+ msgstr "%X%P: „TLS“ проблем „%E“\n"
+
+ #: eelf32lppc.c:255 eelf32lppclinux.c:255 eelf32lppcnto.c:255
+ #: eelf32lppcsim.c:255 eelf32ppc.c:255 eelf32ppc_fbsd.c:255
+-#: eelf32ppclinux.c:255 eelf32ppcnto.c:255 eelf32ppcsim.c:255
+-#: eelf32ppcvxworks.c:200 eelf32ppcwindiss.c:255
++#: eelf32ppchaiku.c:255 eelf32ppclinux.c:255 eelf32ppcnto.c:255
++#: eelf32ppcsim.c:255 eelf32ppcvxworks.c:200 eelf32ppcwindiss.c:255
+ msgid "%X%P: ppc_finish_symbols problem %E\n"
+ msgstr "%X%P: „ppc_finish_symbols“ проблем „%E“\n"
+
+-#: eelf32lppc.c:744 eelf32lppclinux.c:744 eelf32lppcnto.c:744
+-#: eelf32lppcsim.c:744 eelf32ppc.c:744 eelf32ppc_fbsd.c:744
+-#: eelf32ppclinux.c:744 eelf32ppcnto.c:744 eelf32ppcsim.c:744
+-#: eelf32ppcvxworks.c:718 eelf32ppcwindiss.c:744 eelf64lppc.c:1195
+-#: eelf64lppc_fbsd.c:1195 eelf64ppc.c:1195 eelf64ppc_fbsd.c:1195
++#: eelf32lppc.c:758 eelf32lppclinux.c:758 eelf32lppcnto.c:758
++#: eelf32lppcsim.c:758 eelf32ppc.c:758 eelf32ppc_fbsd.c:758
++#: eelf32ppchaiku.c:758 eelf32ppclinux.c:758 eelf32ppcnto.c:758
++#: eelf32ppcsim.c:758 eelf32ppcvxworks.c:732 eelf32ppcwindiss.c:758
++#: eelf64lppc.c:1213 eelf64lppc_fbsd.c:1213 eelf64ppc.c:1213
++#: eelf64ppc_fbsd.c:1213
+ msgid "%F%P: invalid --plt-align `%s'\n"
+ msgstr "%F%P: неисправно „--plt-align“ „%s“\n"
+
+-#: eelf32lppc.c:777 eelf32lppclinux.c:777 eelf32lppcnto.c:777
+-#: eelf32lppcsim.c:777 eelf32ppc.c:777 eelf32ppc_fbsd.c:777
+-#: eelf32ppclinux.c:777 eelf32ppcnto.c:777 eelf32ppcsim.c:777
+-#: eelf32ppcvxworks.c:751 eelf32ppcwindiss.c:777
++#: eelf32lppc.c:791 eelf32lppclinux.c:791 eelf32lppcnto.c:791
++#: eelf32lppcsim.c:791 eelf32ppc.c:791 eelf32ppc_fbsd.c:791
++#: eelf32ppchaiku.c:791 eelf32ppclinux.c:791 eelf32ppcnto.c:791
++#: eelf32ppcsim.c:791 eelf32ppcvxworks.c:765 eelf32ppcwindiss.c:791
+ msgid "%F%P: invalid pagesize `%s'\n"
+ msgstr "%F%P: неисправна величина странице „%s“\n"
+
+-#: eelf32lppc.c:807 eelf32lppclinux.c:807 eelf32lppcnto.c:807
+-#: eelf32lppcsim.c:807 eelf32ppc.c:807 eelf32ppc_fbsd.c:807
+-#: eelf32ppclinux.c:807 eelf32ppcnto.c:807 eelf32ppcsim.c:807
+-#: eelf32ppcvxworks.c:785 eelf32ppcwindiss.c:807 eelf64lppc.c:1375
+-#: eelf64lppc_fbsd.c:1375 eelf64ppc.c:1375 eelf64ppc_fbsd.c:1375
++#: eelf32lppc.c:821 eelf32lppclinux.c:821 eelf32lppcnto.c:821
++#: eelf32lppcsim.c:821 eelf32ppc.c:821 eelf32ppc_fbsd.c:821
++#: eelf32ppchaiku.c:821 eelf32ppclinux.c:821 eelf32ppcnto.c:821
++#: eelf32ppcsim.c:821 eelf32ppcvxworks.c:799 eelf32ppcwindiss.c:821
++#: eelf64lppc.c:1398 eelf64lppc_fbsd.c:1398 eelf64ppc.c:1398
++#: eelf64ppc_fbsd.c:1398
+ #, c-format
+ msgid " --emit-stub-syms Label linker stubs with a symbol\n"
+ msgstr " --emit-stub-syms Етикетира окрајке повезивача симболом\n"
+
+-#: eelf32lppc.c:810 eelf32lppclinux.c:810 eelf32lppcnto.c:810
+-#: eelf32lppcsim.c:810 eelf32ppc.c:810 eelf32ppc_fbsd.c:810
+-#: eelf32ppclinux.c:810 eelf32ppcnto.c:810 eelf32ppcsim.c:810
+-#: eelf32ppcvxworks.c:788 eelf32ppcwindiss.c:810 eelf64lppc.c:1378
+-#: eelf64lppc_fbsd.c:1378 eelf64ppc.c:1378 eelf64ppc_fbsd.c:1378
++#: eelf32lppc.c:824 eelf32lppclinux.c:824 eelf32lppcnto.c:824
++#: eelf32lppcsim.c:824 eelf32ppc.c:824 eelf32ppc_fbsd.c:824
++#: eelf32ppchaiku.c:824 eelf32ppclinux.c:824 eelf32ppcnto.c:824
++#: eelf32ppcsim.c:824 eelf32ppcvxworks.c:802 eelf32ppcwindiss.c:824
++#: eelf64lppc.c:1401 eelf64lppc_fbsd.c:1401 eelf64ppc.c:1401
++#: eelf64ppc_fbsd.c:1401
+ #, c-format
+ msgid " --no-emit-stub-syms Don't label linker stubs with a symbol\n"
+ msgstr " --no-emit-stub-syms Не етикетира окрајке повезивача симболом\n"
+
+-#: eelf32lppc.c:813 eelf32lppclinux.c:813 eelf32lppcnto.c:813
+-#: eelf32lppcsim.c:813 eelf32ppc.c:813 eelf32ppc_fbsd.c:813
+-#: eelf32ppclinux.c:813 eelf32ppcnto.c:813 eelf32ppcsim.c:813
+-#: eelf32ppcvxworks.c:791 eelf32ppcwindiss.c:813 eelf64lppc.c:1398
+-#: eelf64lppc_fbsd.c:1398 eelf64ppc.c:1398 eelf64ppc_fbsd.c:1398
++#: eelf32lppc.c:827 eelf32lppclinux.c:827 eelf32lppcnto.c:827
++#: eelf32lppcsim.c:827 eelf32ppc.c:827 eelf32ppc_fbsd.c:827
++#: eelf32ppchaiku.c:827 eelf32ppclinux.c:827 eelf32ppcnto.c:827
++#: eelf32ppcsim.c:827 eelf32ppcvxworks.c:805 eelf32ppcwindiss.c:827
++#: eelf64lppc.c:1421 eelf64lppc_fbsd.c:1421 eelf64ppc.c:1421
++#: eelf64ppc_fbsd.c:1421
+ #, c-format
+ msgid " --no-tls-optimize Don't try to optimize TLS accesses\n"
+ msgstr " --no-tls-optimize Не покушава да оптимизује „TLS“ приступе\n"
+
+-#: eelf32lppc.c:816 eelf32lppclinux.c:816 eelf32lppcnto.c:816
+-#: eelf32lppcsim.c:816 eelf32ppc.c:816 eelf32ppc_fbsd.c:816
+-#: eelf32ppclinux.c:816 eelf32ppcnto.c:816 eelf32ppcsim.c:816
+-#: eelf32ppcvxworks.c:794 eelf32ppcwindiss.c:816 eelf64lppc.c:1404
+-#: eelf64lppc_fbsd.c:1404 eelf64ppc.c:1404 eelf64ppc_fbsd.c:1404
++#: eelf32lppc.c:830 eelf32lppclinux.c:830 eelf32lppcnto.c:830
++#: eelf32lppcsim.c:830 eelf32ppc.c:830 eelf32ppc_fbsd.c:830
++#: eelf32ppchaiku.c:830 eelf32ppclinux.c:830 eelf32ppcnto.c:830
++#: eelf32ppcsim.c:830 eelf32ppcvxworks.c:808 eelf32ppcwindiss.c:830
++#: eelf64lppc.c:1427 eelf64lppc_fbsd.c:1427 eelf64ppc.c:1427
++#: eelf64ppc_fbsd.c:1427
+ #, c-format
+ msgid " --no-tls-get-addr-optimize Don't use a special __tls_get_addr call\n"
+ msgstr " --no-tls-get-addr-optimize Не користи специјални „__tls_get_addr“ позив\n"
+
+-#: eelf32lppc.c:819 eelf32lppclinux.c:819 eelf32lppcnto.c:819
+-#: eelf32lppcsim.c:819 eelf32ppc.c:819 eelf32ppc_fbsd.c:819
+-#: eelf32ppclinux.c:819 eelf32ppcnto.c:819 eelf32ppcsim.c:819
+-#: eelf32ppcwindiss.c:819
++#: eelf32lppc.c:833 eelf32lppclinux.c:833 eelf32lppcnto.c:833
++#: eelf32lppcsim.c:833 eelf32ppc.c:833 eelf32ppc_fbsd.c:833
++#: eelf32ppchaiku.c:833 eelf32ppclinux.c:833 eelf32ppcnto.c:833
++#: eelf32ppcsim.c:833 eelf32ppcwindiss.c:833
+ #, c-format
+ msgid " --secure-plt Use new-style PLT if possible\n"
+ msgstr " --secure-plt Користи новостилни „PLT“ ако је могуће\n"
+
+-#: eelf32lppc.c:822 eelf32lppclinux.c:822 eelf32lppcnto.c:822
+-#: eelf32lppcsim.c:822 eelf32ppc.c:822 eelf32ppc_fbsd.c:822
+-#: eelf32ppclinux.c:822 eelf32ppcnto.c:822 eelf32ppcsim.c:822
+-#: eelf32ppcwindiss.c:822
++#: eelf32lppc.c:836 eelf32lppclinux.c:836 eelf32lppcnto.c:836
++#: eelf32lppcsim.c:836 eelf32ppc.c:836 eelf32ppc_fbsd.c:836
++#: eelf32ppchaiku.c:836 eelf32ppclinux.c:836 eelf32ppcnto.c:836
++#: eelf32ppcsim.c:836 eelf32ppcwindiss.c:836
+ #, c-format
+ msgid " --bss-plt Force old-style BSS PLT\n"
+ msgstr " --bss-plt Присиљава старостилни „BSS PLT“\n"
+
+-#: eelf32lppc.c:825 eelf32lppclinux.c:825 eelf32lppcnto.c:825
+-#: eelf32lppcsim.c:825 eelf32ppc.c:825 eelf32ppc_fbsd.c:825
+-#: eelf32ppclinux.c:825 eelf32ppcnto.c:825 eelf32ppcsim.c:825
+-#: eelf32ppcwindiss.c:825
++#: eelf32lppc.c:839 eelf32lppclinux.c:839 eelf32lppcnto.c:839
++#: eelf32lppcsim.c:839 eelf32ppc.c:839 eelf32ppc_fbsd.c:839
++#: eelf32ppchaiku.c:839 eelf32ppclinux.c:839 eelf32ppcnto.c:839
++#: eelf32ppcsim.c:839 eelf32ppcwindiss.c:839
+ #, c-format
+ msgid " --plt-align Align PLT call stubs to fit cache lines\n"
+ msgstr " --plt-align Поравнава окрајке „PLT“ позива да стану у редове оставе\n"
+
+-#: eelf32lppc.c:828 eelf32lppclinux.c:828 eelf32lppcnto.c:828
+-#: eelf32lppcsim.c:828 eelf32ppc.c:828 eelf32ppc_fbsd.c:828
+-#: eelf32ppclinux.c:828 eelf32ppcnto.c:828 eelf32ppcsim.c:828
+-#: eelf32ppcwindiss.c:828 eelf64lppc.c:1357 eelf64lppc_fbsd.c:1357
+-#: eelf64ppc.c:1357 eelf64ppc_fbsd.c:1357
++#: eelf32lppc.c:842 eelf32lppclinux.c:842 eelf32lppcnto.c:842
++#: eelf32lppcsim.c:842 eelf32ppc.c:842 eelf32ppc_fbsd.c:842
++#: eelf32ppchaiku.c:842 eelf32ppclinux.c:842 eelf32ppcnto.c:842
++#: eelf32ppcsim.c:842 eelf32ppcwindiss.c:842 eelf64lppc.c:1380
++#: eelf64lppc_fbsd.c:1380 eelf64ppc.c:1380 eelf64ppc_fbsd.c:1380
+ #, c-format
+ msgid " --no-plt-align Dont't align individual PLT call stubs\n"
+ msgstr " --no-plt-align Не поравнава неисправне окрајке „PLT“ позива\n"
+
+-#: eelf32lppc.c:831 eelf32lppclinux.c:831 eelf32lppcnto.c:831
+-#: eelf32lppcsim.c:831 eelf32ppc.c:831 eelf32ppc_fbsd.c:831
+-#: eelf32ppclinux.c:831 eelf32ppcnto.c:831 eelf32ppcsim.c:831
+-#: eelf32ppcwindiss.c:831 eelf64lppc.c:1416 eelf64lppc_fbsd.c:1416
+-#: eelf64ppc.c:1416 eelf64ppc_fbsd.c:1416
++#: eelf32lppc.c:845 eelf32lppclinux.c:845 eelf32lppcnto.c:845
++#: eelf32lppcsim.c:845 eelf32ppc.c:845 eelf32ppc_fbsd.c:845
++#: eelf32ppchaiku.c:845 eelf32ppclinux.c:845 eelf32ppcnto.c:845
++#: eelf32ppcsim.c:845 eelf32ppcwindiss.c:845 eelf64lppc.c:1439
++#: eelf64lppc_fbsd.c:1439 eelf64ppc.c:1439 eelf64ppc_fbsd.c:1439
+ #, c-format
+ msgid " --no-inline-optimize Don't convert inline PLT to direct calls\n"
+ msgstr " --no-inline-optimize Не претвара унутарње „PLT“ у директне позиве\n"
+
+-#: eelf32lppc.c:834 eelf32lppclinux.c:834 eelf32lppcnto.c:834
+-#: eelf32lppcsim.c:834 eelf32ppc.c:834 eelf32ppc_fbsd.c:834
+-#: eelf32ppclinux.c:834 eelf32ppcnto.c:834 eelf32ppcsim.c:834
+-#: eelf32ppcwindiss.c:834
++#: eelf32lppc.c:848 eelf32lppclinux.c:848 eelf32lppcnto.c:848
++#: eelf32lppcsim.c:848 eelf32ppc.c:848 eelf32ppc_fbsd.c:848
++#: eelf32ppchaiku.c:848 eelf32ppclinux.c:848 eelf32ppcnto.c:848
++#: eelf32ppcsim.c:848 eelf32ppcwindiss.c:848
+ #, c-format
+ msgid " --sdata-got Force GOT location just before .sdata\n"
+ msgstr " --sdata-got Присиљава „GOT“ место одмах пре „.sdata“\n"
+
+-#: eelf32lppc.c:837 eelf32lppclinux.c:837 eelf32lppcnto.c:837
+-#: eelf32lppcsim.c:837 eelf32ppc.c:837 eelf32ppc_fbsd.c:837
+-#: eelf32ppclinux.c:837 eelf32ppcnto.c:837 eelf32ppcsim.c:837
+-#: eelf32ppcvxworks.c:797 eelf32ppcwindiss.c:837
++#: eelf32lppc.c:851 eelf32lppclinux.c:851 eelf32lppcnto.c:851
++#: eelf32lppcsim.c:851 eelf32ppc.c:851 eelf32ppc_fbsd.c:851
++#: eelf32ppchaiku.c:851 eelf32ppclinux.c:851 eelf32ppcnto.c:851
++#: eelf32ppcsim.c:851 eelf32ppcvxworks.c:811 eelf32ppcwindiss.c:851
+ #, c-format
+ msgid ""
+ " --ppc476-workaround [=pagesize]\n"
+@@ -5256,38 +5356,38 @@ msgstr ""
+ " --ppc476-workaround [=величина_странице]\n"
+ " Избегава грешку оставе на „ppc476“\n"
+
+-#: eelf32lppc.c:841 eelf32lppclinux.c:841 eelf32lppcnto.c:841
+-#: eelf32lppcsim.c:841 eelf32ppc.c:841 eelf32ppc_fbsd.c:841
+-#: eelf32ppclinux.c:841 eelf32ppcnto.c:841 eelf32ppcsim.c:841
+-#: eelf32ppcvxworks.c:801 eelf32ppcwindiss.c:841
++#: eelf32lppc.c:855 eelf32lppclinux.c:855 eelf32lppcnto.c:855
++#: eelf32lppcsim.c:855 eelf32ppc.c:855 eelf32ppc_fbsd.c:855
++#: eelf32ppchaiku.c:855 eelf32ppclinux.c:855 eelf32ppcnto.c:855
++#: eelf32ppcsim.c:855 eelf32ppcvxworks.c:815 eelf32ppcwindiss.c:855
+ #, c-format
+ msgid " --no-ppc476-workaround Disable workaround\n"
+ msgstr " --no-ppc476-workaround Онемогућује решавања\n"
+
+-#: eelf32lppc.c:844 eelf32lppclinux.c:844 eelf32lppcnto.c:844
+-#: eelf32lppcsim.c:844 eelf32ppc.c:844 eelf32ppc_fbsd.c:844
+-#: eelf32ppclinux.c:844 eelf32ppcnto.c:844 eelf32ppcsim.c:844
+-#: eelf32ppcvxworks.c:804 eelf32ppcwindiss.c:844
++#: eelf32lppc.c:858 eelf32lppclinux.c:858 eelf32lppcnto.c:858
++#: eelf32lppcsim.c:858 eelf32ppc.c:858 eelf32ppc_fbsd.c:858
++#: eelf32ppchaiku.c:858 eelf32ppclinux.c:858 eelf32ppcnto.c:858
++#: eelf32ppcsim.c:858 eelf32ppcvxworks.c:818 eelf32ppcwindiss.c:858
+ #, c-format
+ msgid " --no-pic-fixup Don't edit non-pic to pic\n"
+ msgstr " --no-pic-fixup Не уређује „non-pic“ у „pic“\n"
+
+-#: eelf32lppc.c:847 eelf32lppclinux.c:847 eelf32lppcnto.c:847
+-#: eelf32lppcsim.c:847 eelf32ppc.c:847 eelf32ppc_fbsd.c:847
+-#: eelf32ppclinux.c:847 eelf32ppcnto.c:847 eelf32ppcsim.c:847
+-#: eelf32ppcvxworks.c:807 eelf32ppcwindiss.c:847
++#: eelf32lppc.c:861 eelf32lppclinux.c:861 eelf32lppcnto.c:861
++#: eelf32lppcsim.c:861 eelf32ppc.c:861 eelf32ppc_fbsd.c:861
++#: eelf32ppchaiku.c:861 eelf32ppclinux.c:861 eelf32ppcnto.c:861
++#: eelf32ppcsim.c:861 eelf32ppcvxworks.c:821 eelf32ppcwindiss.c:861
+ #, c-format
+ msgid " --vle-reloc-fixup Correct old object file 16A/16D relocation\n"
+ msgstr " --vle-reloc-fixup Поправља „16A/16D“ премештај старе објектне датотеке\n"
+
+-#: eelf32mcore.c:304
++#: eelf32mcore.c:306
+ #, c-format
+ msgid " --base_file <basefile> Generate a base file for relocatable DLLs\n"
+ msgstr " --base_file <дттка_основе> Ствара датотеку основе за преместљиве „DLL“-ове\n"
+
+-#: eelf32metag.c:717 eelf64lppc.c:1332 eelf64lppc_fbsd.c:1332 eelf64ppc.c:1332
+-#: eelf64ppc_fbsd.c:1332 ehppaelf.c:577 ehppalinux.c:759 ehppanbsd.c:759
+-#: ehppaobsd.c:759
++#: eelf32metag.c:719 eelf64lppc.c:1355 eelf64lppc_fbsd.c:1355 eelf64ppc.c:1355
++#: eelf64ppc_fbsd.c:1355 ehppaelf.c:579 ehppalinux.c:761 ehppanbsd.c:761
++#: ehppaobsd.c:761
+ #, c-format
+ msgid ""
+ " --stub-group-size=N Maximum size of a group of input sections that\n"
+@@ -5308,7 +5408,7 @@ msgstr ""
+ " Вредности +/-1 означавају да повезивач треба да\n"
+ " изабере одговарајућу подразумеваност.\n"
+
+-#: eelf32rx.c:336
++#: eelf32rx.c:338
+ #, c-format
+ msgid ""
+ " --no-flag-mismatch-warnings Don't warn about objects with incompatible\n"
+@@ -5317,7 +5417,7 @@ msgstr ""
+ " --no-flag-mismatch-warnings Не упозорава о објектима са несагласним\n"
+ " подешавањима крајности или „dsp“-а\n"
+
+-#: eelf32rx.c:338
++#: eelf32rx.c:340
+ #, c-format
+ msgid ""
+ " --flag-mismatch-warnings Warn about objects with incompatible\n"
+@@ -5326,7 +5426,7 @@ msgstr ""
+ " --flag-mismatch-warnings Упозорава о објектима са несагласним\n"
+ " подешавањима крајности, „dsp“-а или „ABI“-а\n"
+
+-#: eelf32rx.c:340
++#: eelf32rx.c:342
+ #, c-format
+ msgid ""
+ " --ignore-lma Ignore segment LMAs [default]\n"
+@@ -5335,7 +5435,7 @@ msgstr ""
+ " --ignore-lma Занемарује „LMA“-ове одељка [основно]\n"
+ " (за сагласност „Renesas“ алата)\n"
+
+-#: eelf32rx.c:342
++#: eelf32rx.c:344
+ #, c-format
+ msgid " --no-ignore-lma Don't ignore segment LMAs\n"
+ msgstr " --no-ignore-lma Не занемарује „LMA“-еве подеока\n"
+@@ -5396,7 +5496,7 @@ msgstr "%F%P: нисам успео да направим одељак „.xtens
+ msgid "%F%P: Relaxation not supported with --enable-non-contiguous-regions.\n"
+ msgstr "%F%P: Опуштање није подржано са „--enable-non-contiguous-regions“.\n"
+
+-#: eelf32xtensa.c:2396
++#: eelf32xtensa.c:2398
+ #, c-format
+ msgid ""
+ " --size-opt When relaxing longcalls, prefer size\n"
+@@ -5405,12 +5505,12 @@ msgstr ""
+ " --size-opt Приликом опуштања дугих позива, даје предност\n"
+ " оптимизацији величине над поравнањем циља гране\n"
+
+-#: eelf32xtensa.c:2399
++#: eelf32xtensa.c:2401
+ #, c-format
+ msgid " --abi-windowed Choose windowed ABI for the output object\n"
+ msgstr " --abi-windowed Бира упрозорен „ABI“ за излазни објекат\n"
+
+-#: eelf32xtensa.c:2401
++#: eelf32xtensa.c:2403
+ #, c-format
+ msgid " --abi-call0 Choose call0 ABI for the output object\n"
+ msgstr " --abi-call0 Бира „call0 ABI“ за излазни објекат\n"
+@@ -5419,7 +5519,7 @@ msgstr " --abi-call0 Бира „call0 ABI“ за из
+ msgid "%F%P: %pB: Instruction sets of object files incompatible\n"
+ msgstr "%F%P: %pB: Скупови инструкција објектних датотека нису сагласни\n"
+
+-#: eelf64_ia64.c:490 eelf64_ia64_fbsd.c:490
++#: eelf64_ia64.c:492 eelf64_ia64_fbsd.c:492
+ #, c-format
+ msgid " --itanium Generate code for Intel Itanium processor\n"
+ msgstr " --itanium Ствара код за „Intel Itanium“ процесор\n"
+@@ -5429,12 +5529,12 @@ msgstr " --itanium Ствара код за „Intel
+ msgid "%F%P: can not init BFD: %E\n"
+ msgstr "%F%P: не могу да покренем „BFD“: %E\n"
+
+-#: eelf64_s390.c:533
++#: eelf64_s390.c:535
+ #, c-format
+ msgid " --s390-pgste Tell the kernel to allocate 4k page tables\n"
+ msgstr " --s390-pgste Говори језгру да додели 4k табеле странице\n"
+
+-#: eelf64alpha.c:562 eelf64alpha_fbsd.c:562 eelf64alpha_nbsd.c:562
++#: eelf64alpha.c:564 eelf64alpha_fbsd.c:564 eelf64alpha_nbsd.c:564
+ #, c-format
+ msgid ""
+ " --taso Load executable in the lower 31-bit addressable\n"
+@@ -5443,12 +5543,12 @@ msgstr ""
+ " --taso Учитава извршну у нижем 31-битном адресивом\n"
+ " виртуелном опсегу адресе\n"
+
+-#: eelf64alpha.c:565 eelf64alpha_fbsd.c:565 eelf64alpha_nbsd.c:565
++#: eelf64alpha.c:567 eelf64alpha_fbsd.c:567 eelf64alpha_nbsd.c:567
+ #, c-format
+ msgid " --secureplt Force PLT in text segment\n"
+ msgstr " --secureplt Присиљава „PLT“ у подеоку текста\n"
+
+-#: eelf64alpha.c:567 eelf64alpha_fbsd.c:567 eelf64alpha_nbsd.c:567
++#: eelf64alpha.c:569 eelf64alpha_fbsd.c:569 eelf64alpha_nbsd.c:569
+ #, c-format
+ msgid " --no-secureplt Force PLT in data segment\n"
+ msgstr " --no-secureplt Присиљава „PLT“ у подеоку података\n"
+@@ -5467,71 +5567,71 @@ msgstr "%X%P: срипта повезивача раздваја „.got“ и
+ msgid "%P: .init/.fini fragments use differing TOC pointers\n"
+ msgstr "%P: „.init/.fini“ одломци користе другачије „TOC“ показиваче\n"
+
+-#: eelf64lppc.c:1224 eelf64lppc_fbsd.c:1224 eelf64ppc.c:1224
+-#: eelf64ppc_fbsd.c:1224
++#: eelf64lppc.c:1242 eelf64lppc_fbsd.c:1242 eelf64ppc.c:1242
++#: eelf64ppc_fbsd.c:1242
+ msgid "%F%P: invalid --power10-stubs argument `%s'\n"
+ msgstr "%F%P: неисправан „--power10-stubs“ аргумент „%s“\n"
+
+-#: eelf64lppc.c:1342 eelf64ppc.c:1342
++#: eelf64lppc.c:1365 eelf64ppc.c:1365
+ #, c-format
+ msgid " --plt-static-chain PLT call stubs should load r11 (default)\n"
+ msgstr " --plt-static-chain Окрајци „PLT“ позива треба да учитају „r11“ (основно)\n"
+
+-#: eelf64lppc.c:1345 eelf64ppc.c:1345
++#: eelf64lppc.c:1368 eelf64ppc.c:1368
+ #, c-format
+ msgid " --no-plt-static-chain PLT call stubs should not load r11\n"
+ msgstr " --no-plt-static-chain Окрајци „PLT“ позива не треба да учитају „r11“\n"
+
+-#: eelf64lppc.c:1348 eelf64lppc_fbsd.c:1348 eelf64ppc.c:1348
+-#: eelf64ppc_fbsd.c:1348
++#: eelf64lppc.c:1371 eelf64lppc_fbsd.c:1371 eelf64ppc.c:1371
++#: eelf64ppc_fbsd.c:1371
+ #, c-format
+ msgid " --plt-thread-safe PLT call stubs with load-load barrier\n"
+ msgstr " --plt-thread-safe Окрајци „PLT“ позива са учитај-учитај баријером\n"
+
+-#: eelf64lppc.c:1351 eelf64lppc_fbsd.c:1351 eelf64ppc.c:1351
+-#: eelf64ppc_fbsd.c:1351
++#: eelf64lppc.c:1374 eelf64lppc_fbsd.c:1374 eelf64ppc.c:1374
++#: eelf64ppc_fbsd.c:1374
+ #, c-format
+ msgid " --no-plt-thread-safe PLT call stubs without barrier\n"
+ msgstr " --no-plt-thread-safe Окрајци „PLT“ позива без баријере\n"
+
+-#: eelf64lppc.c:1354 eelf64lppc_fbsd.c:1354 eelf64ppc.c:1354
+-#: eelf64ppc_fbsd.c:1354
++#: eelf64lppc.c:1377 eelf64lppc_fbsd.c:1377 eelf64ppc.c:1377
++#: eelf64ppc_fbsd.c:1377
+ #, c-format
+ msgid " --plt-align [=<align>] Align PLT call stubs to fit cache lines\n"
+ msgstr " --plt-align [=<поравнај>] Поравнава окрајке „PLT“ позива да стану у редове оставе\n"
+
+-#: eelf64lppc.c:1360 eelf64lppc_fbsd.c:1360 eelf64ppc.c:1360
+-#: eelf64ppc_fbsd.c:1360
++#: eelf64lppc.c:1383 eelf64lppc_fbsd.c:1383 eelf64ppc.c:1383
++#: eelf64ppc_fbsd.c:1383
+ #, c-format
+ msgid " --plt-localentry Optimize calls to ELFv2 localentry:0 functions\n"
+ msgstr " --plt-localentry Оптимизује позиве на „ELFv2 localentry:0“ функције\n"
+
+-#: eelf64lppc.c:1363 eelf64lppc_fbsd.c:1363 eelf64ppc.c:1363
+-#: eelf64ppc_fbsd.c:1363
++#: eelf64lppc.c:1386 eelf64lppc_fbsd.c:1386 eelf64ppc.c:1386
++#: eelf64ppc_fbsd.c:1386
+ #, c-format
+ msgid " --no-plt-localentry Don't optimize ELFv2 calls\n"
+ msgstr " --no-plt-localentry Не оптимизује „ELFv2“ позиве\n"
+
+-#: eelf64lppc.c:1366 eelf64lppc_fbsd.c:1366 eelf64ppc.c:1366
+-#: eelf64ppc_fbsd.c:1366
++#: eelf64lppc.c:1389 eelf64lppc_fbsd.c:1389 eelf64ppc.c:1389
++#: eelf64ppc_fbsd.c:1389
+ #, c-format
+ msgid " --power10-stubs [=auto] Use Power10 PLT call stubs (default auto)\n"
+ msgstr " --power10-stubs [=auto] Користи окрајке „Power10 PLT“ позива (основно је „auto“)\n"
+
+-#: eelf64lppc.c:1369 eelf64lppc_fbsd.c:1369 eelf64ppc.c:1369
+-#: eelf64ppc_fbsd.c:1369
++#: eelf64lppc.c:1392 eelf64lppc_fbsd.c:1392 eelf64ppc.c:1392
++#: eelf64ppc_fbsd.c:1392
+ #, c-format
+ msgid " --no-pcrel-optimize Don't perform R_PPC64_PCREL_OPT optimization\n"
+ msgstr " --no-pcrel-optimize Не обавља „R_PPC64_PCREL_OPT“ оптимизацију\n"
+
+-#: eelf64lppc.c:1372 eelf64lppc_fbsd.c:1372 eelf64ppc.c:1372
+-#: eelf64ppc_fbsd.c:1372
++#: eelf64lppc.c:1395 eelf64lppc_fbsd.c:1395 eelf64ppc.c:1395
++#: eelf64ppc_fbsd.c:1395
+ #, c-format
+ msgid " --no-power10-stubs Don't use Power10 PLT call stubs\n"
+ msgstr " --no-power10-stubs Не користи окрајке „Power10 PLT“ позива\n"
+
+-#: eelf64lppc.c:1381 eelf64lppc_fbsd.c:1381 eelf64ppc.c:1381
+-#: eelf64ppc_fbsd.c:1381
++#: eelf64lppc.c:1404 eelf64lppc_fbsd.c:1404 eelf64ppc.c:1404
++#: eelf64ppc_fbsd.c:1404
+ #, c-format
+ msgid ""
+ " --dotsyms For every version pattern \"foo\" in a version\n"
+@@ -5544,14 +5644,14 @@ msgstr ""
+ " функције сматрају исто као симболи описника\n"
+ " функције. Подразумева се укљученом.\n"
+
+-#: eelf64lppc.c:1387 eelf64lppc_fbsd.c:1387 eelf64ppc.c:1387
+-#: eelf64ppc_fbsd.c:1387
++#: eelf64lppc.c:1410 eelf64lppc_fbsd.c:1410 eelf64ppc.c:1410
++#: eelf64ppc_fbsd.c:1410
+ #, c-format
+ msgid " --no-dotsyms Don't do anything special in version scripts\n"
+ msgstr " --no-dotsyms Не ради ништа посебно у скриптама издања\n"
+
+-#: eelf64lppc.c:1390 eelf64lppc_fbsd.c:1390 eelf64ppc.c:1390
+-#: eelf64ppc_fbsd.c:1390
++#: eelf64lppc.c:1413 eelf64lppc_fbsd.c:1413 eelf64ppc.c:1413
++#: eelf64ppc_fbsd.c:1413
+ #, c-format
+ msgid ""
+ " --save-restore-funcs Provide register save and restore routines used\n"
+@@ -5562,56 +5662,56 @@ msgstr ""
+ " користи „gcc -Os“ код. Подразумева се укљученом за уобичајену\n"
+ " крајњу везу, искљученом за „ld -r“.\n"
+
+-#: eelf64lppc.c:1395 eelf64lppc_fbsd.c:1395 eelf64ppc.c:1395
+-#: eelf64ppc_fbsd.c:1395
++#: eelf64lppc.c:1418 eelf64lppc_fbsd.c:1418 eelf64ppc.c:1418
++#: eelf64ppc_fbsd.c:1418
+ #, c-format
+ msgid " --no-save-restore-funcs Don't provide these routines\n"
+ msgstr " --no-save-restore-funcs Не обезбеђује ове рутине\n"
+
+-#: eelf64lppc.c:1401 eelf64lppc_fbsd.c:1401 eelf64ppc.c:1401
+-#: eelf64ppc_fbsd.c:1401
++#: eelf64lppc.c:1424 eelf64lppc_fbsd.c:1424 eelf64ppc.c:1424
++#: eelf64ppc_fbsd.c:1424
+ #, c-format
+ msgid " --tls-get-addr-optimize Force use of special __tls_get_addr call\n"
+ msgstr " --tls-get-addr-optimize Присиљава коришћење специјалног „__tls_get_addr“ позив\n"
+
+-#: eelf64lppc.c:1407 eelf64lppc_fbsd.c:1407 eelf64ppc.c:1407
+-#: eelf64ppc_fbsd.c:1407
++#: eelf64lppc.c:1430 eelf64lppc_fbsd.c:1430 eelf64ppc.c:1430
++#: eelf64ppc_fbsd.c:1430
+ #, c-format
+ msgid " --tls-get-addr-regsave Force register save __tls_get_addr stub\n"
+ msgstr " --tls-get-addr-regsave Приморава да регистар сачува „__tls_get_addr“ окрајак\n"
+
+-#: eelf64lppc.c:1410 eelf64lppc_fbsd.c:1410 eelf64ppc.c:1410
+-#: eelf64ppc_fbsd.c:1410
++#: eelf64lppc.c:1433 eelf64lppc_fbsd.c:1433 eelf64ppc.c:1433
++#: eelf64ppc_fbsd.c:1433
+ #, c-format
+ msgid " --no-tls-get-addr-regsave Don't use register save __tls_get_addr stub\n"
+ msgstr " --no-tls-get-addr-regsave Не користи да регистар сачува „__tls_get_addr“ окрајак\n"
+
+-#: eelf64lppc.c:1413 eelf64lppc_fbsd.c:1413 eelf64ppc.c:1413
+-#: eelf64ppc_fbsd.c:1413
++#: eelf64lppc.c:1436 eelf64lppc_fbsd.c:1436 eelf64ppc.c:1436
++#: eelf64ppc_fbsd.c:1436
+ #, c-format
+ msgid " --no-opd-optimize Don't optimize the OPD section\n"
+ msgstr " --no-opd-optimize Не оптимизује „OPD“ одељак\n"
+
+-#: eelf64lppc.c:1419 eelf64lppc_fbsd.c:1419 eelf64ppc.c:1419
+-#: eelf64ppc_fbsd.c:1419
++#: eelf64lppc.c:1442 eelf64lppc_fbsd.c:1442 eelf64ppc.c:1442
++#: eelf64ppc_fbsd.c:1442
+ #, c-format
+ msgid " --no-toc-optimize Don't optimize the TOC section\n"
+ msgstr " --no-toc-optimize Не оптимизује „TOC“ одељак\n"
+
+-#: eelf64lppc.c:1422 eelf64lppc_fbsd.c:1422 eelf64ppc.c:1422
+-#: eelf64ppc_fbsd.c:1422
++#: eelf64lppc.c:1445 eelf64lppc_fbsd.c:1445 eelf64ppc.c:1445
++#: eelf64ppc_fbsd.c:1445
+ #, c-format
+ msgid " --no-multi-toc Disallow automatic multiple toc sections\n"
+ msgstr " --no-multi-toc Не омогућава више самосталних одељака табеле садржаја\n"
+
+-#: eelf64lppc.c:1425 eelf64lppc_fbsd.c:1425 eelf64ppc.c:1425
+-#: eelf64ppc_fbsd.c:1425
++#: eelf64lppc.c:1448 eelf64lppc_fbsd.c:1448 eelf64ppc.c:1448
++#: eelf64ppc_fbsd.c:1448
+ #, c-format
+ msgid " --no-toc-sort Don't sort TOC and GOT sections\n"
+ msgstr " --no-toc-sort Не ређа „TOC“ и „GOT“ одељке\n"
+
+-#: eelf64lppc.c:1428 eelf64lppc_fbsd.c:1428 eelf64ppc.c:1428
+-#: eelf64ppc_fbsd.c:1428
++#: eelf64lppc.c:1451 eelf64lppc_fbsd.c:1451 eelf64ppc.c:1451
++#: eelf64ppc_fbsd.c:1451
+ #, c-format
+ msgid ""
+ " --non-overlapping-opd Canonicalize .opd, so that there are no\n"
+@@ -5620,12 +5720,12 @@ msgstr ""
+ " --non-overlapping-opd Стандардизује „.opd“, тако да нема\n"
+ " преклапајућих „.opd“ уноса\n"
+
+-#: eelf64lppc_fbsd.c:1342 eelf64ppc_fbsd.c:1342
++#: eelf64lppc_fbsd.c:1365 eelf64ppc_fbsd.c:1365
+ #, c-format
+ msgid " --plt-static-chain PLT call stubs should load r111\n"
+ msgstr " --plt-static-chain Окрајци „PLT“ позива треба да учитају „r111“\n"
+
+-#: eelf64lppc_fbsd.c:1345 eelf64ppc_fbsd.c:1345
++#: eelf64lppc_fbsd.c:1368 eelf64ppc_fbsd.c:1368
+ #, c-format
+ msgid " --no-plt-static-chain PLT call stubs should not load r11 (default)\n"
+ msgstr " --no-plt-static-chain Окрајци „PLT“ позива не треба да учитају „r11“ (основно)\n"
+@@ -5643,29 +5743,29 @@ msgstr "%X%P: превише општих регистара: %u, највише
+ msgid "%F%P: can't finalize linker-allocated global registers\n"
+ msgstr "%F%P: не могу да завршим повезивачем додељене опште регистре\n"
+
+-#: eelf_x86_64.c:5608 eelf_x86_64_cloudabi.c:573 eelf_x86_64_fbsd.c:573
+-#: eelf_x86_64_sol2.c:705
++#: eelf_x86_64.c:5636 eelf_x86_64_cloudabi.c:579 eelf_x86_64_fbsd.c:579
++#: eelf_x86_64_haiku.c:579 eelf_x86_64_sol2.c:711
+ msgid "%F%P: invalid option for -z lam-u48-report=: %s\n"
+ msgstr "%F%P: неисправна опција за „-z lam-u48-report=“: %s\n"
+
+-#: eelf_x86_64.c:5622 eelf_x86_64_cloudabi.c:587 eelf_x86_64_fbsd.c:587
+-#: eelf_x86_64_sol2.c:719
++#: eelf_x86_64.c:5650 eelf_x86_64_cloudabi.c:593 eelf_x86_64_fbsd.c:593
++#: eelf_x86_64_haiku.c:593 eelf_x86_64_sol2.c:725
+ msgid "%F%P: invalid option for -z lam-u57-report=: %s\n"
+ msgstr "%F%P: неисправна опција за „-z lam-u57-report=“: %s\n"
+
+-#: eelf_x86_64.c:5643 eelf_x86_64_cloudabi.c:608 eelf_x86_64_fbsd.c:608
+-#: eelf_x86_64_sol2.c:740
++#: eelf_x86_64.c:5671 eelf_x86_64_cloudabi.c:614 eelf_x86_64_fbsd.c:614
++#: eelf_x86_64_haiku.c:614 eelf_x86_64_sol2.c:746
+ msgid "%F%P: invalid option for -z lam-report=: %s\n"
+ msgstr "%F%P: неисправна опција за „-z lam-report=“: %s\n"
+
+-#: eelf_x86_64.c:5712 eelf_x86_64_cloudabi.c:677 eelf_x86_64_fbsd.c:677
+-#: eelf_x86_64_sol2.c:809
++#: eelf_x86_64.c:5749 eelf_x86_64_cloudabi.c:692 eelf_x86_64_fbsd.c:692
++#: eelf_x86_64_haiku.c:692 eelf_x86_64_sol2.c:824
+ #, c-format
+ msgid " -z lam-u48 Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U48\n"
+ msgstr " -z lam-u48 Ствара „GNU_PROPERTY_X86_FEATURE_1_LAM_U48“\n"
+
+-#: eelf_x86_64.c:5714 eelf_x86_64_cloudabi.c:679 eelf_x86_64_fbsd.c:679
+-#: eelf_x86_64_sol2.c:811
++#: eelf_x86_64.c:5751 eelf_x86_64_cloudabi.c:694 eelf_x86_64_fbsd.c:694
++#: eelf_x86_64_haiku.c:694 eelf_x86_64_sol2.c:826
+ #, c-format
+ msgid ""
+ " -z lam-u48-report=[none|warning|error] (default: none)\n"
+@@ -5674,14 +5774,14 @@ msgstr ""
+ " -z lam-u48-report=[none|warning|error] (основно: none)\n"
+ " Извештава о недостајућем „LAM_U48“ својству\n"
+
+-#: eelf_x86_64.c:5717 eelf_x86_64_cloudabi.c:682 eelf_x86_64_fbsd.c:682
+-#: eelf_x86_64_sol2.c:814
++#: eelf_x86_64.c:5754 eelf_x86_64_cloudabi.c:697 eelf_x86_64_fbsd.c:697
++#: eelf_x86_64_haiku.c:697 eelf_x86_64_sol2.c:829
+ #, c-format
+ msgid " -z lam-u57 Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U57\n"
+ msgstr " -z lam-u57 Ствара „GNU_PROPERTY_X86_FEATURE_1_LAM_U57“\n"
+
+-#: eelf_x86_64.c:5719 eelf_x86_64_cloudabi.c:684 eelf_x86_64_fbsd.c:684
+-#: eelf_x86_64_sol2.c:816
++#: eelf_x86_64.c:5756 eelf_x86_64_cloudabi.c:699 eelf_x86_64_fbsd.c:699
++#: eelf_x86_64_haiku.c:699 eelf_x86_64_sol2.c:831
+ #, c-format
+ msgid ""
+ " -z lam-u57-report=[none|warning|error] (default: none)\n"
+@@ -5690,8 +5790,8 @@ msgstr ""
+ " -z lam-u57-report=[none|warning|error] (основно: none)\n"
+ " Извештава о недостајућем „LAM_U57“ својству\n"
+
+-#: eelf_x86_64.c:5722 eelf_x86_64_cloudabi.c:687 eelf_x86_64_fbsd.c:687
+-#: eelf_x86_64_sol2.c:819
++#: eelf_x86_64.c:5759 eelf_x86_64_cloudabi.c:702 eelf_x86_64_fbsd.c:702
++#: eelf_x86_64_haiku.c:702 eelf_x86_64_sol2.c:834
+ #, c-format
+ msgid ""
+ " -z lam-report=[none|warning|error] (default: none)\n"
+@@ -5700,8 +5800,8 @@ msgstr ""
+ " -z lam-report=[none|warning|error] (основно: none)\n"
+ " Извештава о недостајућим „LAM_U48“ и „LAM_U57“ својствима\n"
+
+-#: eelf_x86_64.c:5726 eelf_x86_64_cloudabi.c:691 eelf_x86_64_fbsd.c:691
+-#: eelf_x86_64_sol2.c:823
++#: eelf_x86_64.c:5768 eelf_x86_64_cloudabi.c:711 eelf_x86_64_fbsd.c:711
++#: eelf_x86_64_haiku.c:711 eelf_x86_64_sol2.c:843
+ #, c-format
+ msgid " -z bndplt Always generate BND prefix in PLT entries\n"
+ msgstr " -z bndplt Увек ствара „BND“ префикс у „PLT“ уносима\n"
+@@ -5710,7 +5810,7 @@ msgstr " -z bndplt Увек ствара „BND“ п
+ msgid "%X%P: can not set gp\n"
+ msgstr "%X%P: не могу да подесим „gp“\n"
+
+-#: ehppaelf.c:573 ehppalinux.c:755 ehppanbsd.c:755 ehppaobsd.c:755
++#: ehppaelf.c:575 ehppalinux.c:757 ehppanbsd.c:757 ehppaobsd.c:757
+ #, c-format
+ msgid ""
+ " --multi-subspace Generate import and export stubs to support\n"
+@@ -5832,7 +5932,7 @@ msgstr "%P: упозорење: величина области меморије
+ msgid "%X%P: changing output format whilst linking is not supported\n"
+ msgstr "%X%P: мења запис излаза док повезивање није подржано\n"
+
+-#: em68hc11elf.c:570 em68hc11elfb.c:570 em68hc12elf.c:570 em68hc12elfb.c:570
++#: em68hc11elf.c:572 em68hc11elfb.c:572 em68hc12elf.c:572 em68hc12elfb.c:572
+ #, c-format
+ msgid ""
+ " --no-trampoline Do not generate the far trampolines used to call\n"
+@@ -5841,7 +5941,7 @@ msgstr ""
+ " --no-trampoline Не ствара „far“ трамполине коришћене за позивање\n"
+ " „far“ функције користећи „jsr“ или „bsr“\n"
+
+-#: em68hc11elf.c:573 em68hc11elfb.c:573 em68hc12elf.c:573 em68hc12elfb.c:573
++#: em68hc11elf.c:575 em68hc11elfb.c:575 em68hc12elf.c:575 em68hc12elfb.c:575
+ #, c-format
+ msgid ""
+ " --bank-window NAME Specify the name of the memory region describing\n"
+@@ -5854,11 +5954,11 @@ msgstr ""
+ msgid "%F%P: %pB: all input objects must be ELF for --embedded-relocs\n"
+ msgstr "%F%P: %pB: сви улазни објекти морају бити „ELF“ за „--embedded-relocs“\n"
+
+-#: em68kelf.c:616 em68kelfnbsd.c:616
++#: em68kelf.c:618 em68kelfnbsd.c:618
+ msgid "%P: unrecognized --got argument '%s'\n"
+ msgstr "%P: непознат „--got“ аргумент „%s“\n"
+
+-#: em68kelf.c:629 em68kelfnbsd.c:629
++#: em68kelf.c:631 em68kelfnbsd.c:631
+ #, c-format
+ msgid " --got=<type> Specify GOT handling scheme\n"
+ msgstr " --got=<врста> Наводи шему „GOT“ руковања\n"
+@@ -5932,48 +6032,48 @@ msgstr "%P: грешка: непознат аргумент за „--data-regio
+ msgid "%F%P: %pB: ABI version of object files mismatched\n"
+ msgstr "%F%P: %pB: „ABI“ издање објектних датотека не одговара\n"
+
+-#: ends32belf.c:404 ends32belf16m.c:404 ends32belf_linux.c:537 ends32elf.c:404
+-#: ends32elf16m.c:404 ends32elf_linux.c:537
++#: ends32belf.c:406 ends32belf16m.c:406 ends32belf_linux.c:539 ends32elf.c:406
++#: ends32elf16m.c:406 ends32elf_linux.c:539
+ msgid "%P: --mbaseline is not used anymore\n"
+ msgstr "%P: „--mbaseline“ се више не користи\n"
+
+-#: ends32belf.c:415 ends32belf16m.c:415 ends32belf_linux.c:548 ends32elf.c:415
+-#: ends32elf16m.c:415 ends32elf_linux.c:548
++#: ends32belf.c:417 ends32belf16m.c:417 ends32belf_linux.c:550 ends32elf.c:417
++#: ends32elf16m.c:417 ends32elf_linux.c:550
+ msgid "%P: --relax-[no-]reduce-fp-updat is not used anymore\n"
+ msgstr "%P: „--relax-[no-]reduce-fp-updat“ се више не користи\n"
+
+-#: ends32belf.c:419 ends32belf16m.c:419 ends32belf_linux.c:552 ends32elf.c:419
+-#: ends32elf16m.c:419 ends32elf_linux.c:552
++#: ends32belf.c:421 ends32belf16m.c:421 ends32belf_linux.c:554 ends32elf.c:421
++#: ends32elf16m.c:421 ends32elf_linux.c:554
+ msgid "%P: missing file for --mexport-symbols\n"
+ msgstr "%P: недостаје датотека за „--mexport-symbols“\n"
+
+-#: ends32belf.c:432 ends32belf.c:441 ends32belf16m.c:432 ends32belf16m.c:441
+-#: ends32belf_linux.c:565 ends32belf_linux.c:574 ends32elf.c:432
+-#: ends32elf.c:441 ends32elf16m.c:432 ends32elf16m.c:441 ends32elf_linux.c:565
+-#: ends32elf_linux.c:574
++#: ends32belf.c:434 ends32belf.c:443 ends32belf16m.c:434 ends32belf16m.c:443
++#: ends32belf_linux.c:567 ends32belf_linux.c:576 ends32elf.c:434
++#: ends32elf.c:443 ends32elf16m.c:434 ends32elf16m.c:443 ends32elf_linux.c:567
++#: ends32elf_linux.c:576
+ msgid "%P: valid arguments to --mhyper-relax=(low|medium|high)\n"
+ msgstr "%P: исправни аргументи за „--mhyper-relax=(ниско|средње|високо)“\n"
+
+-#: ends32belf.c:461 ends32belf16m.c:461 ends32belf_linux.c:594 ends32elf.c:461
+-#: ends32elf16m.c:461 ends32elf_linux.c:594
++#: ends32belf.c:463 ends32belf16m.c:463 ends32belf_linux.c:596 ends32elf.c:463
++#: ends32elf16m.c:463 ends32elf_linux.c:596
+ #, c-format
+ msgid " --m[no-]fp-as-gp Disable/enable fp-as-gp relaxation\n"
+ msgstr " --m[no-]fp-as-gp Искључује/укључује „fp-as-gp“ опуштања\n"
+
+-#: ends32belf.c:463 ends32belf16m.c:463 ends32belf_linux.c:596 ends32elf.c:463
+-#: ends32elf16m.c:463 ends32elf_linux.c:596
++#: ends32belf.c:465 ends32belf16m.c:465 ends32belf_linux.c:598 ends32elf.c:465
++#: ends32elf16m.c:465 ends32elf_linux.c:598
+ #, c-format
+ msgid " --mexport-symbols=FILE Exporting symbols in linker script\n"
+ msgstr " --mexport-symbols=ДТТКА Извози симболе у скрипти повезивача\n"
+
+-#: ends32belf.c:465 ends32belf16m.c:465 ends32belf_linux.c:598 ends32elf.c:465
+-#: ends32elf16m.c:465 ends32elf_linux.c:598
++#: ends32belf.c:467 ends32belf16m.c:467 ends32belf_linux.c:600 ends32elf.c:467
++#: ends32elf16m.c:467 ends32elf_linux.c:600
+ #, c-format
+ msgid " --mhyper-relax=level Adjust relax level (low|medium|high). default: medium\n"
+ msgstr " --mhyper-relax=ниво Подешава ниво опуштања (низак|средњи|висок). основно је: средњи\n"
+
+-#: ends32belf.c:467 ends32belf16m.c:467 ends32belf_linux.c:600 ends32elf.c:467
+-#: ends32elf16m.c:467 ends32elf_linux.c:600
++#: ends32belf.c:469 ends32belf16m.c:469 ends32belf_linux.c:602 ends32elf.c:469
++#: ends32elf16m.c:469 ends32elf_linux.c:602
+ #, c-format
+ msgid " --m[no-]tlsdesc-trampoline Disable/enable TLS DESC trampoline\n"
+ msgstr " --m[no-]tlsdesc-trampoline Искључује/укључује „TLS DESC“ трамполину\n"
+@@ -6007,12 +6107,12 @@ msgstr " --format 0|1|2 Наводи које „COFF“
+ msgid "%F%P: invalid COFF format version %s\n"
+ msgstr "%F%P: неисправно издање „COFF“ записа „%s“\n"
+
++#~ msgid "%P: cannot find %s\n"
++#~ msgstr "%P: не могу да нађем „%s“\n"
++
+ #~ msgid "%F%P: cannot link with CTF in %pB: %s\n"
+ #~ msgstr "%F%P: не могу да повежем са „CTF“ у „%pB: %s\n"
+
+-#~ msgid "running: %s \"%s\" \"%s\" \"%s\" \"%s\"\n"
+-#~ msgstr "покрећем: %s „%s“ „%s“ „%s“ „%s“\n"
+-
+ #~ msgid " --[no-]branch-stub\n"
+ #~ msgstr " --[no-]branch-stub\n"
+
+diff --git a/ld/testsuite/ld-i386/i386.exp b/ld/testsuite/ld-i386/i386.exp
+index 82e14ab38d0..fadbd160420 100644
+--- a/ld/testsuite/ld-i386/i386.exp
++++ b/ld/testsuite/ld-i386/i386.exp
+@@ -510,6 +510,7 @@ run_dump_test "pr27491-4"
+ run_dump_test "dt-relr-1a"
+ run_dump_test "dt-relr-1b"
+ run_dump_test "pr28870"
++run_dump_test "pr28894"
+
+ if { !([istarget "i?86-*-linux*"]
+ || [istarget "i?86-*-gnu*"]
+@@ -1288,6 +1289,30 @@ if { [isnative]
+ {} \
+ "pr22842.so" \
+ ] \
++ [list \
++ "Build pr28875.so" \
++ "-shared -Wl,-z,indirect-extern-access" \
++ "-fPIC" \
++ { pr28875a.c } \
++ {} \
++ "pr28875.so" \
++ ] \
++ [list \
++ "Build pr28875" \
++ "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr28875.so" \
++ "$NOPIE_CFLAGS" \
++ { pr28875b.c } \
++ {{error_output "pr28875.err"}} \
++ "pr28875" \
++ ] \
++ [list \
++ "Build pr21997-1" \
++ "$NOPIE_LDFLAGS -Wl,--no-as-needed,-z,notext tmpdir/pr21997-1.so" \
++ "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
++ { pr21997-1b.c } \
++ {{error_output "pr21997-1.err"}} \
++ "pr21997-1" \
++ ] \
+ ]
+
+ run_ld_link_exec_tests [list \
+@@ -1343,15 +1368,6 @@ if { [isnative]
+ "pass.out" \
+ "-fPIC" \
+ ] \
+- [list \
+- "Run pr21997-1" \
+- "$NOPIE_LDFLAGS -Wl,--no-as-needed,-z,notext tmpdir/pr21997-1.so" \
+- "-Wa,-mx86-used-note=yes" \
+- { pr21997-1b.c } \
+- "pr21997-1" \
+- "pass.out" \
+- "$NOPIE_CFLAGS" \
+- ] \
+ [list \
+ "Run pr21997-1 (PIC 1)" \
+ "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
+diff --git a/ld/testsuite/ld-i386/pr21997-1.err b/ld/testsuite/ld-i386/pr21997-1.err
+new file mode 100644
+index 00000000000..e46f1cebeb9
+--- /dev/null
++++ b/ld/testsuite/ld-i386/pr21997-1.err
+@@ -0,0 +1,2 @@
++.*: tmpdir/pr21997-1b.o: copy relocation against non-copyable protected symbol `protected' in tmpdir/pr21997-1.so
++#...
+diff --git a/ld/testsuite/ld-i386/pr28875.err b/ld/testsuite/ld-i386/pr28875.err
+new file mode 100644
+index 00000000000..46f6f47dfd3
+--- /dev/null
++++ b/ld/testsuite/ld-i386/pr28875.err
+@@ -0,0 +1,2 @@
++.*: tmpdir/pr28875b.o: non-canonical reference to canonical protected function `internal_f' in tmpdir/pr28875.so
++#...
+diff --git a/ld/testsuite/ld-i386/pr28875a.c b/ld/testsuite/ld-i386/pr28875a.c
+new file mode 100644
+index 00000000000..d24cf29faac
+--- /dev/null
++++ b/ld/testsuite/ld-i386/pr28875a.c
+@@ -0,0 +1,5 @@
++__attribute__ ((visibility("protected")))
++void
++internal_f (void)
++{
++}
+diff --git a/ld/testsuite/ld-i386/pr28875b.c b/ld/testsuite/ld-i386/pr28875b.c
+new file mode 100644
+index 00000000000..2c0381d4252
+--- /dev/null
++++ b/ld/testsuite/ld-i386/pr28875b.c
+@@ -0,0 +1,7 @@
++extern void internal_f (void);
++
++int
++main ()
++{
++ return (int) &internal_f;
++}
+diff --git a/ld/testsuite/ld-i386/pr28894.d b/ld/testsuite/ld-i386/pr28894.d
+new file mode 100644
+index 00000000000..a8d1111eb1f
+--- /dev/null
++++ b/ld/testsuite/ld-i386/pr28894.d
+@@ -0,0 +1,3 @@
++#as: --32
++#ld: -shared -melf_i386 --warn-shared-textrel --fatal-warnings
++#error: .*warning: creating DT_TEXTREL in a shared object
+diff --git a/ld/testsuite/ld-i386/pr28894.s b/ld/testsuite/ld-i386/pr28894.s
+new file mode 100644
+index 00000000000..1d3e3f37f3e
+--- /dev/null
++++ b/ld/testsuite/ld-i386/pr28894.s
+@@ -0,0 +1,7 @@
++ .text
++ addl foo@INDNTPOFF, %eax
++ .section .tbss,"awT",@nobits
++ .globl foo
++ .hidden foo
++foo:
++ .byte 0
+diff --git a/ld/testsuite/ld-plugin/lto.exp b/ld/testsuite/ld-plugin/lto.exp
+index a70a84562b8..64b880265ee 100644
+--- a/ld/testsuite/ld-plugin/lto.exp
++++ b/ld/testsuite/ld-plugin/lto.exp
+@@ -471,6 +471,32 @@ set lto_link_elf_tests [list \
+ [list {pr27441c.so} \
+ {-shared -fPIC -Wl,--as-needed tmpdir/pr27441c.o tmpdir/pr27441b.so tmpdir/pr27441a.so} {-fPIC} \
+ {dummy.c} {{readelf {-dW} pr27441c.d}} {pr27441c.so}] \
++ [list \
++ "Build libpr28879a.so" \
++ "-shared" \
++ "-O0 -fpic" \
++ {pr28879a.cc} \
++ {} \
++ "libpr28879a.so" \
++ "c++" \
++ ] \
++ [list \
++ "Build libpr28879b.so" \
++ "-shared -Wl,--no-as-needed tmpdir/libpr28879a.so" \
++ "-O2 -fpic" \
++ {dummy.c} \
++ {} \
++ "libpr28879b.so" \
++ ] \
++ [list \
++ "Build pr28879" \
++ "-Wl,--no-as-needed tmpdir/libpr28879b.so -Wl,-rpath-link,." \
++ "-O0 -flto -D_GLIBCXX_ASSERTIONS" \
++ {pr28879b.cc} \
++ {} \
++ "pr28879" \
++ "c++" \
++ ] \
+ ]
+
+ # PR 14918 checks that libgcc is not spuriously included in a shared link of
+diff --git a/ld/testsuite/ld-plugin/pr28879a.cc b/ld/testsuite/ld-plugin/pr28879a.cc
+new file mode 100644
+index 00000000000..8307a42e2fb
+--- /dev/null
++++ b/ld/testsuite/ld-plugin/pr28879a.cc
+@@ -0,0 +1,7 @@
++#include <string>
++
++void
++func (std::string *s)
++{
++ delete s;
++}
+diff --git a/ld/testsuite/ld-plugin/pr28879b.cc b/ld/testsuite/ld-plugin/pr28879b.cc
+new file mode 100644
+index 00000000000..02fc351366c
+--- /dev/null
++++ b/ld/testsuite/ld-plugin/pr28879b.cc
+@@ -0,0 +1,8 @@
++#include <string>
++
++int
++main (void)
++{
++ std::string header;
++ return 0;
++}
+diff --git a/ld/testsuite/ld-x86-64/pr21997-1a.err b/ld/testsuite/ld-x86-64/pr21997-1a.err
+index e57ebd1f461..e46f1cebeb9 100644
+--- a/ld/testsuite/ld-x86-64/pr21997-1a.err
++++ b/ld/testsuite/ld-x86-64/pr21997-1a.err
+@@ -1,2 +1,2 @@
+-.*relocation R_X86_64_PC32 against protected symbol `protected' can not be used when making a P(D|I)E object; recompile with -fPIE
++.*: tmpdir/pr21997-1b.o: copy relocation against non-copyable protected symbol `protected' in tmpdir/pr21997-1.so
+ #...
+diff --git a/ld/testsuite/ld-x86-64/pr21997-1b.err b/ld/testsuite/ld-x86-64/pr21997-1b.err
+index a99fc1d5149..af028b7d5e9 100644
+--- a/ld/testsuite/ld-x86-64/pr21997-1b.err
++++ b/ld/testsuite/ld-x86-64/pr21997-1b.err
+@@ -1,2 +1,2 @@
+-.*relocation R_X86_64_32S against protected symbol `protected' can not be used when making a P(D|I)E object; recompile with -fPIE
++.*: tmpdir/pr21997-1c.o: copy relocation against non-copyable protected symbol `protected' in tmpdir/pr21997-1.so
+ #...
+diff --git a/ld/testsuite/ld-x86-64/pr28875-data.err b/ld/testsuite/ld-x86-64/pr28875-data.err
+new file mode 100644
+index 00000000000..62dd5b04223
+--- /dev/null
++++ b/ld/testsuite/ld-x86-64/pr28875-data.err
+@@ -0,0 +1,2 @@
++.*: tmpdir/protected-data-1b.o: copy relocation against non-copyable protected symbol `protected_data_1a' in tmpdir/libprotected-data-1b.so
++#...
+diff --git a/ld/testsuite/ld-x86-64/pr28875-func.err b/ld/testsuite/ld-x86-64/pr28875-func.err
+new file mode 100644
+index 00000000000..64e961cb3d4
+--- /dev/null
++++ b/ld/testsuite/ld-x86-64/pr28875-func.err
+@@ -0,0 +1,2 @@
++.*: tmpdir/protected-func-1b.o: non-canonical reference to canonical protected function `protected_func_1a' in tmpdir/libprotected-func-2b.so
++#...
+diff --git a/ld/testsuite/ld-x86-64/x86-64.exp b/ld/testsuite/ld-x86-64/x86-64.exp
+index 3bfc5e6e467..c6d88a97f49 100644
+--- a/ld/testsuite/ld-x86-64/x86-64.exp
++++ b/ld/testsuite/ld-x86-64/x86-64.exp
+@@ -1381,6 +1381,14 @@ if { [isnative] && [check_compiler_available] } {
+ {{readelf -n indirect-extern-access.rd}} \
+ "libprotected-func-2b.so" \
+ ] \
++ [list \
++ "Build protected-func-2 without PIE" \
++ "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/libprotected-func-2b.so" \
++ "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
++ { protected-func-1b.c } \
++ {{error_output "pr28875-func.err"}} \
++ "protected-func-2" \
++ ] \
+ [list \
+ "Build libprotected-data-1a.so" \
+ "-shared -z noindirect-extern-access" \
+@@ -1402,7 +1410,7 @@ if { [isnative] && [check_compiler_available] } {
+ "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/libprotected-data-1b.so" \
+ "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
+ { protected-data-1b.c } \
+- {} \
++ {{error_output "pr28875-data.err"}} \
+ "protected-data-1" \
+ ] \
+ [list \
+@@ -1468,6 +1476,14 @@ if { [isnative] && [check_compiler_available] } {
+ "-Wa,-mx86-used-note=yes" \
+ { pr25416-5d.s } \
+ ] \
++ [list \
++ "Build pr21997-1b" \
++ "$NOPIE_LDFLAGS -Wl,--no-as-needed,-z,notext tmpdir/pr21997-1.so" \
++ "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
++ { pr21997-1c.c } \
++ {{error_output "pr21997-1b.err"}} \
++ "pr21997-1b" \
++ ] \
+ ]
+
+ run_ld_link_exec_tests [list \
+@@ -1480,15 +1496,6 @@ if { [isnative] && [check_compiler_available] } {
+ "pass.out" \
+ "$NOPIE_CFLAGS" \
+ ] \
+- [list \
+- "Run pr21997-1b" \
+- "$NOPIE_LDFLAGS -Wl,--no-as-needed,-z,notext tmpdir/pr21997-1.so" \
+- "-Wa,-mx86-used-note=yes" \
+- { pr21997-1c.c } \
+- "pr21997-1b" \
+- "pass.out" \
+- "$NOPIE_CFLAGS" \
+- ] \
+ [list \
+ "Run pr25416-5a (GDesc -> IE -maddress-mode=short)" \
+ "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr25416-5b.so" \
+diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
+index 7d2099c599a..0c52667b1dd 100644
+--- a/opcodes/ChangeLog
++++ b/opcodes/ChangeLog
+@@ -1,3 +1,7 @@
++2022-02-17 Nick Clifton <nickc@redhat.com>
++
++ * po/sr.po: Updated Serbian translation.
++
+ 2022-02-09 Nick Clifton <nickc@redhat.com>
+
+ 2.38 release.
+diff --git a/opcodes/po/sr.po b/opcodes/po/sr.po
+index d2a54afd384..430d785d7a0 100644
+--- a/opcodes/po/sr.po
++++ b/opcodes/po/sr.po
+@@ -1,13 +1,13 @@
+ # Serbian translation of opcodes.
+ # Copyright © 2020 Free Software Foundation, Inc.
+ # This file is distributed under the same license as the binutils package.
+-# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2016–2021.
++# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2016–2022.
+ msgid ""
+ msgstr ""
+-"Project-Id-Version: opcodes-2.36.90\n"
+-"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
+-"POT-Creation-Date: 2021-07-03 15:02+0100\n"
+-"PO-Revision-Date: 2021-07-24 07:53+0200\n"
++"Project-Id-Version: opcodes-2.37.90\n"
++"Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n"
++"POT-Creation-Date: 2022-01-22 12:21+0000\n"
++"PO-Revision-Date: 2022-02-15 21:04+0200\n"
+ "Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
+ "Language-Team: Serbian <(nothing)>\n"
+ "Language: sr\n"
+@@ -26,12 +26,22 @@ msgid "specified register cannot be written to"
+ msgstr "не могу да пишем у наведени регистар"
+
+ #. Invalid option.
+-#: aarch64-dis.c:94 arc-dis.c:802 arm-dis.c:11652
++#: aarch64-dis.c:94 arc-dis.c:802 arm-dis.c:11670
+ #, c-format
+ msgid "unrecognised disassembler option: %s"
+ msgstr "непозната опција разложитеља: %s"
+
+-#: aarch64-dis.c:3589
++#: aarch64-dis.c:3395
++#, c-format
++msgid "this `%s' should have an immediately preceding `%s'"
++msgstr "ово „%s“ треба да има одмах претходеће „%s“"
++
++#: aarch64-dis.c:3402
++#, c-format
++msgid "expected `%s' after previous `%s'"
++msgstr "очекивах „%s“ након претходног „%s“"
++
++#: aarch64-dis.c:3806
+ #, c-format
+ msgid ""
+ "\n"
+@@ -42,7 +52,7 @@ msgstr ""
+ "Следеће опције разложитеља специфичне за „AARCH64“ су подржане за коришћење\n"
+ "са прекидачем „-M“ (више опција треба да се раздвајају зарезима):\n"
+
+-#: aarch64-dis.c:3593
++#: aarch64-dis.c:3810
+ #, c-format
+ msgid ""
+ "\n"
+@@ -51,7 +61,7 @@ msgstr ""
+ "\n"
+ " no-aliases Не исписује алијасе инструкције.\n"
+
+-#: aarch64-dis.c:3596
++#: aarch64-dis.c:3813
+ #, c-format
+ msgid ""
+ "\n"
+@@ -60,7 +70,7 @@ msgstr ""
+ "\n"
+ " aliases Исписује алијасе инструкције.\n"
+
+-#: aarch64-dis.c:3599
++#: aarch64-dis.c:3816
+ #, c-format
+ msgid ""
+ "\n"
+@@ -69,7 +79,7 @@ msgstr ""
+ "\n"
+ " no-notes Не исписује напомене инструкције.\n"
+
+-#: aarch64-dis.c:3602
++#: aarch64-dis.c:3819
+ #, c-format
+ msgid ""
+ "\n"
+@@ -78,7 +88,7 @@ msgstr ""
+ "\n"
+ " notes Исписује напомене инструкције.\n"
+
+-#: aarch64-dis.c:3606
++#: aarch64-dis.c:3823
+ #, c-format
+ msgid ""
+ "\n"
+@@ -87,265 +97,281 @@ msgstr ""
+ "\n"
+ " debug_dump Временски прекидач за праћење прочишћавања.\n"
+
+-#: aarch64-dis.c:3610 arc-dis.c:1551 arc-dis.c:1572 arc-dis.c:1575
+-#: mips-dis.c:2807 mips-dis.c:2817 mips-dis.c:2820 nfp-dis.c:2981
+-#: riscv-dis.c:655
++#: aarch64-dis.c:3827 arc-dis.c:1551 arc-dis.c:1572 arc-dis.c:1575
++#: loongarch-dis.c:306 mips-dis.c:2807 mips-dis.c:2817 mips-dis.c:2820
++#: nfp-dis.c:2993 riscv-dis.c:1140 riscv-dis.c:1143
+ #, c-format
+ msgid "\n"
+ msgstr "\n"
+
+-#: aarch64-opc.c:1350
++#: aarch64-opc.c:1365
+ msgid "immediate value"
+ msgstr "вредност непосредног"
+
+-#: aarch64-opc.c:1360
++#: aarch64-opc.c:1375
+ msgid "immediate offset"
+ msgstr "померај непосредног"
+
+-#: aarch64-opc.c:1370
++#: aarch64-opc.c:1385
+ msgid "register number"
+ msgstr "број регистра"
+
+-#: aarch64-opc.c:1380
++#: aarch64-opc.c:1395
+ msgid "register element index"
+ msgstr "индекс елемента регистра"
+
+-#: aarch64-opc.c:1390
++#: aarch64-opc.c:1405
+ msgid "shift amount"
+ msgstr "износ помака"
+
+-#: aarch64-opc.c:1402
++#: aarch64-opc.c:1417
+ msgid "multiplier"
+ msgstr "множилац"
+
+-#: aarch64-opc.c:1475
++#: aarch64-opc.c:1491
+ msgid "reg pair must start from even reg"
+ msgstr "пар израза мора почети на парном изразу"
+
+-#: aarch64-opc.c:1481
++#: aarch64-opc.c:1497
+ msgid "reg pair must be contiguous"
+ msgstr "пар израза мора бити непрекидан"
+
+-#: aarch64-opc.c:1495
++#: aarch64-opc.c:1511
+ msgid "extraneous register"
+ msgstr "страни регистар"
+
+-#: aarch64-opc.c:1501
++#: aarch64-opc.c:1517
+ msgid "missing register"
+ msgstr "недостаје регистар"
+
+-#: aarch64-opc.c:1512
++#: aarch64-opc.c:1528
+ msgid "stack pointer register expected"
+ msgstr "очекиван је регистар показивача спремника"
+
+-#: aarch64-opc.c:1537
++#: aarch64-opc.c:1553
+ msgid "z0-z15 expected"
+ msgstr "очекивано је „z0-z15“"
+
+-#: aarch64-opc.c:1538
++#: aarch64-opc.c:1554
+ msgid "z0-z7 expected"
+ msgstr "очекивано је „z0-z7“"
+
+-#: aarch64-opc.c:1564
++#: aarch64-opc.c:1580
+ msgid "invalid register list"
+ msgstr "неисправан списак регистра"
+
+-#: aarch64-opc.c:1578
++#: aarch64-opc.c:1594
+ msgid "p0-p7 expected"
+ msgstr "очекивано је „p0-p7“"
+
+-#: aarch64-opc.c:1604 aarch64-opc.c:1612
++#: aarch64-opc.c:1620 aarch64-opc.c:1628
+ msgid "unexpected address writeback"
+ msgstr "неочекивано повратно писање адресе"
+
+-#: aarch64-opc.c:1623
++#: aarch64-opc.c:1639
+ msgid "address writeback expected"
+ msgstr "очекивано је повратно писање адресе"
+
+-#: aarch64-opc.c:1670
++#: aarch64-opc.c:1686
+ msgid "negative or unaligned offset expected"
+ msgstr "очекиван је негативан или непоравнат померај"
+
+-#: aarch64-opc.c:1727
++#: aarch64-opc.c:1743
+ msgid "invalid register offset"
+ msgstr "неисправан померај регистра"
+
+-#: aarch64-opc.c:1749
++#: aarch64-opc.c:1765
+ msgid "invalid post-increment amount"
+ msgstr "неисправан износ пост-увећања"
+
+-#: aarch64-opc.c:1765 aarch64-opc.c:2274
++#: aarch64-opc.c:1781 aarch64-opc.c:2299
+ msgid "invalid shift amount"
+ msgstr "неисправан износ помака"
+
+-#: aarch64-opc.c:1778
++#: aarch64-opc.c:1794
+ msgid "invalid extend/shift operator"
+ msgstr "неисправан оператор проширења/помака"
+
+-#: aarch64-opc.c:1824 aarch64-opc.c:2076 aarch64-opc.c:2111 aarch64-opc.c:2130
+-#: aarch64-opc.c:2138 aarch64-opc.c:2227 aarch64-opc.c:2404 aarch64-opc.c:2504
+-#: aarch64-opc.c:2517
++#: aarch64-opc.c:1840 aarch64-opc.c:2101 aarch64-opc.c:2136 aarch64-opc.c:2155
++#: aarch64-opc.c:2163 aarch64-opc.c:2252 aarch64-opc.c:2429 aarch64-opc.c:2529
++#: aarch64-opc.c:2542
+ msgid "immediate out of range"
+ msgstr "непосредни је ван опсега"
+
+-#: aarch64-opc.c:1846 aarch64-opc.c:1888 aarch64-opc.c:1950 aarch64-opc.c:1984
++#: aarch64-opc.c:1870 aarch64-opc.c:1912 aarch64-opc.c:1975 aarch64-opc.c:2009
+ msgid "invalid addressing mode"
+ msgstr "непознат режим адресирања"
+
+-#: aarch64-opc.c:1942
++#: aarch64-opc.c:1967
+ msgid "index register xzr is not allowed"
+ msgstr "регистар индекса „xzr“ није допуштен"
+
+-#: aarch64-opc.c:2064 aarch64-opc.c:2086 aarch64-opc.c:2307 aarch64-opc.c:2315
+-#: aarch64-opc.c:2381 aarch64-opc.c:2410
++#: aarch64-opc.c:2089 aarch64-opc.c:2111 aarch64-opc.c:2332 aarch64-opc.c:2340
++#: aarch64-opc.c:2406 aarch64-opc.c:2435
+ msgid "invalid shift operator"
+ msgstr "неисправан оператор помака"
+
+-#: aarch64-opc.c:2070
++#: aarch64-opc.c:2095
+ msgid "shift amount must be 0 or 12"
+ msgstr "износ помака мора бити 0 или 12"
+
+-#: aarch64-opc.c:2093
++#: aarch64-opc.c:2118
+ msgid "shift amount must be a multiple of 16"
+ msgstr "износ помака мора бити множилац од 16"
+
+-#: aarch64-opc.c:2105
++#: aarch64-opc.c:2130
+ msgid "negative immediate value not allowed"
+ msgstr "негативна вредност непосредног није дозвољена"
+
+-#: aarch64-opc.c:2238
++#: aarch64-opc.c:2263
+ msgid "immediate zero expected"
+ msgstr "очекиван је непосредни нула"
+
+-#: aarch64-opc.c:2252
++#: aarch64-opc.c:2277
+ msgid "rotate expected to be 0, 90, 180 or 270"
+ msgstr "очекивано је да заокрет буде 0, 90, 180 или 270"
+
+-#: aarch64-opc.c:2263
++#: aarch64-opc.c:2288
+ msgid "rotate expected to be 90 or 270"
+ msgstr "очекивано је да заокрет буде 90 или 270"
+
+-#: aarch64-opc.c:2323
++#: aarch64-opc.c:2348
+ msgid "shift is not permitted"
+ msgstr "помак није допуштен"
+
+-#: aarch64-opc.c:2348
++#: aarch64-opc.c:2373
+ msgid "invalid value for immediate"
+ msgstr "неисправна вредност за непосредног"
+
+-#: aarch64-opc.c:2373
++#: aarch64-opc.c:2398
+ msgid "shift amount must be 0 or 16"
+ msgstr "износ помака мора бити 0 или 16"
+
+-#: aarch64-opc.c:2394
++#: aarch64-opc.c:2419
+ msgid "floating-point immediate expected"
+ msgstr "очекиван је непосредни са покретним зарезом"
+
+-#: aarch64-opc.c:2428
++#: aarch64-opc.c:2453
+ msgid "no shift amount allowed for 8-bit constants"
+ msgstr "износ помака није допуштен за 8-битне константе"
+
+-#: aarch64-opc.c:2438
++#: aarch64-opc.c:2463
+ msgid "shift amount must be 0 or 8"
+ msgstr "износ помака мора бити 0 или 8"
+
+-#: aarch64-opc.c:2451
++#: aarch64-opc.c:2476
+ msgid "immediate too big for element size"
+ msgstr "непосредни је превелик за величину елеммента"
+
+-#: aarch64-opc.c:2458
++#: aarch64-opc.c:2483
+ msgid "invalid arithmetic immediate"
+ msgstr "неисправан непосредни аритметике"
+
+-#: aarch64-opc.c:2472
++#: aarch64-opc.c:2497
+ msgid "floating-point value must be 0.5 or 1.0"
+ msgstr "вредност покретног зареза мора бити 0.5 или 1.0"
+
+-#: aarch64-opc.c:2482
++#: aarch64-opc.c:2507
+ msgid "floating-point value must be 0.5 or 2.0"
+ msgstr "вредност покретног зареза мора бити 0.5 или 2.0"
+
+-#: aarch64-opc.c:2492
++#: aarch64-opc.c:2517
+ msgid "floating-point value must be 0.0 or 1.0"
+ msgstr "вредност покретног зареза мора бити 0.0 или 1.0"
+
+-#: aarch64-opc.c:2523
++#: aarch64-opc.c:2548
+ msgid "invalid replicated MOV immediate"
+ msgstr "неисправан реплицирани „MOV“ непосредни"
+
+-#: aarch64-opc.c:2644
++#: aarch64-opc.c:2656
+ msgid "extend operator expected"
+ msgstr "очекиван је проширени оператор"
+
+-#: aarch64-opc.c:2657
++#: aarch64-opc.c:2669
+ msgid "missing extend operator"
+ msgstr "недостаје проширени оператор"
+
+-#: aarch64-opc.c:2663
++#: aarch64-opc.c:2675
+ msgid "'LSL' operator not allowed"
+ msgstr "„LSL“ оператор није допуштен"
+
+-#: aarch64-opc.c:2684
++#: aarch64-opc.c:2696
+ msgid "W register expected"
+ msgstr "„W“ регистар је очекиван"
+
+-#: aarch64-opc.c:2695
++#: aarch64-opc.c:2707
+ msgid "shift operator expected"
+ msgstr "очекиван је оператор помака"
+
+-#: aarch64-opc.c:2702
++#: aarch64-opc.c:2714
+ msgid "'ROR' operator not allowed"
+ msgstr "„ROR“ оператор није допуштен"
+
+-#: aarch64-opc.c:3722
++#: aarch64-opc.c:3852
+ msgid "reading from a write-only register"
+ msgstr "читам из регистра само за писање"
+
+-#: aarch64-opc.c:3724
++#: aarch64-opc.c:3854
+ msgid "writing to a read-only register"
+ msgstr "пишем у регистар само за читање"
+
+-#: aarch64-opc.c:5165
++#: aarch64-opc.c:5445
++msgid "the three register operands must be distinct from one another"
++msgstr "операнди три регистра морају бити различити"
++
++#: aarch64-opc.c:5556
++msgid "destination register differs from preceding instruction"
++msgstr "регистар одредишта се разликује од претходеће инструкције"
++
++#: aarch64-opc.c:5559
++msgid "source register differs from preceding instruction"
++msgstr "регистар изворишта се разликује од претходеће инструкције"
++
++#: aarch64-opc.c:5562
++msgid "size register differs from preceding instruction"
++msgstr "регистар величине се разликује од претходеће инструкције"
++
++#: aarch64-opc.c:5610
+ msgid "instruction opens new dependency sequence without ending previous one"
+ msgstr "инструкција је отворила нови низ зависности а да није завршила претходни"
+
+-#: aarch64-opc.c:5185
++#: aarch64-opc.c:5639
+ msgid "previous `movprfx' sequence not closed"
+ msgstr "претходни „movprfx“ низ није затворен"
+
+-#: aarch64-opc.c:5204
++#: aarch64-opc.c:5658
+ msgid "SVE instruction expected after `movprfx'"
+ msgstr "инструкција „SVE“ је очекивана након „movprfx“"
+
+-#: aarch64-opc.c:5217
++#: aarch64-opc.c:5671
+ msgid "SVE `movprfx' compatible instruction expected"
+ msgstr "очекивана је „SVE movprfx“ сагласна инструкција"
+
+-#: aarch64-opc.c:5304
++#: aarch64-opc.c:5759
+ msgid "predicated instruction expected after `movprfx'"
+ msgstr "предвиђена инструкција је очекивана након „movprfx“"
+
+-#: aarch64-opc.c:5316
++#: aarch64-opc.c:5771
+ msgid "merging predicate expected due to preceding `movprfx'"
+ msgstr "стапање предиката је очекивано услед претходећег „movprfx“"
+
+-#: aarch64-opc.c:5328
++#: aarch64-opc.c:5783
+ msgid "predicate register differs from that in preceding `movprfx'"
+ msgstr "регистрар предиката се разликује од оног у претходећем „movprfx“"
+
+-#: aarch64-opc.c:5347
++#: aarch64-opc.c:5802
+ msgid "output register of preceding `movprfx' not used in current instruction"
+ msgstr "регистар излаза претходеће „movprfx“ није коришћен у текућој инструкцији"
+
+-#: aarch64-opc.c:5360
++#: aarch64-opc.c:5815
+ msgid "output register of preceding `movprfx' expected as output"
+ msgstr "регистар излаза претходеће „movprfx“ је очекиван као излаз"
+
+-#: aarch64-opc.c:5372
++#: aarch64-opc.c:5827
+ msgid "output register of preceding `movprfx' used as input"
+ msgstr "регистар излаза претходеће „movprfx“ је коришћен као улаз"
+
+-#: aarch64-opc.c:5388
++#: aarch64-opc.c:5843
+ msgid "register size not compatible with previous `movprfx'"
+ msgstr "величина регистра није сагласна са претходним „movprfx“"
+
+@@ -437,7 +463,7 @@ msgstr ""
+ "Следеће опције разложитеља специфичне за „ARC“ су подржане за коришћење\n"
+ "са прекидачем „-M“ (више опција треба да се раздвајају зарезима):\n"
+
+-#: arc-dis.c:1558 mips-dis.c:2812
++#: arc-dis.c:1558 mips-dis.c:2812 riscv-dis.c:1135
+ #, c-format
+ msgid ""
+ "\n"
+@@ -618,67 +644,67 @@ msgstr "вредност мор бити у опсегу од 0 до 31"
+ msgid "invalid position, should be one of: 0,4,8,...124."
+ msgstr "неисправан положај, треба да буде: 0,4,8,...или 124."
+
+-#: arm-dis.c:5187
++#: arm-dis.c:5204
+ msgid "Select raw register names"
+ msgstr "Бира сирове називе регистра"
+
+-#: arm-dis.c:5189
++#: arm-dis.c:5206
+ msgid "Select register names used by GCC"
+ msgstr "Бира називе регистра које користи „GCC“"
+
+-#: arm-dis.c:5191
++#: arm-dis.c:5208
+ msgid "Select register names used in ARM's ISA documentation"
+ msgstr "Бира називе регистра коришћене у „ISA“ документацији „ARM“-а"
+
+-#: arm-dis.c:5193
++#: arm-dis.c:5210
+ msgid "Assume all insns are Thumb insns"
+ msgstr "Претпоставља да су сви инснси „Thumb“ инснси"
+
+-#: arm-dis.c:5194
++#: arm-dis.c:5211
+ msgid "Examine preceding label to determine an insn's type"
+ msgstr "Происпитује претходећи натпис да одреди врсту „insn“-а"
+
+-#: arm-dis.c:5195
++#: arm-dis.c:5212
+ msgid "Select register names used in the APCS"
+ msgstr "Бира називе регистра који се користе у „APCS“-у"
+
+-#: arm-dis.c:5197
++#: arm-dis.c:5214
+ msgid "Select register names used in the ATPCS"
+ msgstr "Бира називе регистра који се користе у „ATPCS“-у"
+
+-#: arm-dis.c:5199
++#: arm-dis.c:5216
+ msgid "Select special register names used in the ATPCS"
+ msgstr "Бира посебне називе регистра који се користе у „ATPCS“-у"
+
+-#: arm-dis.c:5201
++#: arm-dis.c:5218
+ msgid "Enable CDE extensions for coprocessor N space"
+ msgstr "Укључује „CDE“ проширења за N простор копроцесора"
+
+-#: arm-dis.c:8373
++#: arm-dis.c:8390
+ msgid "<illegal precision>"
+ msgstr "<неисправна тачност>"
+
+-#: arm-dis.c:11613
++#: arm-dis.c:11631
+ #, c-format
+ msgid "unrecognised register name set: %s"
+ msgstr "непознат назив регистра је подешен: %s"
+
+-#: arm-dis.c:11627
++#: arm-dis.c:11645
+ #, c-format
+ msgid "cde coprocessor not between 0-7: %s"
+ msgstr "„cde“ копроцесор није између 0-7: %s"
+
+-#: arm-dis.c:11633
++#: arm-dis.c:11651
+ #, c-format
+ msgid "coproc must have an argument: %s"
+ msgstr "копроцесор мора имати аргумент: %s"
+
+-#: arm-dis.c:11646
++#: arm-dis.c:11664
+ #, c-format
+ msgid "coprocN argument takes options \"generic\", \"cde\", or \"CDE\": %s"
+ msgstr "аргумент копроцN може да има опције „generic“, „cde“, или „CDE“: %s"
+
+-#: arm-dis.c:12357
++#: arm-dis.c:12374
+ #, c-format
+ msgid ""
+ "\n"
+@@ -689,17 +715,17 @@ msgstr ""
+ "Следеће опције разложитеља специфичне за „ARM“ су подржане за коришћење са\n"
+ "прекидачем „-M“:\n"
+
+-#: avr-dis.c:115 avr-dis.c:136
++#: avr-dis.c:124 avr-dis.c:145
+ #, c-format
+ msgid "undefined"
+ msgstr "неодређено"
+
+-#: avr-dis.c:218
++#: avr-dis.c:236
+ #, c-format
+ msgid "internal disassembler error"
+ msgstr "унутрашња грешка разложитеља"
+
+-#: avr-dis.c:272
++#: avr-dis.c:290
+ #, c-format
+ msgid "unknown constraint `%c'"
+ msgstr "непознато ограничење „%c“"
+@@ -786,17 +812,17 @@ msgstr "лоша инструкција „%.50s...“"
+ msgid "bad instruction `%.50s'"
+ msgstr "лоша инструкција „%.50s“"
+
+-#: bpf-desc.c:1767
++#: bpf-desc.c:1768
+ #, c-format
+ msgid "internal error: bpf_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: bpf_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: bpf-desc.c:1855
++#: bpf-desc.c:1856
+ #, c-format
+ msgid "internal error: bpf_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: bpf_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: bpf-desc.c:1874
++#: bpf-desc.c:1875
+ #, c-format
+ msgid "internal error: bpf_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: bpf_cgen_cpu_open: нису наведене крајњости"
+@@ -894,17 +920,17 @@ msgstr "унутрашња грешка: непознато поље %d прил
+ msgid "operand out of range (%lu not between %lu and %lu)"
+ msgstr "операнд је ван опсега (%lu није између %lu и %lu)"
+
+-#: cris-desc.c:2621
++#: cris-desc.c:2622
+ #, c-format
+ msgid "internal error: cris_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: cris_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: cris-desc.c:2709
++#: cris-desc.c:2710
+ #, c-format
+ msgid "internal error: cris_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: cris_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: cris-desc.c:2728
++#: cris-desc.c:2729
+ #, c-format
+ msgid "internal error: cris_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: cris_cgen_cpu_open: нису наведене крајњости"
+@@ -930,12 +956,12 @@ msgstr "Непозната грешка %d\n"
+ msgid "Address 0x%s is out of bounds.\n"
+ msgstr "Адреса 0х%s је изван граница.\n"
+
+-#: disassemble.c:848
++#: disassemble.c:859
+ #, c-format
+ msgid "assertion fail %s:%d"
+ msgstr "неуспех тврдње „%s:%d“"
+
+-#: disassemble.c:849
++#: disassemble.c:860
+ msgid "Please report this bug"
+ msgstr "Известите о овој грешци"
+
+@@ -974,17 +1000,17 @@ msgstr "ПРЕКИДАМ: непознат операнд"
+ msgid "Not a pc-relative address."
+ msgstr "Није адреса која се односи на пц."
+
+-#: epiphany-desc.c:2109
++#: epiphany-desc.c:2110
+ #, c-format
+ msgid "internal error: epiphany_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: epiphany_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: epiphany-desc.c:2197
++#: epiphany-desc.c:2198
+ #, c-format
+ msgid "internal error: epiphany_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: epiphany_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: epiphany-desc.c:2216
++#: epiphany-desc.c:2217
+ #, c-format
+ msgid "internal error: epiphany_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: epiphany_cgen_cpu_open: нису наведене крајњости"
+@@ -1005,17 +1031,17 @@ msgstr "Регистар мора бити између r8 и r15"
+ msgid "Register list is not valid"
+ msgstr "Списак регистра није исправан"
+
+-#: fr30-desc.c:1586
++#: fr30-desc.c:1587
+ #, c-format
+ msgid "internal error: fr30_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: fr30_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: fr30-desc.c:1674
++#: fr30-desc.c:1675
+ #, c-format
+ msgid "internal error: fr30_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: fr30_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: fr30-desc.c:1693
++#: fr30-desc.c:1694
+ #, c-format
+ msgid "internal error: fr30_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: fr30_cgen_cpu_open: нису наведене крајњости"
+@@ -1036,17 +1062,17 @@ msgstr "Вредност операнда A мора бити 0 или 1"
+ msgid "register number must be even"
+ msgstr "број регистра мора бити паран"
+
+-#: frv-desc.c:6326
++#: frv-desc.c:6327
+ #, c-format
+ msgid "internal error: frv_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: frv_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: frv-desc.c:6414
++#: frv-desc.c:6415
+ #, c-format
+ msgid "internal error: frv_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: frv_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: frv-desc.c:6433
++#: frv-desc.c:6434
+ #, c-format
+ msgid "internal error: frv_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: frv_cgen_cpu_open: нису наведене крајњости"
+@@ -1076,11 +1102,11 @@ msgstr "Hmmmm 0x%x"
+ msgid "Don't understand 0x%x \n"
+ msgstr "Не разумем 0x%x \n"
+
+-#: i386-dis.c:8591
++#: i386-dis.c:8528
+ msgid "<internal disassembler error>"
+ msgstr "<унутрашња грешка разложитеља>"
+
+-#: i386-dis.c:8900
++#: i386-dis.c:8802
+ #, c-format
+ msgid ""
+ "\n"
+@@ -1091,32 +1117,32 @@ msgstr ""
+ "Следеће опције разложитеља специфичне за „i386/x86-64“ су подржане за коришћење\n"
+ "са прекидачем „-M“ (више опција треба да се раздвајају зарезима):\n"
+
+-#: i386-dis.c:8904
++#: i386-dis.c:8806
+ #, c-format
+ msgid " x86-64 Disassemble in 64bit mode\n"
+ msgstr " x86-64 Разлаже у режиму 64-бита\n"
+
+-#: i386-dis.c:8905
++#: i386-dis.c:8807
+ #, c-format
+ msgid " i386 Disassemble in 32bit mode\n"
+ msgstr " i386 Разлаже у режиму 32-бита\n"
+
+-#: i386-dis.c:8906
++#: i386-dis.c:8808
+ #, c-format
+ msgid " i8086 Disassemble in 16bit mode\n"
+ msgstr " i8086 Разлаже у режиму 16-бита\n"
+
+-#: i386-dis.c:8907
++#: i386-dis.c:8809
+ #, c-format
+ msgid " att Display instruction in AT&T syntax\n"
+ msgstr " att Приказује инструкцију у синтакси „AT&T“-ја\n"
+
+-#: i386-dis.c:8908
++#: i386-dis.c:8810
+ #, c-format
+ msgid " intel Display instruction in Intel syntax\n"
+ msgstr " intel Приказује инструкцију у синтакси Интела\n"
+
+-#: i386-dis.c:8909
++#: i386-dis.c:8811
+ #, c-format
+ msgid ""
+ " att-mnemonic\n"
+@@ -1125,7 +1151,7 @@ msgstr ""
+ " att-mnemonic\n"
+ " Приказује инструкцију у мнемонику „AT&T“-а\n"
+
+-#: i386-dis.c:8911
++#: i386-dis.c:8813
+ #, c-format
+ msgid ""
+ " intel-mnemonic\n"
+@@ -1134,136 +1160,136 @@ msgstr ""
+ " intel-mnemonic\n"
+ " Приказује инструкцију у мнемонику Интела\n"
+
+-#: i386-dis.c:8913
++#: i386-dis.c:8815
+ #, c-format
+ msgid " addr64 Assume 64bit address size\n"
+ msgstr " addr64 Претпоставља величину адресе од 64 бита\n"
+
+-#: i386-dis.c:8914
++#: i386-dis.c:8816
+ #, c-format
+ msgid " addr32 Assume 32bit address size\n"
+ msgstr " addr32 Претпоставља величину адресе од 32 бита\n"
+
+-#: i386-dis.c:8915
++#: i386-dis.c:8817
+ #, c-format
+ msgid " addr16 Assume 16bit address size\n"
+ msgstr " addr16 Претпоставља величину адресе од 16 бита\n"
+
+-#: i386-dis.c:8916
++#: i386-dis.c:8818
+ #, c-format
+ msgid " data32 Assume 32bit data size\n"
+ msgstr " data32 Претпоставља величину података од 32 бита\n"
+
+-#: i386-dis.c:8917
++#: i386-dis.c:8819
+ #, c-format
+ msgid " data16 Assume 16bit data size\n"
+ msgstr " data16 Претпоставља величину података од 16 бита\n"
+
+-#: i386-dis.c:8918
++#: i386-dis.c:8820
+ #, c-format
+ msgid " suffix Always display instruction suffix in AT&T syntax\n"
+ msgstr " suffix Увек приказује суфикс инструкције у синтакси „AT&T“-ја\n"
+
+-#: i386-dis.c:8919
++#: i386-dis.c:8821
+ #, c-format
+ msgid " amd64 Display instruction in AMD64 ISA\n"
+ msgstr " amd64 Приказује инструкцију у „AMD64 ISA“\n"
+
+-#: i386-dis.c:8920
++#: i386-dis.c:8822
+ #, c-format
+ msgid " intel64 Display instruction in Intel64 ISA\n"
+ msgstr " intel64 Приказује инструкције у „Intel64 ISA“\n"
+
+-#: i386-dis.c:9484
++#: i386-dis.c:9402
+ msgid "64-bit address is disabled"
+ msgstr "64-битна адреса је искључена"
+
+-#: i386-gen.c:851
++#: i386-gen.c:856
+ #, c-format
+ msgid "%s: error: "
+ msgstr "%s: грешка: "
+
+-#: i386-gen.c:1007
++#: i386-gen.c:1012
+ #, c-format
+ msgid "%s: %d: unknown bitfield: %s\n"
+ msgstr "%s: %d: непознато поље бита: %s\n"
+
+-#: i386-gen.c:1009
++#: i386-gen.c:1014
+ #, c-format
+ msgid "unknown bitfield: %s\n"
+ msgstr "непознато поље бита: %s\n"
+
+-#: i386-gen.c:1072
++#: i386-gen.c:1077
+ #, c-format
+ msgid "%s: %d: missing `)' in bitfield: %s\n"
+ msgstr "%s: %d: недостаје ) у пољу бита: %s\n"
+
+-#: i386-gen.c:1173
++#: i386-gen.c:1178
+ #, c-format
+ msgid "unknown broadcast operand: %s\n"
+ msgstr "непознат операнд емитовања: %s\n"
+
+-#: i386-gen.c:1228
++#: i386-gen.c:1233
+ #, c-format
+ msgid "%s:%d: Conflicting opcode space specifications\n"
+ msgstr "%s:%d: Сукобљавајуће одредбе опкод размака\n"
+
+-#: i386-gen.c:1232
++#: i386-gen.c:1237
+ #, c-format
+ msgid "%s:%d: Warning: redundant opcode space specification\n"
+ msgstr "%s:%d: Упозорење: понављајућа одредба опкод размака\n"
+
+-#: i386-gen.c:1241
++#: i386-gen.c:1246
+ #, c-format
+ msgid "%s:%d: Conflicting prefix specifications\n"
+ msgstr "%s:%d: Сукобљавајуће одредбе префикса\n"
+
+-#: i386-gen.c:1245
++#: i386-gen.c:1250
+ #, c-format
+ msgid "%s:%d: Warning: redundant prefix specification\n"
+ msgstr "%s:%d: Упозорење: понављајућа одредба префикса\n"
+
+-#: i386-gen.c:1455
++#: i386-gen.c:1460
+ #, c-format
+ msgid "%s:%d: %s: unrecognized opcode encoding space\n"
+ msgstr "%s:%d: %s: непознат размак опкод кодирања\n"
+
+-#: i386-gen.c:1461
++#: i386-gen.c:1466
+ #, c-format
+ msgid "%s:%d: %s: residual opcode (0x%0*llx) too large\n"
+ msgstr "%s:%d: %s: заостали опкод (0x%0*llx) је превелик\n"
+
+-#: i386-gen.c:1883
++#: i386-gen.c:1888
+ #, c-format
+ msgid "can't find i386-reg.tbl for reading, errno = %s\n"
+ msgstr "не могу да нађем „i386-reg.tbl“ за читање, грешка = %s\n"
+
+-#: i386-gen.c:1961
++#: i386-gen.c:1966
+ #, c-format
+ msgid "can't create i386-init.h, errno = %s\n"
+ msgstr "не могу да направим „i386-init.h“, грешка = %s\n"
+
+-#: i386-gen.c:2051 ia64-gen.c:2829
++#: i386-gen.c:2056 ia64-gen.c:2829
+ #, c-format
+ msgid "unable to change directory to \"%s\", errno = %s\n"
+ msgstr "не могу да пређем у директоријум „%s“, гршка = %s\n"
+
+-#: i386-gen.c:2065 i386-gen.c:2070
++#: i386-gen.c:2070 i386-gen.c:2075
+ #, c-format
+ msgid "CpuMax != %d!\n"
+ msgstr "CpuMax != %d!\n"
+
+-#: i386-gen.c:2074
++#: i386-gen.c:2079
+ #, c-format
+ msgid "%d unused bits in i386_cpu_flags.\n"
+ msgstr "%d некоришћена бита у „i386_cpu_flags“.\n"
+
+-#: i386-gen.c:2089
++#: i386-gen.c:2094
+ #, c-format
+ msgid "%d unused bits in i386_operand_type.\n"
+ msgstr "%d некоришћена бита у „i386_operand_type“.\n"
+
+-#: i386-gen.c:2103
++#: i386-gen.c:2108
+ #, c-format
+ msgid "can't create i386-tbl.h, errno = %s\n"
+ msgstr "не могу да направим „i386-tbl.h“, грешка = %s\n"
+@@ -1428,17 +1454,17 @@ msgstr "„percent-operator“ операнд није симбол"
+ msgid "Attempt to find bit index of 0"
+ msgstr "Покушавам да нађем индекс бита 0"
+
+-#: ip2k-desc.c:1015
++#: ip2k-desc.c:1016
+ #, c-format
+ msgid "internal error: ip2k_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: ip2k_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: ip2k-desc.c:1103
++#: ip2k-desc.c:1104
+ #, c-format
+ msgid "internal error: ip2k_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: ip2k_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: ip2k-desc.c:1122
++#: ip2k-desc.c:1123
+ #, c-format
+ msgid "internal error: ip2k_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: ip2k_cgen_cpu_open: нису наведене крајњости"
+@@ -1455,17 +1481,17 @@ msgstr "вредност непосредног је ван опсега"
+ msgid "21-bit offset out of range"
+ msgstr "Померај 21 бита је ван опсега"
+
+-#: iq2000-desc.c:2020
++#: iq2000-desc.c:2021
+ #, c-format
+ msgid "internal error: iq2000_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: iq2000_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: iq2000-desc.c:2108
++#: iq2000-desc.c:2109
+ #, c-format
+ msgid "internal error: iq2000_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: iq2000_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: iq2000-desc.c:2127
++#: iq2000-desc.c:2128
+ #, c-format
+ msgid "internal error: iq2000_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: iq2000_cgen_cpu_open: нису наведене крајњости"
+@@ -1486,21 +1512,41 @@ msgstr "очекујем „got“ односну адресу: gotoffhi16(symbo
+ msgid "expecting got relative address: gotofflo16(symbol)"
+ msgstr "очекујем „got“ односну адресу: gotofflo16(symbol)"
+
+-#: lm32-desc.c:1002
++#: lm32-desc.c:1003
+ #, c-format
+ msgid "internal error: lm32_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: lm32_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: lm32-desc.c:1090
++#: lm32-desc.c:1091
+ #, c-format
+ msgid "internal error: lm32_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: lm32_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: lm32-desc.c:1109
++#: lm32-desc.c:1110
+ #, c-format
+ msgid "internal error: lm32_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: lm32_cgen_cpu_open: нису наведене крајњости"
+
++#: loongarch-dis.c:300
++#, c-format
++msgid ""
++"\n"
++"The following LoongArch disassembler options are supported for use\n"
++"with the -M switch (multiple options should be separated by commas):\n"
++msgstr ""
++"\n"
++"Следеће опције разложитеља „LoongArch“ су подржане за коришћење\n"
++"са прекидачем „-M“ (више опција треба раздвојити зарезима):\n"
++
++#: loongarch-dis.c:304
++#, c-format
++msgid ""
++"\n"
++" numeric Print numeric register names, rather than ABI names.\n"
++msgstr ""
++"\n"
++" numeric Исписује бројчане називе регистра, радије него „ABI“ називе.\n"
++
+ #: m10200-dis.c:151 m10300-dis.c:574
+ #, c-format
+ msgid "unknown\t0x%04lx"
+@@ -1585,32 +1631,32 @@ msgstr "није исправан пар „r0l/r0h“"
+ msgid "Invalid size specifier"
+ msgstr "Неисправан одредник величине"
+
+-#: m32c-desc.c:63033
++#: m32c-desc.c:63034
+ #, c-format
+ msgid "internal error: m32c_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: m32_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: m32c-desc.c:63121
++#: m32c-desc.c:63122
+ #, c-format
+ msgid "internal error: m32c_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: m32_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: m32c-desc.c:63140
++#: m32c-desc.c:63141
+ #, c-format
+ msgid "internal error: m32c_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: m32_cgen_cpu_open: нису наведене крајњости"
+
+-#: m32r-desc.c:1365
++#: m32r-desc.c:1366
+ #, c-format
+ msgid "internal error: m32r_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: m32r_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: m32r-desc.c:1453
++#: m32r-desc.c:1454
+ #, c-format
+ msgid "internal error: m32r_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: m32r_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: m32r-desc.c:1472
++#: m32r-desc.c:1473
+ #, c-format
+ msgid "internal error: m32r_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: m32r_cgen_cpu_open: нису наведене крајњости"
+@@ -1658,17 +1704,17 @@ msgstr "Непосредни је ван опсега од -128 до 127"
+ msgid "Value is not aligned enough"
+ msgstr "Вредност није довољно поравната"
+
+-#: mep-desc.c:6226
++#: mep-desc.c:6227
+ #, c-format
+ msgid "internal error: mep_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: mep_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: mep-desc.c:6314
++#: mep-desc.c:6315
+ #, c-format
+ msgid "internal error: mep_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: mep_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: mep-desc.c:6333
++#: mep-desc.c:6334
+ #, c-format
+ msgid "internal error: mep_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: mep_cgen_cpu_open: нису наведене крајњости"
+@@ -1847,17 +1893,17 @@ msgstr "„percent-operator“-ов операнд није симбол"
+ msgid "invalid operand. type may have values 0,1,2 only."
+ msgstr "неисправан операнд. врста може имати само вредности 0,1,2."
+
+-#: mt-desc.c:1146
++#: mt-desc.c:1147
+ #, c-format
+ msgid "internal error: mt_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: mt_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: mt-desc.c:1234
++#: mt-desc.c:1235
+ #, c-format
+ msgid "internal error: mt_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: mt_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: mt-desc.c:1253
++#: mt-desc.c:1254
+ #, c-format
+ msgid "internal error: mt_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: mt_cgen_cpu_open: нису наведене крајњости"
+@@ -1881,47 +1927,47 @@ msgstr "унутрашња грешка: непознати хардверски
+ msgid "insufficient data to decode instruction"
+ msgstr "недовољно података за декодирање инструкције"
+
+-#: nfp-dis.c:927
++#: nfp-dis.c:930
+ msgid "<invalid_instruction>:"
+ msgstr "<неисправна_инструкција>:"
+
+-#: nfp-dis.c:1331
++#: nfp-dis.c:1334
+ msgid ", <invalid CRC operator>, "
+ msgstr ", <неисправан „CRC“ оператор>, "
+
+-#: nfp-dis.c:1683
++#: nfp-dis.c:1686
+ msgid "<invalid branch>["
+ msgstr "<неисправна грана>["
+
+-#: nfp-dis.c:2052 nfp-dis.c:2323
++#: nfp-dis.c:2055 nfp-dis.c:2326
+ #, c-format
+ msgid "<invalid cmd target %d:%d:%d>[]"
+ msgstr "<неисправна мета наредбе %d:%d:%d>[]"
+
+-#: nfp-dis.c:2063 nfp-dis.c:2334
++#: nfp-dis.c:2066 nfp-dis.c:2337
+ #, c-format
+ msgid "<invalid cmd action %d:%d:%d>[]"
+ msgstr "<неисправна радња наредбе %d:%d:%d>[]"
+
+-#: nfp-dis.c:2555
++#: nfp-dis.c:2558
+ msgid "File has no ME-Config section."
+ msgstr "Датотека нема одељак „ME“-Подешавања."
+
+-#: nfp-dis.c:2569
++#: nfp-dis.c:2572
+ msgid "File has invalid ME-Config section."
+ msgstr "Датотека има неисправан одељак „ME“-Подешавања."
+
+-#: nfp-dis.c:2711
++#: nfp-dis.c:2717
+ #, c-format
+ msgid "Error processing section %u "
+ msgstr "Грешка обраде одељка %u "
+
+-#: nfp-dis.c:2740
++#: nfp-dis.c:2746
+ #, c-format
+ msgid "Invalid NFP option: %s"
+ msgstr "Неисправна „NFP“ опција: %s"
+
+-#: nfp-dis.c:2972
++#: nfp-dis.c:2984
+ #, c-format
+ msgid ""
+ "\n"
+@@ -1932,7 +1978,7 @@ msgstr ""
+ "Следеће опције разложитеља специфичне за „NFP“ су подржане за коришћење\n"
+ "са прекидачем „-M“ (више опција треба да се раздвајају зарезима):\n"
+
+-#: nfp-dis.c:2976
++#: nfp-dis.c:2988
+ #, c-format
+ msgid ""
+ "\n"
+@@ -1973,17 +2019,17 @@ msgstr "премештај је неисправан за спремиште"
+ msgid "internal relocation type invalid"
+ msgstr "унутрашња врста премештаја је неисправна"
+
+-#: or1k-desc.c:2040
++#: or1k-desc.c:2041
+ #, c-format
+ msgid "internal error: or1k_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: or1k_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: or1k-desc.c:2128
++#: or1k-desc.c:2129
+ #, c-format
+ msgid "internal error: or1k_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: or1k_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: or1k-desc.c:2147
++#: or1k-desc.c:2148
+ #, c-format
+ msgid "internal error: or1k_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: or1k_cgen_cpu_open: нису наведене крајњости"
+@@ -2133,74 +2179,55 @@ msgid "invalid TH value"
+ msgstr "неисправна „TH“ вредност"
+
+ #. The option without '=' should be defined above.
+-#: riscv-dis.c:85 riscv-dis.c:122
++#: riscv-dis.c:103 riscv-dis.c:140
+ #, c-format
+ msgid "unrecognized disassembler option: %s"
+ msgstr "непозната опција разложитеља: %s"
+
+ #. Invalid options with '=', no option name before '=',
+ #. and no value after '='.
+-#: riscv-dis.c:93
++#: riscv-dis.c:111
+ #, c-format
+ msgid "unrecognized disassembler option with '=': %s"
+ msgstr "непозната опција разложитеља са знаком =: %s"
+
+-#: riscv-dis.c:107
++#: riscv-dis.c:125
+ #, c-format
+ msgid "unknown privileged spec set by %s=%s"
+ msgstr "непозната одредба привилегије постављена са „%s=%s“"
+
+-#: riscv-dis.c:114
++#: riscv-dis.c:132
+ #, c-format
+ msgid "mis-matched privilege spec set by %s=%s, the elf privilege attribute is %s"
+ msgstr "неодговарајућу одредбу привилегије је поставио „%s=%s“, атрибут елф привилегије је „%s“"
+
+-#: riscv-dis.c:416
++#: riscv-dis.c:526
+ #, c-format
+ msgid "# internal error, undefined modifier (%c)"
+ msgstr "# унутрашња грешка, неодређени измењивач (%c)"
+
+-#: riscv-dis.c:640
+-#, c-format
+-msgid ""
+-"\n"
+-"The following RISC-V-specific disassembler options are supported for use\n"
+-"with the -M switch (multiple options should be separated by commas):\n"
+-msgstr ""
+-"\n"
+-"Следеће опције разложитеља специфичне за „RISC-V-“ су подржане за коришћење\n"
+-"са прекидачем „-M“ (више опција треба да се раздвајају зарезима):\n"
++#: riscv-dis.c:1018
++msgid "Print numeric register names, rather than ABI names."
++msgstr "Исписује бројчане називе регистра, уместо „ABI“ називе."
+
+-#: riscv-dis.c:644
+-#, c-format
+-msgid ""
+-"\n"
+-" numeric Print numeric register names, rather than ABI names.\n"
+-msgstr ""
+-"\n"
+-" numeric Исписује бројчане називе регистра, радије него „ABI“ називе.\n"
++#: riscv-dis.c:1021
++msgid "Disassemble only into canonical instructions."
++msgstr "Рашчлањује само у канонске инструкције."
+
+-#: riscv-dis.c:647
+-#, c-format
+-msgid ""
+-"\n"
+-" no-aliases Disassemble only into canonical instructions, rather\n"
+-" than into pseudoinstructions.\n"
+-msgstr ""
+-"\n"
+-" no-aliases Разлаже само у прописне инструкције, радије него\n"
+-" у псеудоинструкције.\n"
++#: riscv-dis.c:1024
++msgid "Print the CSR according to the chosen privilege spec."
++msgstr "Исписује „CSR“ у складу са изабраном одредбом привилегије."
+
+-#: riscv-dis.c:651
++#: riscv-dis.c:1100
+ #, c-format
+ msgid ""
+ "\n"
+-" priv-spec=PRIV Print the CSR according to the chosen privilege spec\n"
+-" (1.9, 1.9.1, 1.10, 1.11).\n"
++"The following RISC-V specific disassembler options are supported for use\n"
++"with the -M switch (multiple options should be separated by commas):\n"
+ msgstr ""
+ "\n"
+-" priv-spec=ПРИВ Исписује „CSR“ у складу са изабраном одредбом привилегије\n"
+-" (1.9, 1.9.1, 1.10, 1.11).\n"
++"Следеће опције разложитеља специфичне за „RISC-V“ су подржане за коришћење\n"
++"са прекидачем „-M“ (више опција треба да се раздвајају зарезима):\n"
+
+ #: rx-dis.c:139 rx-dis.c:163 rx-dis.c:171 rx-dis.c:179 rx-dis.c:187
+ msgid "<invalid register number>"
+@@ -2222,15 +2249,15 @@ msgstr "<неисправна оп_величина>"
+ msgid "<invalid size>"
+ msgstr "<неисправна величина>"
+
+-#: s12z-dis.c:236 s12z-dis.c:293 s12z-dis.c:304
++#: s12z-dis.c:239 s12z-dis.c:296 s12z-dis.c:307
+ msgid "<illegal reg num>"
+ msgstr "<неисправан број регистра>"
+
+-#: s12z-dis.c:367
++#: s12z-dis.c:370
+ msgid "<bad>"
+ msgstr "<лоше>"
+
+-#: s12z-dis.c:377
++#: s12z-dis.c:380
+ msgid ".<bad>"
+ msgstr ".<лоше>"
+
+@@ -2430,17 +2457,17 @@ msgstr "Недостаје префикс „sof:“"
+ msgid "Missing 'seg:' prefix"
+ msgstr "Недостаје префикс „seg:“"
+
+-#: xc16x-desc.c:3349
++#: xc16x-desc.c:3350
+ #, c-format
+ msgid "internal error: xc16x_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: xc16x_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: xc16x-desc.c:3437
++#: xc16x-desc.c:3438
+ #, c-format
+ msgid "internal error: xc16x_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: xc16x_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: xc16x-desc.c:3456
++#: xc16x-desc.c:3457
+ #, c-format
+ msgid "internal error: xc16x_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: xc16x_cgen_cpu_open: нису наведене крајњости"
+@@ -2485,21 +2512,30 @@ msgstr "Операнд није симбол"
+ msgid "Syntax error: No trailing ')'"
+ msgstr "Грешка синтаксе: Нема пратеће )"
+
+-#: xstormy16-desc.c:1317
++#: xstormy16-desc.c:1318
+ #, c-format
+ msgid "internal error: xstormy16_cgen_rebuild_tables: conflicting insn-chunk-bitsize values: `%d' vs. `%d'"
+ msgstr "унутрашња грешка: xstormy16_cgen_rebuild_tables: сукобљене „insn-chunk-bitsize“ вредности: %d наспрам %d"
+
+-#: xstormy16-desc.c:1405
++#: xstormy16-desc.c:1406
+ #, c-format
+ msgid "internal error: xstormy16_cgen_cpu_open: unsupported argument `%d'"
+ msgstr "унутрашња грешка: xstormy16_cgen_cpu_open: неподржан аргумент „%d“"
+
+-#: xstormy16-desc.c:1424
++#: xstormy16-desc.c:1425
+ #, c-format
+ msgid "internal error: xstormy16_cgen_cpu_open: no endianness specified"
+ msgstr "унутрашња грешка: xstormy16_cgen_cpu_open: нису наведене крајњости"
+
++#~ msgid ""
++#~ "\n"
++#~ " no-aliases Disassemble only into canonical instructions, rather\n"
++#~ " than into pseudoinstructions.\n"
++#~ msgstr ""
++#~ "\n"
++#~ " no-aliases Разлаже само у прописне инструкције, радије него\n"
++#~ " у псеудоинструкције.\n"
++
+ #~ msgid " dsp Recognize DSP instructions.\n"
+ #~ msgstr " dsp Препознаје „DSP“ инструкције.\n"
+
--- /dev/null
+# DP: Don't bump the version when doing distro builds
+
+git diff acda0027559c6112ea91af13fb32dd4bef8f0b8b 9288e0fae61b716ce75334be906283de8b18b787
+
+--- a/bfd/ChangeLog
++++ b/bfd/ChangeLog
+@@ -4,11 +4,6 @@
+
+ 2022-02-09 Nick Clifton <nickc@redhat.com>
+
+- * development.sh (development): Set to true.
+- * version.m4 (BFD_VERSION): Set to 2.38.0.
+-
+-2022-02-09 Nick Clifton <nickc@redhat.com>
+-
+ 2.38 release.
+ * development.sh (development): Set to false.
+ (experimental): Set to false.
+--- a/bfd/development.sh
++++ b/bfd/development.sh
+@@ -16,7 +16,7 @@
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+ # Controls whether to enable development-mode features by default.
+-development=true
++development=false
+
+ # Indicate whether this is a release branch.
+ experimental=false
+--- a/bfd/version.m4
++++ b/bfd/version.m4
+@@ -1 +1 @@
+-m4_define([BFD_VERSION], [2.38.0])
++m4_define([BFD_VERSION], [2.38])
+--- a/gas/ChangeLog
++++ b/gas/ChangeLog
+@@ -199,11 +199,6 @@
+
+ 2021-07-03 Nick Clifton <nickc@redhat.com>
+
+- * configure: Regenerate.
+- * po/gas.pot: Regenerate.
+-
+-2021-07-03 Nick Clifton <nickc@redhat.com>
+-
+ * 2.37 release branch created.
+
+ 2021-07-02 Alan Modra <amodra@gmail.com>
+--- a/ld/ChangeLog
++++ b/ld/ChangeLog
+@@ -182,11 +182,6 @@
+
+ 2021-07-03 Nick Clifton <nickc@redhat.com>
+
+- * configure: Regenerate.
+- * po/ld.pot: Regenerate.
+-
+-2021-07-03 Nick Clifton <nickc@redhat.com>
+-
+ * 2.37 release branch created.
+
+ 2021-06-22 Nelson Chu <nelson.chu@sifive.com>
+--- a/opcodes/ChangeLog
++++ b/opcodes/ChangeLog
+@@ -100,11 +100,6 @@
+
+ 2021-07-03 Nick Clifton <nickc@redhat.com>
+
+- * configure: Regenerate.
+- * po/opcodes.pot: Regenerate.
+-
+-2021-07-03 Nick Clifton <nickc@redhat.com>
+-
+ * 2.37 release branch created.
+
+ 2021-07-02 Alan Modra <amodra@gmail.com>
--- /dev/null
+# DP: Fix gold on mips64 targets.
+
+gold/
+
+2016-08-09 Aurelien Jarno <aurelien@aurel32.net>
+
+ * configure.tgt: Add mips64el*-*-*|mips64le*-*-* and mips64*-*-*.
+
+
+--- a/gold/configure.tgt
++++ b/gold/configure.tgt
+@@ -153,6 +153,13 @@ aarch64*-*)
+ targ_big_endian=false
+ targ_extra_big_endian=true
+ ;;
++mips*64*el*-*-*|mips*64*le*-*-*)
++ targ_obj=mips
++ targ_machine=EM_MIPS_RS3_LE
++ targ_size=64
++ targ_big_endian=false
++ targ_extra_big_endian=true
++ ;;
+ mips*el*-*-*|mips*le*-*-*)
+ targ_obj=mips
+ targ_machine=EM_MIPS_RS3_LE
+@@ -160,6 +167,13 @@ mips*el*-*-*|mips*le*-*-*)
+ targ_big_endian=false
+ targ_extra_big_endian=true
+ ;;
++mips*64*-*-*)
++ targ_obj=mips
++ targ_machine=EM_MIPS
++ targ_size=64
++ targ_big_endian=true
++ targ_extra_big_endian=false
++ ;;
+ mips*-*-*)
+ targ_obj=mips
+ targ_machine=EM_MIPS
--- /dev/null
+# DP: gold on 32bit archs: Release mapped files after each pass.
+
+--- a/gold/options.h
++++ b/gold/options.h
+@@ -1012,7 +1012,8 @@ class General_options
+
+ // k
+
+- DEFINE_bool(keep_files_mapped, options::TWO_DASHES, '\0', true,
++ DEFINE_bool(keep_files_mapped, options::TWO_DASHES, '\0',
++ sizeof(void*) >= 8,
+ N_("Keep files mapped across passes"),
+ N_("Release mapped files after each pass"));
+
--- /dev/null
+# DP: Fix gprof build error.
+
+--- a/gprof/gconfig.in
++++ b/gprof/gconfig.in
+@@ -99,9 +99,6 @@
+ #endif
+
+
+-/* Version number of package */
+-#undef VERSION
+-
+ /* Enable large inode numbers on Mac OS X 10.5. */
+ #ifndef _DARWIN_USE_64_BIT_INODE
+ # define _DARWIN_USE_64_BIT_INODE 1
--- /dev/null
+# git clone https://gitlab.com/gbenson/binutils-gdb.git gdb/src
+# git diff 1f1c02597cc199227226251a2ea51fe5f44b4d6d ec7642f5d7ba9bdbc35f08f3ffa3c360bd4618d0
+
+--- a/include/elf/common.h
++++ b/include/elf/common.h
+@@ -717,6 +717,7 @@
+ #define NT_GNU_BUILD_ID 3 /* Generated by ld --build-id. */
+ #define NT_GNU_GOLD_VERSION 4 /* Generated by gold. */
+ #define NT_GNU_PROPERTY_TYPE_0 5 /* Generated by gcc. */
++#define NT_GNU_INFINITY 8995 /* Generated by i8c. */
+
+ #define NT_GNU_BUILD_ATTRIBUTE_OPEN 0x100
+ #define NT_GNU_BUILD_ATTRIBUTE_FUNC 0x101
+--- a/binutils/readelf.c
++++ b/binutils/readelf.c
+@@ -17500,6 +17500,8 @@ get_gnu_elf_note_type (unsigned e_type)
+ return _("NT_GNU_BUILD_ATTRIBUTE_OPEN");
+ case NT_GNU_BUILD_ATTRIBUTE_FUNC:
+ return _("NT_GNU_BUILD_ATTRIBUTE_FUNC");
++ case NT_GNU_INFINITY:
++ return _("NT_GNU_INFINITY (Infinity function)");
+ default:
+ {
+ static char buff[64];
+@@ -17990,6 +17992,133 @@ next:
+ printf ("\n");
+ }
+
++#define I8_CHUNK_SIGNATURE 1
++#define I8_CHUNK_STRINGS 4
++
++typedef enum
++{
++ I8_NOTE_OK,
++ I8_NOTE_CORRUPT,
++ I8_NOTE_UNHANDLED,
++}
++i8_err_e;
++
++static i8_err_e
++infinity_get_string (const char **result,
++ unsigned char **ptr, unsigned char *limit,
++ unsigned char *table_start,
++ unsigned char *table_limit)
++{
++ dwarf_vma offset;
++ unsigned int length;
++ const char *c;
++
++ /* Read the offset. */
++ if (*ptr > limit)
++ return I8_NOTE_CORRUPT;
++
++ offset = read_uleb128 (*ptr, &length, limit);
++ *ptr += length;
++ if (*ptr > limit)
++ return I8_NOTE_CORRUPT;
++
++ /* Get the string. */
++ *result = (const char *) (table_start + offset);
++
++ /* Check the result. */
++ for (c = *result; c < (const char *) table_limit; c++)
++ {
++ if (*c == '\0')
++ return I8_NOTE_OK;
++
++ if (*c < ' ' || *c > '~')
++ return I8_NOTE_UNHANDLED;
++ }
++
++ return I8_NOTE_CORRUPT;
++}
++
++static i8_err_e
++print_infinity_note (Elf_Internal_Note *pnote)
++{
++ unsigned char *ptr = (unsigned char *) pnote->descdata;
++ unsigned char *limit = ptr + pnote->descsz;
++ unsigned char *sig_start = NULL;
++ unsigned char *str_start = NULL;
++ unsigned char *sig_limit, *str_limit;
++ const char *provider, *name, *ptypes, *rtypes;
++ i8_err_e status;
++
++ /* Locate the info and string table chunks. */
++ while (ptr < limit)
++ {
++ dwarf_vma type_id, version, size;
++ unsigned int length;
++
++ type_id = read_uleb128 (ptr, &length, limit);
++ ptr += length;
++ if (ptr >= limit)
++ return I8_NOTE_CORRUPT;
++
++ version = read_uleb128 (ptr, &length, limit);
++ ptr += length;
++ if (ptr >= limit)
++ return I8_NOTE_CORRUPT;
++
++ size = read_uleb128 (ptr, &length, limit);
++ ptr += length;
++ if (ptr + size > limit)
++ return I8_NOTE_CORRUPT;
++
++ switch (type_id)
++ {
++ case I8_CHUNK_SIGNATURE:
++ if (sig_start != NULL || (version != 1 && version != 2))
++ return I8_NOTE_UNHANDLED;
++
++ sig_start = ptr;
++ sig_limit = ptr + size;
++ break;
++
++ case I8_CHUNK_STRINGS:
++ if (str_start != NULL || version != 1)
++ return I8_NOTE_UNHANDLED;
++
++ str_start = ptr;
++ str_limit = ptr + size;
++ break;
++ }
++
++ ptr += size;
++ }
++ if (sig_start == NULL || str_start == NULL)
++ return I8_NOTE_UNHANDLED;
++
++ ptr = sig_start;
++ status = infinity_get_string (&provider,
++ &ptr, sig_limit,
++ str_start, str_limit);
++ if (status != I8_NOTE_OK)
++ return status;
++ status = infinity_get_string (&name, &ptr, sig_limit,
++ str_start, str_limit);
++ if (status != I8_NOTE_OK)
++ return status;
++ status = infinity_get_string (&ptypes, &ptr, sig_limit,
++ str_start, str_limit);
++ if (status != I8_NOTE_OK)
++ return status;
++ status = infinity_get_string (&rtypes, &ptr, sig_limit,
++ str_start, str_limit);
++ if (status != I8_NOTE_OK)
++ return status;
++
++ printf (_(" Signature: %s::%s(%s)%s\n"),
++ provider, name, ptypes, rtypes);
++
++ return I8_NOTE_OK;
++}
++
+ static bfd_boolean
+ print_gnu_note (Filedata * filedata, Elf_Internal_Note *pnote)
+ {
+@@ -18107,6 +18236,24 @@ print_gnu_note (Filedata * filedata, Elf
+ printf ("\n");
+ }
+ break;
++
++ case NT_GNU_INFINITY:
++ {
++ switch (print_infinity_note (pnote))
++ {
++ case I8_NOTE_OK:
++ break;
++
++ case I8_NOTE_CORRUPT:
++ printf (_(" <corrupt note>\n"));
++ break;
++
++ case I8_NOTE_UNHANDLED:
++ printf (_(" <unhandled note>\n"));
++ break;
++ }
++ break;
++ }
+ }
+
+ return TRUE;
--- /dev/null
+--- a/binutils/configure
++++ b/binutils/configure
+@@ -634,6 +634,7 @@ ac_subst_vars='am__EXEEXT_FALSE
+ am__EXEEXT_TRUE
+ LTLIBOBJS
+ LIBOBJS
++CTF_SOVER_EXT
+ EMULATION_VECTOR
+ EMULATION
+ OBJDUMP_PRIVATE_OFILES
+@@ -10971,7 +10972,7 @@ else
+ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
+ lt_status=$lt_dlunknown
+ cat > conftest.$ac_ext <<_LT_EOF
+-#line 10974 "configure"
++#line 10975 "configure"
+ #include "confdefs.h"
+
+ #if HAVE_DLFCN_H
+@@ -11077,7 +11078,7 @@ else
+ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
+ lt_status=$lt_dlunknown
+ cat > conftest.$ac_ext <<_LT_EOF
+-#line 11080 "configure"
++#line 11081 "configure"
+ #include "confdefs.h"
+
+ #if HAVE_DLFCN_H
+@@ -14732,6 +14733,9 @@ EMULATION_VECTOR=$targ_emul_vector
+
+
+
++CTF_SOVER_EXT=$CTF_SOVER_EXT
++
++
+ # Required for html and install-html
+
+
+--- a/binutils/configure.ac
++++ b/binutils/configure.ac
+@@ -529,6 +529,9 @@ EMULATION_VECTOR=$targ_emul_vector
+ AC_SUBST(EMULATION)
+ AC_SUBST(EMULATION_VECTOR)
+
++CTF_SOVER_EXT=$CTF_SOVER_EXT
++AC_SUBST(CTF_SOVER_EXT)
++
+ # Required for html and install-html
+ AC_SUBST(datarootdir)
+ AC_SUBST(docdir)
+--- a/binutils/Makefile.am
++++ b/binutils/Makefile.am
+@@ -169,8 +169,8 @@ BFDLIB = ../bfd/libbfd.la
+ OPCODES = ../opcodes/libopcodes.la
+
+ if ENABLE_LIBCTF
+-LIBCTF = ../libctf/libctf.la
+-LIBCTF_NOBFD = ../libctf/libctf-nobfd.la
++LIBCTF = ../libctf/libctf@CTF_SOVER_EXT@.la
++LIBCTF_NOBFD = ../libctf/libctf-nobfd@CTF_SOVER_EXT@.la
+ else
+ LIBCTF =
+ LIBCTF_NOBFD =
+--- a/binutils/Makefile.in
++++ b/binutils/Makefile.in
+@@ -245,7 +245,8 @@ am_objdump_OBJECTS = objdump.$(OBJEXT) d
+ demanguse.$(OBJEXT) $(am__objects_3) $(am__objects_1) \
+ $(am__objects_2)
+ objdump_OBJECTS = $(am_objdump_OBJECTS)
+-@ENABLE_LIBCTF_TRUE@am__DEPENDENCIES_2 = ../libctf/libctf.la
++@ENABLE_LIBCTF_TRUE@am__DEPENDENCIES_2 = \
++@ENABLE_LIBCTF_TRUE@ ../libctf/libctf@CTF_SOVER_EXT@.la
+ am_ranlib_OBJECTS = ar.$(OBJEXT) is-ranlib.$(OBJEXT) arparse.$(OBJEXT) \
+ arlex.$(OBJEXT) arsup.$(OBJEXT) rename.$(OBJEXT) \
+ binemul.$(OBJEXT) emul_$(EMULATION).$(OBJEXT) $(am__objects_1)
+@@ -254,7 +255,8 @@ am_readelf_OBJECTS = readelf.$(OBJEXT) v
+ unwind-ia64.$(OBJEXT) dwarf.$(OBJEXT) demanguse.$(OBJEXT) \
+ $(am__objects_2)
+ readelf_OBJECTS = $(am_readelf_OBJECTS)
+-@ENABLE_LIBCTF_TRUE@am__DEPENDENCIES_3 = ../libctf/libctf-nobfd.la
++@ENABLE_LIBCTF_TRUE@am__DEPENDENCIES_3 = \
++@ENABLE_LIBCTF_TRUE@ ../libctf/libctf-nobfd@CTF_SOVER_EXT@.la
+ am_size_OBJECTS = size.$(OBJEXT) $(am__objects_1)
+ size_OBJECTS = $(am_size_OBJECTS)
+ size_LDADD = $(LDADD)
+@@ -485,6 +487,7 @@ CC_FOR_BUILD = @CC_FOR_BUILD@
+ CFLAGS = @CFLAGS@
+ CPP = @CPP@
+ CPPFLAGS = @CPPFLAGS@
++CTF_SOVER_EXT = @CTF_SOVER_EXT@
+ CYGPATH_W = @CYGPATH_W@
+ DATADIRNAME = @DATADIRNAME@
+ DEBUGINFOD_CFLAGS = @DEBUGINFOD_CFLAGS@
+@@ -733,9 +736,9 @@ ELFLIBS = elfcomm.c
+ BFDLIB = ../bfd/libbfd.la
+ OPCODES = ../opcodes/libopcodes.la
+ @ENABLE_LIBCTF_FALSE@LIBCTF =
+-@ENABLE_LIBCTF_TRUE@LIBCTF = ../libctf/libctf.la
++@ENABLE_LIBCTF_TRUE@LIBCTF = ../libctf/libctf@CTF_SOVER_EXT@.la
+ @ENABLE_LIBCTF_FALSE@LIBCTF_NOBFD =
+-@ENABLE_LIBCTF_TRUE@LIBCTF_NOBFD = ../libctf/libctf-nobfd.la
++@ENABLE_LIBCTF_TRUE@LIBCTF_NOBFD = ../libctf/libctf-nobfd@CTF_SOVER_EXT@.la
+ LIBIBERTY = ../libiberty/libiberty.a
+ POTFILES = $(CFILES) $(DEBUG_SRCS) $(HFILES)
+ EXPECT = expect
+--- a/ld/configure
++++ b/ld/configure
+@@ -634,6 +634,7 @@ ac_subst_vars='am__EXEEXT_FALSE
+ am__EXEEXT_TRUE
+ LTLIBOBJS
+ LIBOBJS
++CTF_SOVER_EXT
+ TESTCTFLIB
+ TESTBFDLIB
+ EMULATION_LIBPATH
+@@ -11454,7 +11455,7 @@ else
+ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
+ lt_status=$lt_dlunknown
+ cat > conftest.$ac_ext <<_LT_EOF
+-#line 11457 "configure"
++#line 11458 "configure"
+ #include "confdefs.h"
+
+ #if HAVE_DLFCN_H
+@@ -11560,7 +11561,7 @@ else
+ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
+ lt_status=$lt_dlunknown
+ cat > conftest.$ac_ext <<_LT_EOF
+-#line 11563 "configure"
++#line 11564 "configure"
+ #include "confdefs.h"
+
+ #if HAVE_DLFCN_H
+@@ -17030,6 +17031,9 @@ fi
+ ac_config_commands="$ac_config_commands default"
+
+
++CTF_SOVER_EXT=$CTF_SOVER_EXT
++
++
+
+
+
+--- a/ld/configure.ac
++++ b/ld/configure.ac
+@@ -591,6 +591,9 @@ sed -e '/^SRC-POTFILES =/r po/SRC-POTFIL
+ -e "s,@GMOFILES@,$GMOFILES," \
+ po/Makefile.in > po/Makefile]],[[]])
+
++CTF_SOVER_EXT=$CTF_SOVER_EXT
++AC_SUBST(CTF_SOVER_EXT)
++
+ dnl Required by html, pdf, install-pdf and install-html
+ AC_SUBST(datarootdir)
+ AC_SUBST(docdir)
+--- a/ld/Makefile.am
++++ b/ld/Makefile.am
+@@ -145,7 +145,7 @@ AM_CPPFLAGS = -I. -I$(srcdir) -I../bfd -
+ BFDLIB = ../bfd/libbfd.la
+ LIBIBERTY = ../libiberty/libiberty.a
+ if ENABLE_LIBCTF
+-LIBCTF = ../libctf/libctf.la
++LIBCTF = ../libctf/libctf@CTF_SOVER_EXT@.la
+ else
+ LIBCTF =
+ endif
+--- a/ld/Makefile.in
++++ b/ld/Makefile.in
+@@ -213,7 +213,8 @@ am_ld_new_OBJECTS = ldgram.$(OBJEXT) ldl
+ plugin.$(OBJEXT) ldbuildid.$(OBJEXT)
+ ld_new_OBJECTS = $(am_ld_new_OBJECTS)
+ am__DEPENDENCIES_1 =
+-@ENABLE_LIBCTF_TRUE@am__DEPENDENCIES_2 = ../libctf/libctf.la
++@ENABLE_LIBCTF_TRUE@am__DEPENDENCIES_2 = \
++@ENABLE_LIBCTF_TRUE@ ../libctf/libctf@CTF_SOVER_EXT@.la
+ AM_V_P = $(am__v_P_@AM_V@)
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+ am__v_P_0 = false
+@@ -374,6 +375,7 @@ CCDEPMODE = @CCDEPMODE@
+ CFLAGS = @CFLAGS@
+ CPP = @CPP@
+ CPPFLAGS = @CPPFLAGS@
++CTF_SOVER_EXT = @CTF_SOVER_EXT@
+ CXX = @CXX@
+ CXXCPP = @CXXCPP@
+ CXXDEPMODE = @CXXDEPMODE@
+@@ -639,7 +641,7 @@ AM_CPPFLAGS = -I. -I$(srcdir) -I../bfd -
+ BFDLIB = ../bfd/libbfd.la
+ LIBIBERTY = ../libiberty/libiberty.a
+ @ENABLE_LIBCTF_FALSE@LIBCTF =
+-@ENABLE_LIBCTF_TRUE@LIBCTF = ../libctf/libctf.la
++@ENABLE_LIBCTF_TRUE@LIBCTF = ../libctf/libctf@CTF_SOVER_EXT@.la
+
+ # These all start with e so 'make clean' can find them.
+ ALL_EMULATION_SOURCES = \
+--- a/libctf/configure
++++ b/libctf/configure
+@@ -635,6 +635,7 @@ ac_subst_vars='am__EXEEXT_FALSE
+ am__EXEEXT_TRUE
+ LTLIBOBJS
+ LIBOBJS
++CTF_SOVER_EXT
+ VERSION_FLAGS_NOBFD
+ VERSION_FLAGS
+ TCL_TRY_FALSE
+@@ -771,7 +772,6 @@ infodir
+ docdir
+ oldincludedir
+ includedir
+-runstatedir
+ localstatedir
+ sharedstatedir
+ sysconfdir
+@@ -856,7 +856,6 @@ datadir='${datarootdir}'
+ sysconfdir='${prefix}/etc'
+ sharedstatedir='${prefix}/com'
+ localstatedir='${prefix}/var'
+-runstatedir='${localstatedir}/run'
+ includedir='${prefix}/include'
+ oldincludedir='/usr/include'
+ docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
+@@ -1109,15 +1108,6 @@ do
+ | -silent | --silent | --silen | --sile | --sil)
+ silent=yes ;;
+
+- -runstatedir | --runstatedir | --runstatedi | --runstated \
+- | --runstate | --runstat | --runsta | --runst | --runs \
+- | --run | --ru | --r)
+- ac_prev=runstatedir ;;
+- -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
+- | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
+- | --run=* | --ru=* | --r=*)
+- runstatedir=$ac_optarg ;;
+-
+ -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
+ ac_prev=sbindir ;;
+ -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
+@@ -1255,7 +1245,7 @@ fi
+ for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
+ datadir sysconfdir sharedstatedir localstatedir includedir \
+ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
+- libdir localedir mandir runstatedir
++ libdir localedir mandir
+ do
+ eval ac_val=\$$ac_var
+ # Remove trailing slashes.
+@@ -1408,7 +1398,6 @@ Fine tuning of the installation director
+ --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
+ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
+ --localstatedir=DIR modifiable single-machine data [PREFIX/var]
+- --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
+ --libdir=DIR object code libraries [EPREFIX/lib]
+ --includedir=DIR C header files [PREFIX/include]
+ --oldincludedir=DIR C header files for non-gcc [/usr/include]
+@@ -11641,7 +11630,7 @@ else
+ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
+ lt_status=$lt_dlunknown
+ cat > conftest.$ac_ext <<_LT_EOF
+-#line 11644 "configure"
++#line 11633 "configure"
+ #include "confdefs.h"
+
+ #if HAVE_DLFCN_H
+@@ -11747,7 +11736,7 @@ else
+ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
+ lt_status=$lt_dlunknown
+ cat > conftest.$ac_ext <<_LT_EOF
+-#line 11750 "configure"
++#line 11739 "configure"
+ #include "confdefs.h"
+
+ #if HAVE_DLFCN_H
+@@ -13697,6 +13686,9 @@ fi
+
+
+
++CTF_SOVER_EXT=$CTF_SOVER_EXT
++
++
+ ac_config_files="$ac_config_files Makefile"
+
+ ac_config_headers="$ac_config_headers config.h"
+--- a/libctf/configure.ac
++++ b/libctf/configure.ac
+@@ -290,6 +290,9 @@ fi
+ AC_SUBST(VERSION_FLAGS)
+ AC_SUBST(VERSION_FLAGS_NOBFD)
+
++CTF_SOVER_EXT=$CTF_SOVER_EXT
++AC_SUBST(CTF_SOVER_EXT)
++
+ AC_CONFIG_FILES(Makefile)
+ AC_CONFIG_HEADERS(config.h)
+ AC_OUTPUT
+--- a/libctf/Makefile.am
++++ b/libctf/Makefile.am
+@@ -39,23 +39,23 @@ AM_CPPFLAGS = -D_GNU_SOURCE -I$(srcdir)
+ AM_CFLAGS = -std=gnu99 @ac_libctf_warn_cflags@ @warn@ @c_warn@ @WARN_PEDANTIC@ @WERROR@ $(ZLIBINC)
+
+ if INSTALL_LIBBFD
+-lib_LTLIBRARIES = libctf.la libctf-nobfd.la
++lib_LTLIBRARIES = libctf@CTF_SOVER_EXT@.la libctf-nobfd@CTF_SOVER_EXT@.la
+ include_HEADERS = $(INCDIR)/ctf.h $(INCDIR)/ctf-api.h
+ else
+ include_HEADERS =
+-noinst_LTLIBRARIES = libctf.la libctf-nobfd.la
++noinst_LTLIBRARIES = libctf@CTF_SOVER_EXT@.la libctf-nobfd@CTF_SOVER_EXT@.la
+ endif
+
+ libctf_nobfd_la_LIBADD = @CTF_LIBADD@ $(ZLIB)
+ libctf_ldflags_nover = -version-info 0:0:0 @SHARED_LDFLAGS@
+ libctf_nobfd_la_LDFLAGS = $(libctf_ldflags_nover) @VERSION_FLAGS_NOBFD@
+ libctf_nobfd_la_CPPFLAGS = $(AM_CPPFLAGS) -DNOBFD=1
+-libctf_nobfd_la_SOURCES = ctf-archive.c ctf-dump.c ctf-create.c ctf-decl.c ctf-error.c \
++COMMON_LIB_SOURCES = ctf-archive.c ctf-dump.c ctf-create.c ctf-decl.c ctf-error.c \
+ ctf-hash.c ctf-labels.c ctf-dedup.c ctf-link.c ctf-lookup.c \
+ ctf-open.c ctf-serialize.c ctf-sha1.c ctf-string.c ctf-subr.c \
+ ctf-types.c ctf-util.c
+ if NEED_CTF_QSORT_R
+-libctf_nobfd_la_SOURCES += ctf-qsort_r.c
++COMMON_LIB_SOURCES += ctf-qsort_r.c
+ endif
+
+ # @CTF_LIBADD@ appears here twice: once, to force libiberty to get searched before
+@@ -67,6 +67,16 @@ libctf_la_CPPFLAGS = $(AM_CPPFLAGS) -DNO
+ libctf_la_LDFLAGS = $(libctf_ldflags_nover) @VERSION_FLAGS@
+ libctf_la_SOURCES = $(libctf_nobfd_la_SOURCES) ctf-open-bfd.c
+
++libctf_nobfd@CTF_SOVER_EXT@_la_LIBADD = @CTF_LIBADD@ $(LIBINTL) $(ZLIB)
++libctf_nobfd@CTF_SOVER_EXT@_la_LDFLAGS = -version-info 0:0:0 @SHARED_LDFLAGS@ @VERSION_FLAGS@
++libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS = $(AM_CPPFLAGS) -DNOBFD=1
++libctf_nobfd@CTF_SOVER_EXT@_la_SOURCES = $(COMMON_LIB_SOURCES)
++
++libctf@CTF_SOVER_EXT@_la_LIBADD = @CTF_LIBADD@ ../bfd/libbfd.la $(libctf_nobfd_la_LIBADD)
++libctf@CTF_SOVER_EXT@_la_CPPFLAGS = $(AM_CPPFLAGS) -DNOBFD=0
++libctf@CTF_SOVER_EXT@_la_LDFLAGS = $(libctf_nobfd_la_LDFLAGS)
++libctf@CTF_SOVER_EXT@_la_SOURCES = $(COMMON_LIB_SOURCES) ctf-open-bfd.c
++
+ # Setup the testing framework, if you have one
+ EXPECT = expect
+ RUNTEST = runtest
+--- a/libctf/Makefile.in
++++ b/libctf/Makefile.in
+@@ -188,58 +188,82 @@ am__installdirs = "$(DESTDIR)$(libdir)"
+ "$(DESTDIR)$(includedir)"
+ LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES)
+ am__DEPENDENCIES_1 =
+-libctf_nobfd_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+-am__libctf_nobfd_la_SOURCES_DIST = ctf-archive.c ctf-dump.c \
+- ctf-create.c ctf-decl.c ctf-error.c ctf-hash.c ctf-labels.c \
+- ctf-dedup.c ctf-link.c ctf-lookup.c ctf-open.c ctf-serialize.c \
+- ctf-sha1.c ctf-string.c ctf-subr.c ctf-types.c ctf-util.c \
+- ctf-qsort_r.c
+-@NEED_CTF_QSORT_R_TRUE@am__objects_1 = libctf_nobfd_la-ctf-qsort_r.lo
+-am_libctf_nobfd_la_OBJECTS = libctf_nobfd_la-ctf-archive.lo \
+- libctf_nobfd_la-ctf-dump.lo libctf_nobfd_la-ctf-create.lo \
+- libctf_nobfd_la-ctf-decl.lo libctf_nobfd_la-ctf-error.lo \
+- libctf_nobfd_la-ctf-hash.lo libctf_nobfd_la-ctf-labels.lo \
+- libctf_nobfd_la-ctf-dedup.lo libctf_nobfd_la-ctf-link.lo \
+- libctf_nobfd_la-ctf-lookup.lo libctf_nobfd_la-ctf-open.lo \
+- libctf_nobfd_la-ctf-serialize.lo libctf_nobfd_la-ctf-sha1.lo \
+- libctf_nobfd_la-ctf-string.lo libctf_nobfd_la-ctf-subr.lo \
+- libctf_nobfd_la-ctf-types.lo libctf_nobfd_la-ctf-util.lo \
+- $(am__objects_1)
+-libctf_nobfd_la_OBJECTS = $(am_libctf_nobfd_la_OBJECTS)
++libctf_nobfd@CTF_SOVER_EXT@_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
++ $(am__DEPENDENCIES_1)
++am__libctf_nobfd@CTF_SOVER_EXT@_la_SOURCES_DIST = ctf-archive.c \
++ ctf-dump.c ctf-create.c ctf-decl.c ctf-error.c ctf-hash.c \
++ ctf-labels.c ctf-dedup.c ctf-link.c ctf-lookup.c ctf-open.c \
++ ctf-serialize.c ctf-sha1.c ctf-string.c ctf-subr.c ctf-types.c \
++ ctf-util.c ctf-qsort_r.c
++@NEED_CTF_QSORT_R_TRUE@am__objects_1 = libctf_nobfd@CTF_SOVER_EXT@_la-ctf-qsort_r.lo
++am__objects_2 = libctf_nobfd@CTF_SOVER_EXT@_la-ctf-archive.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dump.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-create.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-decl.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-error.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-hash.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-labels.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dedup.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-link.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-lookup.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-open.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-serialize.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-sha1.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-string.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-subr.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-types.lo \
++ libctf_nobfd@CTF_SOVER_EXT@_la-ctf-util.lo $(am__objects_1)
++am_libctf_nobfd@CTF_SOVER_EXT@_la_OBJECTS = $(am__objects_2)
++libctf_nobfd@CTF_SOVER_EXT@_la_OBJECTS = \
++ $(am_libctf_nobfd@CTF_SOVER_EXT@_la_OBJECTS)
+ AM_V_lt = $(am__v_lt_@AM_V@)
+ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
+ am__v_lt_0 = --silent
+ am__v_lt_1 =
+-libctf_nobfd_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
++libctf_nobfd@CTF_SOVER_EXT@_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
+- $(AM_CFLAGS) $(CFLAGS) $(libctf_nobfd_la_LDFLAGS) $(LDFLAGS) \
+- -o $@
+-@INSTALL_LIBBFD_FALSE@am_libctf_nobfd_la_rpath =
+-@INSTALL_LIBBFD_TRUE@am_libctf_nobfd_la_rpath = -rpath $(libdir)
++ $(AM_CFLAGS) $(CFLAGS) \
++ $(libctf_nobfd@CTF_SOVER_EXT@_la_LDFLAGS) $(LDFLAGS) -o $@
++@INSTALL_LIBBFD_FALSE@am_libctf_nobfd@CTF_SOVER_EXT@_la_rpath =
++@INSTALL_LIBBFD_TRUE@am_libctf_nobfd@CTF_SOVER_EXT@_la_rpath = -rpath \
++@INSTALL_LIBBFD_TRUE@ $(libdir)
+ am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1)
+-libctf_la_DEPENDENCIES = ../bfd/libbfd.la $(am__DEPENDENCIES_2)
+-am__libctf_la_SOURCES_DIST = ctf-archive.c ctf-dump.c ctf-create.c \
+- ctf-decl.c ctf-error.c ctf-hash.c ctf-labels.c ctf-dedup.c \
+- ctf-link.c ctf-lookup.c ctf-open.c ctf-serialize.c ctf-sha1.c \
+- ctf-string.c ctf-subr.c ctf-types.c ctf-util.c ctf-qsort_r.c \
+- ctf-open-bfd.c
+-@NEED_CTF_QSORT_R_TRUE@am__objects_2 = libctf_la-ctf-qsort_r.lo
+-am__objects_3 = libctf_la-ctf-archive.lo libctf_la-ctf-dump.lo \
+- libctf_la-ctf-create.lo libctf_la-ctf-decl.lo \
+- libctf_la-ctf-error.lo libctf_la-ctf-hash.lo \
+- libctf_la-ctf-labels.lo libctf_la-ctf-dedup.lo \
+- libctf_la-ctf-link.lo libctf_la-ctf-lookup.lo \
+- libctf_la-ctf-open.lo libctf_la-ctf-serialize.lo \
+- libctf_la-ctf-sha1.lo libctf_la-ctf-string.lo \
+- libctf_la-ctf-subr.lo libctf_la-ctf-types.lo \
+- libctf_la-ctf-util.lo $(am__objects_2)
+-am_libctf_la_OBJECTS = $(am__objects_3) libctf_la-ctf-open-bfd.lo
+-libctf_la_OBJECTS = $(am_libctf_la_OBJECTS)
+-libctf_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
+- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+- $(libctf_la_LDFLAGS) $(LDFLAGS) -o $@
+-@INSTALL_LIBBFD_FALSE@am_libctf_la_rpath =
+-@INSTALL_LIBBFD_TRUE@am_libctf_la_rpath = -rpath $(libdir)
++libctf@CTF_SOVER_EXT@_la_DEPENDENCIES = ../bfd/libbfd.la \
++ $(am__DEPENDENCIES_2)
++am__libctf@CTF_SOVER_EXT@_la_SOURCES_DIST = ctf-archive.c ctf-dump.c \
++ ctf-create.c ctf-decl.c ctf-error.c ctf-hash.c ctf-labels.c \
++ ctf-dedup.c ctf-link.c ctf-lookup.c ctf-open.c ctf-serialize.c \
++ ctf-sha1.c ctf-string.c ctf-subr.c ctf-types.c ctf-util.c \
++ ctf-qsort_r.c ctf-open-bfd.c
++@NEED_CTF_QSORT_R_TRUE@am__objects_3 = libctf@CTF_SOVER_EXT@_la-ctf-qsort_r.lo
++am__objects_4 = libctf@CTF_SOVER_EXT@_la-ctf-archive.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-dump.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-create.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-decl.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-error.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-hash.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-labels.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-dedup.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-link.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-lookup.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-open.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-serialize.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-sha1.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-string.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-subr.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-types.lo \
++ libctf@CTF_SOVER_EXT@_la-ctf-util.lo $(am__objects_3)
++am_libctf@CTF_SOVER_EXT@_la_OBJECTS = $(am__objects_4) \
++ libctf@CTF_SOVER_EXT@_la-ctf-open-bfd.lo
++libctf@CTF_SOVER_EXT@_la_OBJECTS = \
++ $(am_libctf@CTF_SOVER_EXT@_la_OBJECTS)
++libctf@CTF_SOVER_EXT@_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
++ $(AM_CFLAGS) $(CFLAGS) $(libctf@CTF_SOVER_EXT@_la_LDFLAGS) \
++ $(LDFLAGS) -o $@
++@INSTALL_LIBBFD_FALSE@am_libctf@CTF_SOVER_EXT@_la_rpath =
++@INSTALL_LIBBFD_TRUE@am_libctf@CTF_SOVER_EXT@_la_rpath = -rpath \
++@INSTALL_LIBBFD_TRUE@ $(libdir)
+ AM_V_P = $(am__v_P_@AM_V@)
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+ am__v_P_0 = false
+@@ -274,9 +298,10 @@ AM_V_CCLD = $(am__v_CCLD_@AM_V@)
+ am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
+ am__v_CCLD_0 = @echo " CCLD " $@;
+ am__v_CCLD_1 =
+-SOURCES = $(libctf_nobfd_la_SOURCES) $(libctf_la_SOURCES)
+-DIST_SOURCES = $(am__libctf_nobfd_la_SOURCES_DIST) \
+- $(am__libctf_la_SOURCES_DIST)
++SOURCES = $(libctf_nobfd@CTF_SOVER_EXT@_la_SOURCES) \
++ $(libctf@CTF_SOVER_EXT@_la_SOURCES)
++DIST_SOURCES = $(am__libctf_nobfd@CTF_SOVER_EXT@_la_SOURCES_DIST) \
++ $(am__libctf@CTF_SOVER_EXT@_la_SOURCES_DIST)
+ AM_V_DVIPS = $(am__v_DVIPS_@AM_V@)
+ am__v_DVIPS_ = $(am__v_DVIPS_@AM_DEFAULT_V@)
+ am__v_DVIPS_0 = @echo " DVIPS " $@;
+@@ -389,6 +414,7 @@ CFLAGS = @CFLAGS@
+ CPP = @CPP@
+ CPPFLAGS = @CPPFLAGS@
+ CTF_LIBADD = @CTF_LIBADD@
++CTF_SOVER_EXT = @CTF_SOVER_EXT@
+ CYGPATH_W = @CYGPATH_W@
+ DATADIRNAME = @DATADIRNAME@
+ DEFS = @DEFS@
+@@ -537,17 +563,17 @@ BFDDIR = $(BASEDIR)/bfd
+ INCDIR = $(srcdir)/../include
+ AM_CPPFLAGS = -D_GNU_SOURCE -I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../bfd -I../bfd @INCINTL@
+ AM_CFLAGS = -std=gnu99 @ac_libctf_warn_cflags@ @warn@ @c_warn@ @WARN_PEDANTIC@ @WERROR@ $(ZLIBINC)
+-@INSTALL_LIBBFD_TRUE@lib_LTLIBRARIES = libctf.la libctf-nobfd.la
++@INSTALL_LIBBFD_TRUE@lib_LTLIBRARIES = libctf@CTF_SOVER_EXT@.la libctf-nobfd@CTF_SOVER_EXT@.la
+ @INSTALL_LIBBFD_FALSE@include_HEADERS =
+ @INSTALL_LIBBFD_TRUE@include_HEADERS = $(INCDIR)/ctf.h $(INCDIR)/ctf-api.h
+-@INSTALL_LIBBFD_FALSE@noinst_LTLIBRARIES = libctf.la libctf-nobfd.la
++@INSTALL_LIBBFD_FALSE@noinst_LTLIBRARIES = libctf@CTF_SOVER_EXT@.la libctf-nobfd@CTF_SOVER_EXT@.la
+ libctf_nobfd_la_LIBADD = @CTF_LIBADD@ $(ZLIB)
+ libctf_ldflags_nover = -version-info 0:0:0 @SHARED_LDFLAGS@
+ libctf_nobfd_la_LDFLAGS = $(libctf_ldflags_nover) @VERSION_FLAGS_NOBFD@
+ libctf_nobfd_la_CPPFLAGS = $(AM_CPPFLAGS) -DNOBFD=1
+-libctf_nobfd_la_SOURCES = ctf-archive.c ctf-dump.c ctf-create.c \
+- ctf-decl.c ctf-error.c ctf-hash.c ctf-labels.c ctf-dedup.c \
+- ctf-link.c ctf-lookup.c ctf-open.c ctf-serialize.c ctf-sha1.c \
++COMMON_LIB_SOURCES = ctf-archive.c ctf-dump.c ctf-create.c ctf-decl.c \
++ ctf-error.c ctf-hash.c ctf-labels.c ctf-dedup.c ctf-link.c \
++ ctf-lookup.c ctf-open.c ctf-serialize.c ctf-sha1.c \
+ ctf-string.c ctf-subr.c ctf-types.c ctf-util.c $(am__append_1)
+
+ # @CTF_LIBADD@ appears here twice: once, to force libiberty to get searched before
+@@ -558,6 +584,14 @@ libctf_la_LIBADD = @CTF_LIBADD@ ../bfd/l
+ libctf_la_CPPFLAGS = $(AM_CPPFLAGS) -DNOBFD=0
+ libctf_la_LDFLAGS = $(libctf_ldflags_nover) @VERSION_FLAGS@
+ libctf_la_SOURCES = $(libctf_nobfd_la_SOURCES) ctf-open-bfd.c
++libctf_nobfd@CTF_SOVER_EXT@_la_LIBADD = @CTF_LIBADD@ $(LIBINTL) $(ZLIB)
++libctf_nobfd@CTF_SOVER_EXT@_la_LDFLAGS = -version-info 0:0:0 @SHARED_LDFLAGS@ @VERSION_FLAGS@
++libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS = $(AM_CPPFLAGS) -DNOBFD=1
++libctf_nobfd@CTF_SOVER_EXT@_la_SOURCES = $(COMMON_LIB_SOURCES)
++libctf@CTF_SOVER_EXT@_la_LIBADD = @CTF_LIBADD@ ../bfd/libbfd.la $(libctf_nobfd_la_LIBADD)
++libctf@CTF_SOVER_EXT@_la_CPPFLAGS = $(AM_CPPFLAGS) -DNOBFD=0
++libctf@CTF_SOVER_EXT@_la_LDFLAGS = $(libctf_nobfd_la_LDFLAGS)
++libctf@CTF_SOVER_EXT@_la_SOURCES = $(COMMON_LIB_SOURCES) ctf-open-bfd.c
+ RUNTEST = runtest
+ RUNTESTFLAGS =
+ @TCL_TRY_TRUE@CC_FOR_TARGET = ` \
+@@ -682,11 +716,11 @@ clean-noinstLTLIBRARIES:
+ rm -f $${locs}; \
+ }
+
+-libctf-nobfd.la: $(libctf_nobfd_la_OBJECTS) $(libctf_nobfd_la_DEPENDENCIES) $(EXTRA_libctf_nobfd_la_DEPENDENCIES)
+- $(AM_V_CCLD)$(libctf_nobfd_la_LINK) $(am_libctf_nobfd_la_rpath) $(libctf_nobfd_la_OBJECTS) $(libctf_nobfd_la_LIBADD) $(LIBS)
++libctf-nobfd@CTF_SOVER_EXT@.la: $(libctf_nobfd@CTF_SOVER_EXT@_la_OBJECTS) $(libctf_nobfd@CTF_SOVER_EXT@_la_DEPENDENCIES) $(EXTRA_libctf_nobfd@CTF_SOVER_EXT@_la_DEPENDENCIES)
++ $(AM_V_CCLD)$(libctf_nobfd@CTF_SOVER_EXT@_la_LINK) $(am_libctf_nobfd@CTF_SOVER_EXT@_la_rpath) $(libctf_nobfd@CTF_SOVER_EXT@_la_OBJECTS) $(libctf_nobfd@CTF_SOVER_EXT@_la_LIBADD) $(LIBS)
+
+-libctf.la: $(libctf_la_OBJECTS) $(libctf_la_DEPENDENCIES) $(EXTRA_libctf_la_DEPENDENCIES)
+- $(AM_V_CCLD)$(libctf_la_LINK) $(am_libctf_la_rpath) $(libctf_la_OBJECTS) $(libctf_la_LIBADD) $(LIBS)
++libctf@CTF_SOVER_EXT@.la: $(libctf@CTF_SOVER_EXT@_la_OBJECTS) $(libctf@CTF_SOVER_EXT@_la_DEPENDENCIES) $(EXTRA_libctf@CTF_SOVER_EXT@_la_DEPENDENCIES)
++ $(AM_V_CCLD)$(libctf@CTF_SOVER_EXT@_la_LINK) $(am_libctf@CTF_SOVER_EXT@_la_rpath) $(libctf@CTF_SOVER_EXT@_la_OBJECTS) $(libctf@CTF_SOVER_EXT@_la_LIBADD) $(LIBS)
+
+ mostlyclean-compile:
+ -rm -f *.$(OBJEXT)
+@@ -694,43 +728,43 @@ mostlyclean-compile:
+ distclean-compile:
+ -rm -f *.tab.c
+
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-archive.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-create.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-decl.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-dedup.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-dump.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-error.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-hash.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-labels.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-link.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-lookup.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-open-bfd.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-open.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-qsort_r.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-serialize.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-sha1.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-string.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-subr.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-types.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_la-ctf-util.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-archive.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-create.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-decl.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-dedup.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-dump.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-error.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-hash.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-labels.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-link.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-lookup.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-open.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-qsort_r.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-serialize.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-sha1.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-string.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-subr.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-types.Plo@am__quote@
+-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd_la-ctf-util.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-archive.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-create.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-decl.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-dedup.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-dump.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-error.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-hash.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-labels.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-link.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-lookup.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-open-bfd.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-open.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-qsort_r.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-serialize.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-sha1.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-string.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-subr.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-types.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-util.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-archive.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-create.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-decl.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dedup.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dump.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-error.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-hash.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-labels.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-link.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-lookup.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-open.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-qsort_r.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-serialize.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-sha1.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-string.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-subr.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-types.Plo@am__quote@
++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-util.Plo@am__quote@
+
+ .c.o:
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+@@ -753,264 +787,264 @@ distclean-compile:
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
+
+-libctf_nobfd_la-ctf-archive.lo: ctf-archive.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-archive.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-archive.Tpo -c -o libctf_nobfd_la-ctf-archive.lo `test -f 'ctf-archive.c' || echo '$(srcdir)/'`ctf-archive.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-archive.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-archive.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-archive.c' object='libctf_nobfd_la-ctf-archive.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-archive.lo: ctf-archive.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-archive.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-archive.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-archive.lo `test -f 'ctf-archive.c' || echo '$(srcdir)/'`ctf-archive.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-archive.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-archive.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-archive.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-archive.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-archive.lo `test -f 'ctf-archive.c' || echo '$(srcdir)/'`ctf-archive.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-archive.lo `test -f 'ctf-archive.c' || echo '$(srcdir)/'`ctf-archive.c
+
+-libctf_nobfd_la-ctf-dump.lo: ctf-dump.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-dump.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-dump.Tpo -c -o libctf_nobfd_la-ctf-dump.lo `test -f 'ctf-dump.c' || echo '$(srcdir)/'`ctf-dump.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-dump.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-dump.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-dump.c' object='libctf_nobfd_la-ctf-dump.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dump.lo: ctf-dump.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dump.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dump.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dump.lo `test -f 'ctf-dump.c' || echo '$(srcdir)/'`ctf-dump.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dump.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dump.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-dump.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dump.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-dump.lo `test -f 'ctf-dump.c' || echo '$(srcdir)/'`ctf-dump.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dump.lo `test -f 'ctf-dump.c' || echo '$(srcdir)/'`ctf-dump.c
+
+-libctf_nobfd_la-ctf-create.lo: ctf-create.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-create.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-create.Tpo -c -o libctf_nobfd_la-ctf-create.lo `test -f 'ctf-create.c' || echo '$(srcdir)/'`ctf-create.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-create.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-create.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-create.c' object='libctf_nobfd_la-ctf-create.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-create.lo: ctf-create.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-create.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-create.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-create.lo `test -f 'ctf-create.c' || echo '$(srcdir)/'`ctf-create.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-create.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-create.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-create.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-create.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-create.lo `test -f 'ctf-create.c' || echo '$(srcdir)/'`ctf-create.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-create.lo `test -f 'ctf-create.c' || echo '$(srcdir)/'`ctf-create.c
+
+-libctf_nobfd_la-ctf-decl.lo: ctf-decl.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-decl.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-decl.Tpo -c -o libctf_nobfd_la-ctf-decl.lo `test -f 'ctf-decl.c' || echo '$(srcdir)/'`ctf-decl.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-decl.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-decl.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-decl.c' object='libctf_nobfd_la-ctf-decl.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-decl.lo: ctf-decl.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-decl.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-decl.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-decl.lo `test -f 'ctf-decl.c' || echo '$(srcdir)/'`ctf-decl.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-decl.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-decl.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-decl.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-decl.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-decl.lo `test -f 'ctf-decl.c' || echo '$(srcdir)/'`ctf-decl.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-decl.lo `test -f 'ctf-decl.c' || echo '$(srcdir)/'`ctf-decl.c
+
+-libctf_nobfd_la-ctf-error.lo: ctf-error.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-error.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-error.Tpo -c -o libctf_nobfd_la-ctf-error.lo `test -f 'ctf-error.c' || echo '$(srcdir)/'`ctf-error.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-error.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-error.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-error.c' object='libctf_nobfd_la-ctf-error.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-error.lo: ctf-error.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-error.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-error.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-error.lo `test -f 'ctf-error.c' || echo '$(srcdir)/'`ctf-error.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-error.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-error.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-error.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-error.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-error.lo `test -f 'ctf-error.c' || echo '$(srcdir)/'`ctf-error.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-error.lo `test -f 'ctf-error.c' || echo '$(srcdir)/'`ctf-error.c
+
+-libctf_nobfd_la-ctf-hash.lo: ctf-hash.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-hash.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-hash.Tpo -c -o libctf_nobfd_la-ctf-hash.lo `test -f 'ctf-hash.c' || echo '$(srcdir)/'`ctf-hash.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-hash.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-hash.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-hash.c' object='libctf_nobfd_la-ctf-hash.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-hash.lo: ctf-hash.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-hash.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-hash.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-hash.lo `test -f 'ctf-hash.c' || echo '$(srcdir)/'`ctf-hash.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-hash.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-hash.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-hash.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-hash.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-hash.lo `test -f 'ctf-hash.c' || echo '$(srcdir)/'`ctf-hash.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-hash.lo `test -f 'ctf-hash.c' || echo '$(srcdir)/'`ctf-hash.c
+
+-libctf_nobfd_la-ctf-labels.lo: ctf-labels.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-labels.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-labels.Tpo -c -o libctf_nobfd_la-ctf-labels.lo `test -f 'ctf-labels.c' || echo '$(srcdir)/'`ctf-labels.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-labels.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-labels.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-labels.c' object='libctf_nobfd_la-ctf-labels.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-labels.lo: ctf-labels.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-labels.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-labels.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-labels.lo `test -f 'ctf-labels.c' || echo '$(srcdir)/'`ctf-labels.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-labels.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-labels.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-labels.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-labels.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-labels.lo `test -f 'ctf-labels.c' || echo '$(srcdir)/'`ctf-labels.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-labels.lo `test -f 'ctf-labels.c' || echo '$(srcdir)/'`ctf-labels.c
+
+-libctf_nobfd_la-ctf-dedup.lo: ctf-dedup.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-dedup.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-dedup.Tpo -c -o libctf_nobfd_la-ctf-dedup.lo `test -f 'ctf-dedup.c' || echo '$(srcdir)/'`ctf-dedup.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-dedup.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-dedup.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-dedup.c' object='libctf_nobfd_la-ctf-dedup.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dedup.lo: ctf-dedup.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dedup.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dedup.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dedup.lo `test -f 'ctf-dedup.c' || echo '$(srcdir)/'`ctf-dedup.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dedup.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dedup.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-dedup.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dedup.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-dedup.lo `test -f 'ctf-dedup.c' || echo '$(srcdir)/'`ctf-dedup.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-dedup.lo `test -f 'ctf-dedup.c' || echo '$(srcdir)/'`ctf-dedup.c
+
+-libctf_nobfd_la-ctf-link.lo: ctf-link.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-link.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-link.Tpo -c -o libctf_nobfd_la-ctf-link.lo `test -f 'ctf-link.c' || echo '$(srcdir)/'`ctf-link.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-link.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-link.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-link.c' object='libctf_nobfd_la-ctf-link.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-link.lo: ctf-link.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-link.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-link.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-link.lo `test -f 'ctf-link.c' || echo '$(srcdir)/'`ctf-link.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-link.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-link.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-link.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-link.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-link.lo `test -f 'ctf-link.c' || echo '$(srcdir)/'`ctf-link.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-link.lo `test -f 'ctf-link.c' || echo '$(srcdir)/'`ctf-link.c
+
+-libctf_nobfd_la-ctf-lookup.lo: ctf-lookup.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-lookup.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-lookup.Tpo -c -o libctf_nobfd_la-ctf-lookup.lo `test -f 'ctf-lookup.c' || echo '$(srcdir)/'`ctf-lookup.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-lookup.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-lookup.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-lookup.c' object='libctf_nobfd_la-ctf-lookup.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-lookup.lo: ctf-lookup.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-lookup.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-lookup.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-lookup.lo `test -f 'ctf-lookup.c' || echo '$(srcdir)/'`ctf-lookup.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-lookup.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-lookup.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-lookup.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-lookup.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-lookup.lo `test -f 'ctf-lookup.c' || echo '$(srcdir)/'`ctf-lookup.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-lookup.lo `test -f 'ctf-lookup.c' || echo '$(srcdir)/'`ctf-lookup.c
+
+-libctf_nobfd_la-ctf-open.lo: ctf-open.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-open.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-open.Tpo -c -o libctf_nobfd_la-ctf-open.lo `test -f 'ctf-open.c' || echo '$(srcdir)/'`ctf-open.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-open.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-open.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-open.c' object='libctf_nobfd_la-ctf-open.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-open.lo: ctf-open.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-open.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-open.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-open.lo `test -f 'ctf-open.c' || echo '$(srcdir)/'`ctf-open.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-open.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-open.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-open.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-open.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-open.lo `test -f 'ctf-open.c' || echo '$(srcdir)/'`ctf-open.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-open.lo `test -f 'ctf-open.c' || echo '$(srcdir)/'`ctf-open.c
+
+-libctf_nobfd_la-ctf-serialize.lo: ctf-serialize.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-serialize.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-serialize.Tpo -c -o libctf_nobfd_la-ctf-serialize.lo `test -f 'ctf-serialize.c' || echo '$(srcdir)/'`ctf-serialize.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-serialize.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-serialize.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-serialize.c' object='libctf_nobfd_la-ctf-serialize.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-serialize.lo: ctf-serialize.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-serialize.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-serialize.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-serialize.lo `test -f 'ctf-serialize.c' || echo '$(srcdir)/'`ctf-serialize.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-serialize.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-serialize.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-serialize.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-serialize.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-serialize.lo `test -f 'ctf-serialize.c' || echo '$(srcdir)/'`ctf-serialize.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-serialize.lo `test -f 'ctf-serialize.c' || echo '$(srcdir)/'`ctf-serialize.c
+
+-libctf_nobfd_la-ctf-sha1.lo: ctf-sha1.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-sha1.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-sha1.Tpo -c -o libctf_nobfd_la-ctf-sha1.lo `test -f 'ctf-sha1.c' || echo '$(srcdir)/'`ctf-sha1.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-sha1.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-sha1.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-sha1.c' object='libctf_nobfd_la-ctf-sha1.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-sha1.lo: ctf-sha1.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-sha1.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-sha1.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-sha1.lo `test -f 'ctf-sha1.c' || echo '$(srcdir)/'`ctf-sha1.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-sha1.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-sha1.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-sha1.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-sha1.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-sha1.lo `test -f 'ctf-sha1.c' || echo '$(srcdir)/'`ctf-sha1.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-sha1.lo `test -f 'ctf-sha1.c' || echo '$(srcdir)/'`ctf-sha1.c
+
+-libctf_nobfd_la-ctf-string.lo: ctf-string.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-string.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-string.Tpo -c -o libctf_nobfd_la-ctf-string.lo `test -f 'ctf-string.c' || echo '$(srcdir)/'`ctf-string.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-string.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-string.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-string.c' object='libctf_nobfd_la-ctf-string.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-string.lo: ctf-string.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-string.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-string.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-string.lo `test -f 'ctf-string.c' || echo '$(srcdir)/'`ctf-string.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-string.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-string.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-string.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-string.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-string.lo `test -f 'ctf-string.c' || echo '$(srcdir)/'`ctf-string.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-string.lo `test -f 'ctf-string.c' || echo '$(srcdir)/'`ctf-string.c
+
+-libctf_nobfd_la-ctf-subr.lo: ctf-subr.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-subr.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-subr.Tpo -c -o libctf_nobfd_la-ctf-subr.lo `test -f 'ctf-subr.c' || echo '$(srcdir)/'`ctf-subr.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-subr.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-subr.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-subr.c' object='libctf_nobfd_la-ctf-subr.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-subr.lo: ctf-subr.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-subr.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-subr.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-subr.lo `test -f 'ctf-subr.c' || echo '$(srcdir)/'`ctf-subr.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-subr.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-subr.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-subr.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-subr.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-subr.lo `test -f 'ctf-subr.c' || echo '$(srcdir)/'`ctf-subr.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-subr.lo `test -f 'ctf-subr.c' || echo '$(srcdir)/'`ctf-subr.c
+
+-libctf_nobfd_la-ctf-types.lo: ctf-types.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-types.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-types.Tpo -c -o libctf_nobfd_la-ctf-types.lo `test -f 'ctf-types.c' || echo '$(srcdir)/'`ctf-types.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-types.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-types.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-types.c' object='libctf_nobfd_la-ctf-types.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-types.lo: ctf-types.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-types.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-types.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-types.lo `test -f 'ctf-types.c' || echo '$(srcdir)/'`ctf-types.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-types.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-types.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-types.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-types.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-types.lo `test -f 'ctf-types.c' || echo '$(srcdir)/'`ctf-types.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-types.lo `test -f 'ctf-types.c' || echo '$(srcdir)/'`ctf-types.c
+
+-libctf_nobfd_la-ctf-util.lo: ctf-util.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-util.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-util.Tpo -c -o libctf_nobfd_la-ctf-util.lo `test -f 'ctf-util.c' || echo '$(srcdir)/'`ctf-util.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-util.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-util.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-util.c' object='libctf_nobfd_la-ctf-util.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-util.lo: ctf-util.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-util.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-util.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-util.lo `test -f 'ctf-util.c' || echo '$(srcdir)/'`ctf-util.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-util.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-util.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-util.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-util.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-util.lo `test -f 'ctf-util.c' || echo '$(srcdir)/'`ctf-util.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-util.lo `test -f 'ctf-util.c' || echo '$(srcdir)/'`ctf-util.c
+
+-libctf_nobfd_la-ctf-qsort_r.lo: ctf-qsort_r.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd_la-ctf-qsort_r.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd_la-ctf-qsort_r.Tpo -c -o libctf_nobfd_la-ctf-qsort_r.lo `test -f 'ctf-qsort_r.c' || echo '$(srcdir)/'`ctf-qsort_r.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd_la-ctf-qsort_r.Tpo $(DEPDIR)/libctf_nobfd_la-ctf-qsort_r.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-qsort_r.c' object='libctf_nobfd_la-ctf-qsort_r.lo' libtool=yes @AMDEPBACKSLASH@
++libctf_nobfd@CTF_SOVER_EXT@_la-ctf-qsort_r.lo: ctf-qsort_r.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_nobfd@CTF_SOVER_EXT@_la-ctf-qsort_r.lo -MD -MP -MF $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-qsort_r.Tpo -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-qsort_r.lo `test -f 'ctf-qsort_r.c' || echo '$(srcdir)/'`ctf-qsort_r.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-qsort_r.Tpo $(DEPDIR)/libctf_nobfd@CTF_SOVER_EXT@_la-ctf-qsort_r.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-qsort_r.c' object='libctf_nobfd@CTF_SOVER_EXT@_la-ctf-qsort_r.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd_la-ctf-qsort_r.lo `test -f 'ctf-qsort_r.c' || echo '$(srcdir)/'`ctf-qsort_r.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_nobfd@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_nobfd@CTF_SOVER_EXT@_la-ctf-qsort_r.lo `test -f 'ctf-qsort_r.c' || echo '$(srcdir)/'`ctf-qsort_r.c
+
+-libctf_la-ctf-archive.lo: ctf-archive.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-archive.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-archive.Tpo -c -o libctf_la-ctf-archive.lo `test -f 'ctf-archive.c' || echo '$(srcdir)/'`ctf-archive.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-archive.Tpo $(DEPDIR)/libctf_la-ctf-archive.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-archive.c' object='libctf_la-ctf-archive.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-archive.lo: ctf-archive.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-archive.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-archive.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-archive.lo `test -f 'ctf-archive.c' || echo '$(srcdir)/'`ctf-archive.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-archive.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-archive.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-archive.c' object='libctf@CTF_SOVER_EXT@_la-ctf-archive.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-archive.lo `test -f 'ctf-archive.c' || echo '$(srcdir)/'`ctf-archive.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-archive.lo `test -f 'ctf-archive.c' || echo '$(srcdir)/'`ctf-archive.c
+
+-libctf_la-ctf-dump.lo: ctf-dump.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-dump.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-dump.Tpo -c -o libctf_la-ctf-dump.lo `test -f 'ctf-dump.c' || echo '$(srcdir)/'`ctf-dump.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-dump.Tpo $(DEPDIR)/libctf_la-ctf-dump.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-dump.c' object='libctf_la-ctf-dump.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-dump.lo: ctf-dump.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-dump.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-dump.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-dump.lo `test -f 'ctf-dump.c' || echo '$(srcdir)/'`ctf-dump.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-dump.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-dump.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-dump.c' object='libctf@CTF_SOVER_EXT@_la-ctf-dump.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-dump.lo `test -f 'ctf-dump.c' || echo '$(srcdir)/'`ctf-dump.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-dump.lo `test -f 'ctf-dump.c' || echo '$(srcdir)/'`ctf-dump.c
+
+-libctf_la-ctf-create.lo: ctf-create.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-create.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-create.Tpo -c -o libctf_la-ctf-create.lo `test -f 'ctf-create.c' || echo '$(srcdir)/'`ctf-create.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-create.Tpo $(DEPDIR)/libctf_la-ctf-create.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-create.c' object='libctf_la-ctf-create.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-create.lo: ctf-create.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-create.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-create.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-create.lo `test -f 'ctf-create.c' || echo '$(srcdir)/'`ctf-create.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-create.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-create.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-create.c' object='libctf@CTF_SOVER_EXT@_la-ctf-create.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-create.lo `test -f 'ctf-create.c' || echo '$(srcdir)/'`ctf-create.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-create.lo `test -f 'ctf-create.c' || echo '$(srcdir)/'`ctf-create.c
+
+-libctf_la-ctf-decl.lo: ctf-decl.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-decl.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-decl.Tpo -c -o libctf_la-ctf-decl.lo `test -f 'ctf-decl.c' || echo '$(srcdir)/'`ctf-decl.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-decl.Tpo $(DEPDIR)/libctf_la-ctf-decl.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-decl.c' object='libctf_la-ctf-decl.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-decl.lo: ctf-decl.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-decl.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-decl.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-decl.lo `test -f 'ctf-decl.c' || echo '$(srcdir)/'`ctf-decl.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-decl.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-decl.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-decl.c' object='libctf@CTF_SOVER_EXT@_la-ctf-decl.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-decl.lo `test -f 'ctf-decl.c' || echo '$(srcdir)/'`ctf-decl.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-decl.lo `test -f 'ctf-decl.c' || echo '$(srcdir)/'`ctf-decl.c
+
+-libctf_la-ctf-error.lo: ctf-error.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-error.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-error.Tpo -c -o libctf_la-ctf-error.lo `test -f 'ctf-error.c' || echo '$(srcdir)/'`ctf-error.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-error.Tpo $(DEPDIR)/libctf_la-ctf-error.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-error.c' object='libctf_la-ctf-error.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-error.lo: ctf-error.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-error.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-error.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-error.lo `test -f 'ctf-error.c' || echo '$(srcdir)/'`ctf-error.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-error.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-error.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-error.c' object='libctf@CTF_SOVER_EXT@_la-ctf-error.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-error.lo `test -f 'ctf-error.c' || echo '$(srcdir)/'`ctf-error.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-error.lo `test -f 'ctf-error.c' || echo '$(srcdir)/'`ctf-error.c
+
+-libctf_la-ctf-hash.lo: ctf-hash.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-hash.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-hash.Tpo -c -o libctf_la-ctf-hash.lo `test -f 'ctf-hash.c' || echo '$(srcdir)/'`ctf-hash.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-hash.Tpo $(DEPDIR)/libctf_la-ctf-hash.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-hash.c' object='libctf_la-ctf-hash.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-hash.lo: ctf-hash.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-hash.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-hash.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-hash.lo `test -f 'ctf-hash.c' || echo '$(srcdir)/'`ctf-hash.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-hash.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-hash.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-hash.c' object='libctf@CTF_SOVER_EXT@_la-ctf-hash.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-hash.lo `test -f 'ctf-hash.c' || echo '$(srcdir)/'`ctf-hash.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-hash.lo `test -f 'ctf-hash.c' || echo '$(srcdir)/'`ctf-hash.c
+
+-libctf_la-ctf-labels.lo: ctf-labels.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-labels.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-labels.Tpo -c -o libctf_la-ctf-labels.lo `test -f 'ctf-labels.c' || echo '$(srcdir)/'`ctf-labels.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-labels.Tpo $(DEPDIR)/libctf_la-ctf-labels.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-labels.c' object='libctf_la-ctf-labels.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-labels.lo: ctf-labels.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-labels.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-labels.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-labels.lo `test -f 'ctf-labels.c' || echo '$(srcdir)/'`ctf-labels.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-labels.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-labels.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-labels.c' object='libctf@CTF_SOVER_EXT@_la-ctf-labels.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-labels.lo `test -f 'ctf-labels.c' || echo '$(srcdir)/'`ctf-labels.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-labels.lo `test -f 'ctf-labels.c' || echo '$(srcdir)/'`ctf-labels.c
+
+-libctf_la-ctf-dedup.lo: ctf-dedup.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-dedup.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-dedup.Tpo -c -o libctf_la-ctf-dedup.lo `test -f 'ctf-dedup.c' || echo '$(srcdir)/'`ctf-dedup.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-dedup.Tpo $(DEPDIR)/libctf_la-ctf-dedup.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-dedup.c' object='libctf_la-ctf-dedup.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-dedup.lo: ctf-dedup.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-dedup.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-dedup.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-dedup.lo `test -f 'ctf-dedup.c' || echo '$(srcdir)/'`ctf-dedup.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-dedup.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-dedup.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-dedup.c' object='libctf@CTF_SOVER_EXT@_la-ctf-dedup.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-dedup.lo `test -f 'ctf-dedup.c' || echo '$(srcdir)/'`ctf-dedup.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-dedup.lo `test -f 'ctf-dedup.c' || echo '$(srcdir)/'`ctf-dedup.c
+
+-libctf_la-ctf-link.lo: ctf-link.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-link.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-link.Tpo -c -o libctf_la-ctf-link.lo `test -f 'ctf-link.c' || echo '$(srcdir)/'`ctf-link.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-link.Tpo $(DEPDIR)/libctf_la-ctf-link.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-link.c' object='libctf_la-ctf-link.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-link.lo: ctf-link.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-link.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-link.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-link.lo `test -f 'ctf-link.c' || echo '$(srcdir)/'`ctf-link.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-link.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-link.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-link.c' object='libctf@CTF_SOVER_EXT@_la-ctf-link.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-link.lo `test -f 'ctf-link.c' || echo '$(srcdir)/'`ctf-link.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-link.lo `test -f 'ctf-link.c' || echo '$(srcdir)/'`ctf-link.c
+
+-libctf_la-ctf-lookup.lo: ctf-lookup.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-lookup.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-lookup.Tpo -c -o libctf_la-ctf-lookup.lo `test -f 'ctf-lookup.c' || echo '$(srcdir)/'`ctf-lookup.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-lookup.Tpo $(DEPDIR)/libctf_la-ctf-lookup.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-lookup.c' object='libctf_la-ctf-lookup.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-lookup.lo: ctf-lookup.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-lookup.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-lookup.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-lookup.lo `test -f 'ctf-lookup.c' || echo '$(srcdir)/'`ctf-lookup.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-lookup.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-lookup.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-lookup.c' object='libctf@CTF_SOVER_EXT@_la-ctf-lookup.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-lookup.lo `test -f 'ctf-lookup.c' || echo '$(srcdir)/'`ctf-lookup.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-lookup.lo `test -f 'ctf-lookup.c' || echo '$(srcdir)/'`ctf-lookup.c
+
+-libctf_la-ctf-open.lo: ctf-open.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-open.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-open.Tpo -c -o libctf_la-ctf-open.lo `test -f 'ctf-open.c' || echo '$(srcdir)/'`ctf-open.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-open.Tpo $(DEPDIR)/libctf_la-ctf-open.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-open.c' object='libctf_la-ctf-open.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-open.lo: ctf-open.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-open.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-open.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-open.lo `test -f 'ctf-open.c' || echo '$(srcdir)/'`ctf-open.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-open.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-open.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-open.c' object='libctf@CTF_SOVER_EXT@_la-ctf-open.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-open.lo `test -f 'ctf-open.c' || echo '$(srcdir)/'`ctf-open.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-open.lo `test -f 'ctf-open.c' || echo '$(srcdir)/'`ctf-open.c
+
+-libctf_la-ctf-serialize.lo: ctf-serialize.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-serialize.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-serialize.Tpo -c -o libctf_la-ctf-serialize.lo `test -f 'ctf-serialize.c' || echo '$(srcdir)/'`ctf-serialize.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-serialize.Tpo $(DEPDIR)/libctf_la-ctf-serialize.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-serialize.c' object='libctf_la-ctf-serialize.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-serialize.lo: ctf-serialize.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-serialize.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-serialize.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-serialize.lo `test -f 'ctf-serialize.c' || echo '$(srcdir)/'`ctf-serialize.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-serialize.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-serialize.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-serialize.c' object='libctf@CTF_SOVER_EXT@_la-ctf-serialize.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-serialize.lo `test -f 'ctf-serialize.c' || echo '$(srcdir)/'`ctf-serialize.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-serialize.lo `test -f 'ctf-serialize.c' || echo '$(srcdir)/'`ctf-serialize.c
+
+-libctf_la-ctf-sha1.lo: ctf-sha1.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-sha1.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-sha1.Tpo -c -o libctf_la-ctf-sha1.lo `test -f 'ctf-sha1.c' || echo '$(srcdir)/'`ctf-sha1.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-sha1.Tpo $(DEPDIR)/libctf_la-ctf-sha1.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-sha1.c' object='libctf_la-ctf-sha1.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-sha1.lo: ctf-sha1.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-sha1.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-sha1.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-sha1.lo `test -f 'ctf-sha1.c' || echo '$(srcdir)/'`ctf-sha1.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-sha1.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-sha1.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-sha1.c' object='libctf@CTF_SOVER_EXT@_la-ctf-sha1.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-sha1.lo `test -f 'ctf-sha1.c' || echo '$(srcdir)/'`ctf-sha1.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-sha1.lo `test -f 'ctf-sha1.c' || echo '$(srcdir)/'`ctf-sha1.c
+
+-libctf_la-ctf-string.lo: ctf-string.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-string.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-string.Tpo -c -o libctf_la-ctf-string.lo `test -f 'ctf-string.c' || echo '$(srcdir)/'`ctf-string.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-string.Tpo $(DEPDIR)/libctf_la-ctf-string.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-string.c' object='libctf_la-ctf-string.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-string.lo: ctf-string.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-string.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-string.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-string.lo `test -f 'ctf-string.c' || echo '$(srcdir)/'`ctf-string.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-string.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-string.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-string.c' object='libctf@CTF_SOVER_EXT@_la-ctf-string.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-string.lo `test -f 'ctf-string.c' || echo '$(srcdir)/'`ctf-string.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-string.lo `test -f 'ctf-string.c' || echo '$(srcdir)/'`ctf-string.c
+
+-libctf_la-ctf-subr.lo: ctf-subr.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-subr.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-subr.Tpo -c -o libctf_la-ctf-subr.lo `test -f 'ctf-subr.c' || echo '$(srcdir)/'`ctf-subr.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-subr.Tpo $(DEPDIR)/libctf_la-ctf-subr.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-subr.c' object='libctf_la-ctf-subr.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-subr.lo: ctf-subr.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-subr.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-subr.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-subr.lo `test -f 'ctf-subr.c' || echo '$(srcdir)/'`ctf-subr.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-subr.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-subr.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-subr.c' object='libctf@CTF_SOVER_EXT@_la-ctf-subr.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-subr.lo `test -f 'ctf-subr.c' || echo '$(srcdir)/'`ctf-subr.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-subr.lo `test -f 'ctf-subr.c' || echo '$(srcdir)/'`ctf-subr.c
+
+-libctf_la-ctf-types.lo: ctf-types.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-types.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-types.Tpo -c -o libctf_la-ctf-types.lo `test -f 'ctf-types.c' || echo '$(srcdir)/'`ctf-types.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-types.Tpo $(DEPDIR)/libctf_la-ctf-types.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-types.c' object='libctf_la-ctf-types.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-types.lo: ctf-types.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-types.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-types.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-types.lo `test -f 'ctf-types.c' || echo '$(srcdir)/'`ctf-types.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-types.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-types.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-types.c' object='libctf@CTF_SOVER_EXT@_la-ctf-types.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-types.lo `test -f 'ctf-types.c' || echo '$(srcdir)/'`ctf-types.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-types.lo `test -f 'ctf-types.c' || echo '$(srcdir)/'`ctf-types.c
+
+-libctf_la-ctf-util.lo: ctf-util.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-util.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-util.Tpo -c -o libctf_la-ctf-util.lo `test -f 'ctf-util.c' || echo '$(srcdir)/'`ctf-util.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-util.Tpo $(DEPDIR)/libctf_la-ctf-util.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-util.c' object='libctf_la-ctf-util.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-util.lo: ctf-util.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-util.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-util.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-util.lo `test -f 'ctf-util.c' || echo '$(srcdir)/'`ctf-util.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-util.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-util.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-util.c' object='libctf@CTF_SOVER_EXT@_la-ctf-util.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-util.lo `test -f 'ctf-util.c' || echo '$(srcdir)/'`ctf-util.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-util.lo `test -f 'ctf-util.c' || echo '$(srcdir)/'`ctf-util.c
+
+-libctf_la-ctf-qsort_r.lo: ctf-qsort_r.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-qsort_r.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-qsort_r.Tpo -c -o libctf_la-ctf-qsort_r.lo `test -f 'ctf-qsort_r.c' || echo '$(srcdir)/'`ctf-qsort_r.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-qsort_r.Tpo $(DEPDIR)/libctf_la-ctf-qsort_r.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-qsort_r.c' object='libctf_la-ctf-qsort_r.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-qsort_r.lo: ctf-qsort_r.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-qsort_r.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-qsort_r.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-qsort_r.lo `test -f 'ctf-qsort_r.c' || echo '$(srcdir)/'`ctf-qsort_r.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-qsort_r.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-qsort_r.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-qsort_r.c' object='libctf@CTF_SOVER_EXT@_la-ctf-qsort_r.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-qsort_r.lo `test -f 'ctf-qsort_r.c' || echo '$(srcdir)/'`ctf-qsort_r.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-qsort_r.lo `test -f 'ctf-qsort_r.c' || echo '$(srcdir)/'`ctf-qsort_r.c
+
+-libctf_la-ctf-open-bfd.lo: ctf-open-bfd.c
+-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf_la-ctf-open-bfd.lo -MD -MP -MF $(DEPDIR)/libctf_la-ctf-open-bfd.Tpo -c -o libctf_la-ctf-open-bfd.lo `test -f 'ctf-open-bfd.c' || echo '$(srcdir)/'`ctf-open-bfd.c
+-@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_la-ctf-open-bfd.Tpo $(DEPDIR)/libctf_la-ctf-open-bfd.Plo
+-@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-open-bfd.c' object='libctf_la-ctf-open-bfd.lo' libtool=yes @AMDEPBACKSLASH@
++libctf@CTF_SOVER_EXT@_la-ctf-open-bfd.lo: ctf-open-bfd.c
++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libctf@CTF_SOVER_EXT@_la-ctf-open-bfd.lo -MD -MP -MF $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-open-bfd.Tpo -c -o libctf@CTF_SOVER_EXT@_la-ctf-open-bfd.lo `test -f 'ctf-open-bfd.c' || echo '$(srcdir)/'`ctf-open-bfd.c
++@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-open-bfd.Tpo $(DEPDIR)/libctf@CTF_SOVER_EXT@_la-ctf-open-bfd.Plo
++@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-open-bfd.c' object='libctf@CTF_SOVER_EXT@_la-ctf-open-bfd.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+-@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf_la-ctf-open-bfd.lo `test -f 'ctf-open-bfd.c' || echo '$(srcdir)/'`ctf-open-bfd.c
++@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libctf@CTF_SOVER_EXT@_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libctf@CTF_SOVER_EXT@_la-ctf-open-bfd.lo `test -f 'ctf-open-bfd.c' || echo '$(srcdir)/'`ctf-open-bfd.c
+
+ mostlyclean-libtool:
+ -rm -f *.lo
--- /dev/null
+--- a/gas/config/tc-mips.c
++++ b/gas/config/tc-mips.c
+@@ -16734,6 +16734,9 @@ parse_code_option (char * name)
+ else
+ return OPTION_TYPE_BAD;
+
++ if (mips_opts.isa == ISA_MIPS1 && mips_opts.fp == 0)
++ mips_opts.isa = ISA_MIPS2;
++
+ return isa_set ? OPTION_TYPE_ISA : OPTION_TYPE_NORMAL;
+ }
+
--- /dev/null
+--- a/bfd/config.bfd
++++ b/bfd/config.bfd
+@@ -927,11 +927,21 @@ case "${targ}" in
+ targ_defvec=mips_elf32_be_vec
+ targ_selvecs="mips_elf32_le_vec mips_elf64_be_vec mips_elf64_le_vec mips_ecoff_be_vec mips_ecoff_le_vec"
+ ;;
+- mips64*el-*-linux*)
++ mips*64*el-*-linux*-gnuabi64)
++ targ_defvec=mips_elf64_trad_le_vec
++ targ_selvecs="mips_elf32_ntrad_be_vec mips_elf32_ntrad_le_vec mips_elf32_trad_be_vec mips_elf32_trad_le_vec mips_elf64_trad_be_vec"
++ want64=true
++ ;;
++ mips*64*-*-linux*-gnuabi64)
++ targ_defvec=mips_elf64_trad_be_vec
++ targ_selvecs="mips_elf32_ntrad_be_vec mips_elf32_ntrad_le_vec mips_elf32_trad_be_vec mips_elf32_trad_le_vec mips_elf64_trad_le_vec"
++ want64=true
++ ;;
++ mips*64*el-*-linux*)
+ targ_defvec=mips_elf32_ntrad_le_vec
+ targ_selvecs="mips_elf32_ntrad_be_vec mips_elf32_trad_le_vec mips_elf32_trad_be_vec mips_elf64_trad_le_vec mips_elf64_trad_be_vec"
+ ;;
+- mips64*-*-linux*)
++ mips*64*-*-linux*)
+ targ_defvec=mips_elf32_ntrad_be_vec
+ targ_selvecs="mips_elf32_ntrad_le_vec mips_elf32_trad_be_vec mips_elf32_trad_le_vec mips_elf64_trad_be_vec mips_elf64_trad_le_vec"
+ ;;
+--- a/binutils/testsuite/binutils-all/mips/mips-note-2-n32.d
++++ b/binutils/testsuite/binutils-all/mips/mips-note-2-n32.d
+@@ -1,4 +1,5 @@
+ #PROG: objcopy
++#as: -n32
+ #readelf: --notes --wide
+ #objcopy: --merge-notes
+ #name: MIPS merge notes section (n32)
+--- a/gas/configure
++++ b/gas/configure
+@@ -12167,6 +12167,9 @@ _ACEOF
+ esac
+ # Decide which ABI to target by default.
+ case ${target} in
++ mips*64*-linux-gnuabi64)
++ mips_default_abi=N64_ABI
++ ;;
+ mips64*-linux* | mips-sgi-irix6* | mips64*-freebsd* \
+ | mips64*-kfreebsd*-gnu | mips64*-ps2-elf*)
+ mips_default_abi=N32_ABI
+--- a/gas/configure.ac
++++ b/gas/configure.ac
+@@ -384,6 +384,9 @@ changequote([,])dnl
+ esac
+ # Decide which ABI to target by default.
+ case ${target} in
++ mips*64*-linux-gnuabi64)
++ mips_default_abi=N64_ABI
++ ;;
+ mips64*-linux* | mips-sgi-irix6* | mips64*-freebsd* \
+ | mips64*-kfreebsd*-gnu | mips64*-ps2-elf*)
+ mips_default_abi=N32_ABI
+--- a/ld/configure.tgt
++++ b/ld/configure.tgt
+@@ -543,11 +543,19 @@ mips*-*-vxworks*) targ_emul=elf32ebmipvx
+ ;;
+ mips*-*-windiss) targ_emul=elf32mipswindiss
+ ;;
+-mips64*el-*-linux-*) targ_emul=elf32ltsmipn32
++mips*64*el-*-linux-gnuabi64) targ_emul=elf64ltsmip
++ targ_extra_emuls="elf32btsmipn32 elf32ltsmipn32 elf32ltsmip elf32btsmip elf64btsmip"
++ targ_extra_libpath=$targ_extra_emuls
++ ;;
++mips*64*el-*-linux-*) targ_emul=elf32ltsmipn32
+ targ_extra_emuls="elf32btsmipn32 elf32ltsmip elf32btsmip elf64ltsmip elf64btsmip"
+ targ_extra_libpath=$targ_extra_emuls
+ ;;
+-mips64*-*-linux-*) targ_emul=elf32btsmipn32
++mips*64*-*-linux-gnuabi64) targ_emul=elf64btsmip
++ targ_extra_emuls="elf32btsmipn32 elf32ltsmipn32 elf32btsmip elf32ltsmip elf64ltsmip"
++ targ_extra_libpath=$targ_extra_emuls
++ ;;
++mips*64*-*-linux-*) targ_emul=elf32btsmipn32
+ targ_extra_emuls="elf32ltsmipn32 elf32btsmip elf32ltsmip elf64btsmip elf64ltsmip"
+ targ_extra_libpath=$targ_extra_emuls
+ ;;
--- /dev/null
+# DP: Proposed patch for PR ld/16428, disallow -shared/-pie, -shared/-static, -pie/-static.
+
+2014-01-10 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR ld/16428
+ * ld.texinfo: Updated for -static/-non_shared change.
+ * ldlex.h (option_values): Add OPTION_STATIC.
+ * lexsup.c (ld_options): Use OPTION_STATIC for -static/-non_shared.
+ (parse_args): Handle OPTION_STATIC. Disallow -shared and -pie,
+ -shared and -static, -pie and -static.
+
+2014-01-10 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR ld/16428
+ * ld-elf/pr16428a.d: New file.
+ * ld-elf/pr16428b.d: Likewise.
+ * ld-elf/pr16428c.d: Likewise.
+ * ld-elf/pr16428d.d: Likewise.
+
+diff --git a/ld/ld.texinfo b/ld/ld.texinfo
+index ae3d568..bddfdfe 100644
+--- a/ld/ld.texinfo
++++ b/ld/ld.texinfo
+@@ -1204,11 +1204,11 @@ platforms for which shared libraries are supported. The different
+ variants of this option are for compatibility with various systems. You
+ may use this option multiple times on the command line: it affects
+ library searching for @option{-l} options which follow it. This
+-option also implies @option{--unresolved-symbols=report-all}. This
+-option can be used with @option{-shared}. Doing so means that a
+-shared library is being created but that all of the library's external
+-references must be resolved by pulling in entries from static
+-libraries.
++option also implies @option{--unresolved-symbols=report-all}.
++@option{-Bstatic} and @option{-dn} can be used with @option{-shared}.
++Doing so means that a shared library is being created but that all of
++the library's external references must be resolved by pulling in entries
++from static libraries.
+
+ @kindex -Bsymbolic
+ @item -Bsymbolic
+diff --git a/ld/ldlex.h b/ld/ldlex.h
+index 99f4282..6f237dc 100644
+--- a/ld/ldlex.h
++++ b/ld/ldlex.h
+@@ -49,6 +49,7 @@ enum option_values
+ OPTION_NO_WARN_SEARCH_MISMATCH,
+ OPTION_NOINHIBIT_EXEC,
+ OPTION_NON_SHARED,
++ OPTION_STATIC,
+ OPTION_NO_WHOLE_ARCHIVE,
+ OPTION_OFORMAT,
+ OPTION_RELAX,
+diff --git a/ld/lexsup.c b/ld/lexsup.c
+index 2f71750..a366613 100644
+--- a/ld/lexsup.c
++++ b/ld/lexsup.c
+@@ -269,9 +269,9 @@ static const struct ld_option ld_options[] =
+ '\0', NULL, N_("Do not link against shared libraries"), ONE_DASH },
+ { {"dn", no_argument, NULL, OPTION_NON_SHARED},
+ '\0', NULL, NULL, ONE_DASH },
+- { {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
++ { {"non_shared", no_argument, NULL, OPTION_STATIC},
+ '\0', NULL, NULL, ONE_DASH },
+- { {"static", no_argument, NULL, OPTION_NON_SHARED},
++ { {"static", no_argument, NULL, OPTION_STATIC},
+ '\0', NULL, NULL, ONE_DASH },
+ { {"Bsymbolic", no_argument, NULL, OPTION_SYMBOLIC},
+ '\0', NULL, N_("Bind global references locally"), ONE_DASH },
+@@ -523,6 +523,7 @@ parse_args (unsigned argc, char **argv)
+ struct option *really_longopts;
+ int last_optind;
+ enum report_method how_to_report_unresolved_symbols = RM_GENERATE_ERROR;
++ bfd_boolean seen_pie = FALSE, seen_shared = FALSE, seen_static = FALSE;
+
+ shortopts = (char *) xmalloc (OPTION_COUNT * 3 + 2);
+ longopts = (struct option *)
+@@ -707,6 +708,8 @@ parse_args (unsigned argc, char **argv)
+ case OPTION_CALL_SHARED:
+ input_flags.dynamic = TRUE;
+ break;
++ case OPTION_STATIC:
++ seen_static = TRUE;
+ case OPTION_NON_SHARED:
+ input_flags.dynamic = FALSE;
+ break;
+@@ -1087,6 +1090,7 @@ parse_args (unsigned argc, char **argv)
+ case OPTION_SHARED:
+ if (config.has_shared)
+ {
++ seen_shared = TRUE;
+ link_info.shared = TRUE;
+ /* When creating a shared library, the default
+ behaviour is to ignore any unresolved references. */
+@@ -1101,6 +1105,7 @@ parse_args (unsigned argc, char **argv)
+ case OPTION_PIE:
+ if (config.has_shared)
+ {
++ seen_pie = TRUE;
+ link_info.shared = TRUE;
+ link_info.pie = TRUE;
+ }
+@@ -1445,6 +1450,16 @@ parse_args (unsigned argc, char **argv)
+ }
+ }
+
++ if (seen_shared)
++ {
++ if (seen_pie)
++ einfo (_("%P%F: -shared and -pie are incompatible\n"));
++ if (seen_static)
++ einfo (_("%P%F: -shared and -static are incompatible\n"));
++ }
++ if (seen_pie && seen_static)
++ einfo (_("%P%F: -pie and -static are incompatible\n"));
++
+ while (ingroup)
+ {
+ lang_leave_group ();
+diff --git a/ld/testsuite/ld-elf/pr16428a.d b/ld/testsuite/ld-elf/pr16428a.d
+new file mode 100644
+index 0000000..8f5e833
+--- /dev/null
++++ b/ld/testsuite/ld-elf/pr16428a.d
+@@ -0,0 +1,4 @@
++#source: start.s
++#ld: -shared -static
++#target: *-*-linux* *-*-gnu* *-*-nacl*
++#error: -shared and -static are incompatible
+diff --git a/ld/testsuite/ld-elf/pr16428b.d b/ld/testsuite/ld-elf/pr16428b.d
+new file mode 100644
+index 0000000..f4ccba0
+--- /dev/null
++++ b/ld/testsuite/ld-elf/pr16428b.d
+@@ -0,0 +1,4 @@
++#source: start.s
++#ld: -shared -non_shared
++#target: *-*-linux* *-*-gnu* *-*-nacl*
++#error: -shared and -static are incompatible
+diff --git a/ld/testsuite/ld-elf/pr16428c.d b/ld/testsuite/ld-elf/pr16428c.d
+new file mode 100644
+index 0000000..747e8da
+--- /dev/null
++++ b/ld/testsuite/ld-elf/pr16428c.d
+@@ -0,0 +1,4 @@
++#source: start.s
++#ld: -shared -pie
++#target: *-*-linux* *-*-gnu* *-*-nacl*
++#error: -shared and -pie are incompatible
+diff --git a/ld/testsuite/ld-elf/pr16428d.d b/ld/testsuite/ld-elf/pr16428d.d
+new file mode 100644
+index 0000000..6e7a915
+--- /dev/null
++++ b/ld/testsuite/ld-elf/pr16428d.d
+@@ -0,0 +1,4 @@
++#source: start.s
++#ld: -pie -static
++#target: *-*-linux* *-*-gnu* *-*-nacl*
++#error: -pie and -static are incompatible
--- /dev/null
+branch-updates.diff
+branch-version.diff
+001_ld_makefile_patch.patch
+002_gprof_profile_arcs.patch
+003_gprof_see_also_monitor.patch
+006_better_file_error.patch
+013_bash_in_ld_testsuite.patch
+#014_hash_style-both.patch
+128_ppc64_powerpc_biarch.patch
+129_multiarch_libpath.patch
+130_gold_disable_testsuite_build.patch
+131_ld_bootstrap_testsuite.patch
+135_bfd_soversion.patch
+136_bfd_pic.patch
+157_ar_scripts_with_tilde.patch
+#158_ld_system_root.patch
+161_gold_dummy_zoption.diff
+
+# only applied for GFDL builds
+164_ld_doc_remove_xref.diff
+
+gprof-build.diff
+aarch64-libpath.diff
+#pr-ld-16428.diff
+mips64-default-n64.diff
+gold-mips.diff
+gold-no-keep-files-mapped.diff
+
+# trunk backports
+
+# experimental ...
+#infinity-notes.diff
+libctf-soname.diff
+
+mips-hack.diff
--- /dev/null
+#!/usr/bin/make -f
+# debian/rules file - for binutils (2.29)
+# Based on sample debian/rules file - for GNU Hello (1.3).
+# Copyright 1994,1995 by Ian Jackson.
+# Copyright 1998-2007 James Troup.
+# Portions Copyright 2008-2019 Canonical Ltd.
+# Portions Copyright 2008-2019 Matthias Klose.
+# I hereby give you perpetual unlimited permission to copy,
+# modify and relicense this file, provided that you do not remove
+# my name from the file itself. (I assert my moral right of
+# paternity under the Copyright, Designs and Patents Act 1988.)
+# This file may have to be extensively modified
+
+###############################################################################
+
+include /usr/share/dpkg/pkg-info.mk
+
+vafilt = $(subst $(2)=,,$(filter $(2)=%,$(1)))
+DPKG_VARS := $(shell dpkg-architecture)
+DEB_BUILD_GNU_TYPE ?= $(call vafilt,$(DPKG_VARS),DEB_BUILD_GNU_TYPE)
+DEB_HOST_ARCH ?= $(call vafilt,$(DPKG_VARS),DEB_HOST_ARCH)
+DEB_HOST_GNU_CPU ?= $(call vafilt,$(DPKG_VARS),DEB_HOST_GNU_CPU)
+DEB_HOST_GNU_TYPE ?= $(call vafilt,$(DPKG_VARS),DEB_HOST_GNU_TYPE)
+DEB_HOST_MULTIARCH ?= $(call vafilt,$(DPKG_VARS),DEB_HOST_MULTIARCH)
+
+ifeq (,$(filter no, $(DEB_RULES_REQUIRES_ROOT)))
+ require_root = yes
+endif
+ifeq ($(require_root),yes)
+ CHOWN = chown
+ DPKG_DEB = dpkg-deb
+else
+ CHOWN = : chown
+ DPKG_DEB = dpkg-deb --root-owner-group
+endif
+
+ifeq (,$(filter $(distrelease),lenny etch squeeze wheezy jessie))
+ ifeq ($(DEB_HOST_GNU_TYPE),i586-linux-gnu)
+ DEB_BUILD_GNU_TYPE = i686-linux-gnu
+ DEB_HOST_GNU_CPU = i686
+ DEB_HOST_GNU_TYPE = i686-linux-gnu
+ TRIPLET_SYMLINK = i586-linux-gnu
+ else ifeq ($(DEB_HOST_GNU_TYPE),i586-kfreebsd-gnu)
+ DEB_BUILD_GNU_TYPE = i686-kfreebsd-gnu
+ DEB_HOST_GNU_CPU = i686
+ DEB_HOST_GNU_TYPE = i686-kfreebsd-gnu
+ TRIPLET_SYMLINK = i586-kfreebsd-gnu
+ else ifeq ($(DEB_HOST_GNU_TYPE),i586-gnu)
+ DEB_BUILD_GNU_TYPE = i686-gnu
+ DEB_HOST_GNU_CPU = i686
+ DEB_HOST_GNU_TYPE = i686-gnu
+ TRIPLET_SYMLINK = i586-gnu
+ endif
+endif
+
+p_bin = binutils
+p_com = $(p_bin)-common
+p_lib = lib$(p_bin)
+p_nat = $(p_bin)-$(subst _,-,$(DEB_HOST_GNU_TYPE))
+p_dev = $(p_bin)-dev
+p_mul = $(p_bin)-multiarch
+p_mdev = $(p_mul)-dev
+p_doc = $(p_bin)-doc
+p_hppa64 = $(p_bin)-hppa64-linux-gnu
+p_src = $(p_bin)-source
+
+p_ctf = libctf0
+p_ctfn = libctf-nobfd0
+
+p_hst = $(p_bin)-for-host
+p_bld = $(p_bin)-for-build
+
+p_cross = $(p_bin)-$(subst _,-,$(DEB_TARGET_GNU_TYPE))
+
+# version used for p_bld/p_hst dependencies
+min_ver = 2.30-2
+
+distribution := $(shell lsb_release -is)
+distrelease := $(shell lsb_release -cs)
+ifeq ($(distrelease),n/a)
+ distrelease := sid
+endif
+
+# BACKPORT is used for cross builds for a -source package not conflicting
+# with the source package of the native package.
+ifeq ($(BACKPORT),true)
+ p_src = $(p_bin)-$(VERSION)-source
+else
+ p_src = $(p_bin)-source
+endif
+
+pwd := $(shell pwd)
+d = debian/tmp
+d_bin = $(d)
+d_com = debian/$(p_com)
+d_lib = debian/$(p_lib)
+d_nat = debian/$(p_nat)
+d_dev = debian/$(p_dev)
+d_mul = debian/$(p_mul)
+d_mdev = debian/$(p_mdev)
+d_doc = debian/$(p_doc)
+d_hppa64 = debian/$(p_hppa64)
+d_src = debian/$(p_src)
+
+d_ctf = debian/$(p_ctf)
+d_ctfn = debian/$(p_ctfn)
+
+d_hst = debian/$(p_hst)
+d_bld = debian/$(p_bld)
+
+d_cross = debian/$(p_cross)
+
+install_dir = install -d -m 755
+install_file = install -m 644
+install_script = install -m 755
+install_binary = install -m 755 -s --strip-program="$(STRIP)"
+
+NATIVE_ARCHS ?= amd64 i386 arm64 armhf armel ppc64el s390x
+NATIVE_ARCHS += alpha hppa ia64 m68k powerpc ppc64 \
+ riscv64 sh4 sparc64 x32
+NATIVE_ARCHS += hurd-i386 kfreebsd-amd64 kfreebsd-i386
+#NATIVE_ARCHS += nios2 or1k s390 sparc
+
+# don't generate the control file entries for native packages which are never
+# built. Only valid for Ubuntu. The autopkg testers get confused otherwise
+ifneq ($(distribution)-$(CROSS_ARCHS),Ubuntu-)
+ NATIVE_ARCHS += mips mipsel mips64 mips64el
+ NATIVE_ARCHS += mipsn32 mipsn32el
+ NATIVE_ARCHS += mipsn32r6 mipsn32r6el mipsr6 mipsr6el mips64r6 mips64r6el
+endif
+
+with_cross = yes
+ifeq ($(DEB_SOURCE),binutils)
+ with_native = yes
+ same_source = yes
+ ifneq (,$(filter $(DEB_HOST_ARCH), amd64 i386 x32))
+ # DEB_HOST_ARCH is filtered-out later anyway, do not test here.
+ CROSS_ARCHS ?= amd64 i386 x32 \
+ s390x ppc64el arm64 armhf armel \
+ alpha hppa m68k \
+ powerpc ppc64 sh4 sparc64 \
+ ia64 riscv64 \
+ kfreebsd-amd64 kfreebsd-i386 hurd-i386
+ else ifeq ($(DEB_HOST_ARCH),arm64)
+ CROSS_ARCHS ?= amd64 armel armhf i386 ppc64el riscv64 s390x x32
+ else ifeq ($(DEB_HOST_ARCH),ppc64)
+ CROSS_ARCHS ?= ppc64el
+ else ifeq ($(DEB_HOST_ARCH),ppc64el)
+ CROSS_ARCHS ?= powerpc ppc64 amd64 i386 x32 arm64 armel armhf riscv64 s390x
+ endif
+else ifeq ($(DEB_SOURCE),binutils-ports)
+ CROSS_ARCHS ?= m68k sh4
+else ifeq ($(DEB_SOURCE),binutils-mipsen)
+ with_native =
+ same_source =
+ ifneq (,$(filter $(DEB_HOST_ARCH), amd64 i386 x32 arm64 ppc64el))
+ CROSS_ARCHS ?= mips mipsel mips64el mips64 mipsn32 mipsn32el \
+ mipsr6 mipsr6el mipsn32r6 mipsn32r6el mips64r6 mips64r6el
+ else ifneq (,$(filter $(DEB_HOST_ARCH), arm64 ppc64el))
+ CROSS_ARCHS ?= mipsel mips64el
+ endif
+else
+ $(error unexpected source package name: $(DEB_SOURCE))
+endif
+# c-t-b passes this one ...
+CROSS_ARCHS := $(filter-out $(DEB_HOST_ARCH),$(CROSS_ARCHS))
+
+ifneq (,$(filter $(DEB_HOST_ARCH),amd64 i386 x32 hppa))
+ with_hppa64 = yes
+endif
+
+with_multiarch := yes
+
+# disabled: no build-needed restriction used in the autopkg test
+ifeq (0,1)
+# only build the basic package when running the autopkg tests
+ifneq (,$(ADT_TEST_TRIGGERS))
+ # c-t-b sets CROSS_ARCHS which has to be respected, can't unset it here
+ #CROSS_ARCHS :=
+ with_hppa64 :=
+ with_multiarch :=
+endif
+endif
+
+HOST_ARCHS_armhf = amd64 i386 x32 arm64 ppc64el
+HOST_ARCHS_armel = amd64 i386 x32 arm64 ppc64el
+HOST_ARCHS_arm64 = amd64 i386 x32 ppc64el
+HOST_ARCHS_powerpc = amd64 i386 x32 ppc64el
+HOST_ARCHS_ppc64el = amd64 i386 x32 ppc64 arm64
+HOST_ARCHS_s390x = amd64 i386 x32 arm64 ppc64el
+HOST_ARCHS_amd64 = arm64 i386 ppc64el x32
+HOST_ARCHS_i386 = amd64 arm64 ppc64el x32
+HOST_ARCHS_ia64 = amd64 i386 x32
+HOST_ARCHS_riscv64 = amd64 i386 x32 arm64 ppc64el
+
+HOST_ARCHS_alpha = amd64 i386 x32
+#HOST_ARCHS_arc = amd64 i386 x32
+HOST_ARCHS_hppa = amd64 i386 x32
+HOST_ARCHS_m68k = amd64 i386 x32
+HOST_ARCHS_ppc64 = amd64 i386 x32 ppc64el
+HOST_ARCHS_sh4 = amd64 i386 x32
+HOST_ARCHS_sparc64 = amd64 i386 x32
+HOST_ARCHS_x32 = amd64 arm64 i386 ppc64el
+
+HOST_ARCHS_mips = amd64 i386 x32
+HOST_ARCHS_mipsel = amd64 i386 x32 arm64 ppc64el
+HOST_ARCHS_mipsn32 = amd64 i386 x32
+HOST_ARCHS_mipsn32el = amd64 i386 x32
+HOST_ARCHS_mips64 = amd64 i386 x32
+HOST_ARCHS_mips64el = amd64 i386 x32 arm64 ppc64el
+
+HOST_ARCHS_mipsr6 = amd64 i386 x32
+HOST_ARCHS_mipsr6el = amd64 i386 x32
+HOST_ARCHS_mipsn32r6 = amd64 i386 x32
+HOST_ARCHS_mipsn32r6el = amd64 i386 x32
+HOST_ARCHS_mips64r6 = amd64 i386 x32
+HOST_ARCHS_mips64r6el = amd64 i386 x32
+
+HOST_ARCHS_kfreebsd-amd64 = amd64 i386 x32
+HOST_ARCHS_kfreebsd-i386 = amd64 i386 x32
+HOST_ARCHS_hurd-i386 = amd64 i386 x32
+
+# Map a Debian architecture alias to a GNU type or a multiarch path component.
+run_dpkg_arch = $(or $(dpkg_arch_$1),$(eval \
+ dpkg_arch_$1 := $(shell dpkg-architecture -f -a$1))$(dpkg_arch_$1))
+_gnu_type = $(call vafilt,$(run_dpkg_arch),DEB_HOST_GNU_TYPE)
+_multiarch = $(call vafilt,$(run_dpkg_arch),DEB_HOST_MULTIARCH)
+
+# Convenient shortcuts for {configure,build,install,binary}.%: generic recipes.
+CROSS_ARCH = $(subst .,,$(suffix $@))
+CROSS_GNU_TYPE = $(subst i586,i686,$(call _gnu_type,$(CROSS_ARCH)))
+P_CROSS = binutils-$(subst _,-,$(CROSS_GNU_TYPE))
+D_CROSS = debian/$(P_CROSS)
+
+# If $(TARGET) is not set, try reading debian/target
+ifeq (,$(TARGET))
+ ifneq (,$(wildcard debian/target))
+ TARGET := $(shell cat debian/target 2>/dev/null)
+ endif
+endif
+
+ifneq (,$(TARGET))
+ with_native =
+ with_cross = disabled by TARGET
+ same_source =
+ # Support TARGET both as Debian architecture specification (e.g. arm),
+ # and as the target name (e.g. arm-linux-gnu).
+ DEB_TARGET_ARCH := $(or $(shell dpkg-architecture -f -t$(TARGET) -qDEB_HOST_ARCH 2>/dev/null),\
+ $(TARGET))
+ DEB_TARGET_GNU_TYPE = $(call _gnu_type,$(DEB_TARGET_ARCH))
+ DEB_TARGET_MULTIARCH = $(call _multiarch,$(DEB_TARGET_ARCH))
+ for_target = $(call run_dpkg_arch,$(DEB_TARGET_ARCH))
+else
+ for_target =
+endif
+
+ifneq (,$(TARGET))
+ APPEND_TOOLLIBDIR=yes
+ export APPEND_TOOLLIBDIR
+endif
+
+ifeq (,$(DEB_HOST_MULTIARCH))
+ ifeq ($(DEB_HOST_ARCH),i386)
+ DEB_HOST_MULTIARCH = i386-linux-gnu
+ else
+ DEB_HOST_MULTIARCH = $(DEB_HOST_GNU_TYPE)
+ endif
+endif
+
+SHELL = /bin/bash
+
+gold_targets = \
+ amd64 arm64 armel armhf i386 \
+ mips mipsel mipsn32 mipsn32el mips64 mips64el \
+ mipsr6 mipsr6el mipsn32r6 mipsn32r6el mips64r6 mips64r6el \
+ powerpc ppc64 ppc64el sparc sparc64 s390x \
+ x32 kfreebsd-amd64 kfreebsd-i386 hurd-i386
+
+ifneq (,$(filter $(DEB_HOST_ARCH), $(gold_targets)))
+ with_gold = yes
+ gold_provides = -Vgold:Provides=binutils-gold
+endif
+
+CFLAGS = -g -O2
+CXXFLAGS = -g -O2
+LDFLAGS =
+CROSS := $(DEB_HOST_GNU_TYPE)-
+CC = $(CROSS)gcc
+CXX = $(CROSS)g++
+STRIP = $(CROSS)strip -R .comment -R .note
+STRIP_LTO = $(CROSS)strip -R .gnu.lto_* -R .gnu.debuglto_* -N __gnu_lto_slim -N __gnu_lto_v1
+
+ifeq (,$(findstring nopgo,$(DEB_BUILD_OPTIONS)))
+ ifeq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH))
+ ifeq (,$(filter $(DEB_HOST_ARCH), mipsel))
+ CONF_PGO = --enable-pgo-build=lto
+ endif
+ endif
+endif
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS = -g -O0
+ CONF_PGO =
+endif
+
+# this outputs 0 or 1 depending on whether a macro appears in the *default* cpp
+# -dM -P output; this is used to test the toolchain *default* configuration
+check_cpp = $(shell $(CROSS)cpp -dM -P /dev/null | grep -q '^\#define $(1)' && echo 1 || echo 0)
+
+# testsuite doesn't expect to be built with -mthumb
+# TODO if the testsuite is only broken with Thumb-2 (and not with "Thumb-1"),
+# we should test for __thumb2__ instead
+ifneq (,$(filter $(DEB_HOST_ARCH), armel armhf))
+ ifeq ($(call check_cpp,__thumb__),1)
+ CFLAGS += -marm
+ endif
+endif
+
+SPACE = $(EMPTY) $(EMPTY)
+COMMA = ,
+
+DEB_SVERSION := $(shell echo $(DEB_VERSION) | sed 's/+b[0-9][0-9]*$$//')
+
+VERSION := $(shell sed -n 's/^ *VERSION=\(.*\)/\1/p' bfd/configure | head -1 | tr -d \')
+DATE := $(shell sed -n 's/.* \([0-9]*\)$$/\1/p' bfd/version.h)
+ifneq (,$(DATE))
+# DATE_EXT := .$(DATE)
+endif
+BUILD_DATE := $(shell dpkg-parsechangelog | sed -n -e 's/^Date: //p')
+BUILD_DAY := $(shell date -Idate -u -d "$(BUILD_DATE)")
+
+is_rc = yes
+is_rc =
+
+ifneq ($(DEB_VERSION_UPSTREAM),$(VERSION)$(DATE_EXT))
+ $(error upstream ($(VERSION)$(DATE_EXT)) and debian ($(DEB_VERSION_UPSTREAM)) version mismatch)
+endif
+
+SINGLE_VERSION= -system
+MULTI_VERSION = -multiarch
+HPPA64_VERSION= -hppa64
+
+ifeq (,$(filter $(distrelease),squeeze wheezy precise trusty))
+ DPKG_DEV = dpkg-dev (>= 1.17.11),
+endif
+ifeq (,$(filter $(distrelease),squeeze wheezy stretch precise trusty xenial zesty artful))
+ DPKG_DEV = dpkg-dev (>= 1.19.0.5),
+endif
+
+NJOBS =
+# Support parallel=<n> in DEB_BUILD_OPTIONS (see #209008)
+ifneq (,$(filter parallel=%,$(subst $(COMMA), ,$(DEB_BUILD_OPTIONS))))
+ NJOBS := -j $(subst parallel=,,$(filter parallel=%,$(subst $(COMMA), ,$(DEB_BUILD_OPTIONS))))
+endif
+ifneq (,$(findstring nogold,$(DEB_BUILD_OPTIONS)))
+ with_gold = disabled in DEB_BUILD_OPTIONS
+endif
+ifneq (,$(findstring nomult,$(DEB_BUILD_OPTIONS)))
+ with_multiarch = disabled in DEB_BUILD_OPTIONS
+endif
+ifneq (,$(findstring nocross,$(DEB_BUILD_OPTIONS)))
+ with_cross = disabled in DEB_BUILD_OPTIONS
+endif
+ifneq (,$(findstring nohppa,$(DEB_BUILD_OPTIONS)))
+ with_hppa64 = disabled in DEB_BUILD_OPTIONS
+endif
+
+# PF is the installation prefix for the package without the leading slash.
+# It's "usr" for gcc releases, so use this if not explicitly set
+ifeq ($(PF),)
+ PF = usr
+endif
+
+# Don't include docs with GFDL invariant sections
+GFDL_INVARIANT_FREE := yes
+ifeq ($(distribution),Ubuntu)
+ GFDL_INVARIANT_FREE := no
+endif
+
+gfdl_toplevel_texinfo_files = \
+ bfd/doc/bfd.texi \
+ bfd/doc/bfdint.texi \
+ ld/ldint.texi
+
+gfdl_generated_files = \
+ bfd/doc/bfd.info
+
+programs = addr2line ar as c++filt elfedit gprof ld ld.bfd
+programs += nm objcopy objdump ranlib readelf size strings strip
+ifeq ($(with_gold),yes)
+programs += gold ld.gold dwp
+endif
+
+########################################
+
+CONFARGS = \
+ --disable-silent-rules \
+ --enable-obsolete \
+ --enable-shared \
+ --enable-plugins \
+ --enable-threads \
+ --with-system-zlib \
+ --prefix=/$(PF) \
+ --enable-deterministic-archives \
+ --disable-compressed-debug-sections \
+ --enable-new-dtags \
+ --disable-x86-used-note \
+ --with-gold-ldflags=-static-libstdc++ \
+ --build=$(DEB_BUILD_GNU_TYPE) \
+ --host=$(DEB_HOST_GNU_TYPE) \
+ --with-pkgversion="GNU Binutils for $(distribution)"
+
+# not yet ready for GCC 4.9
+CONFARGS += --disable-werror
+
+DEB_TARGET_MULTIARCH32_amd64 = i386-linux-gnu
+DEB_TARGET_MULTIARCHX32_amd64 = x86_64-linux-gnux32
+
+DEB_TARGET_MULTIARCH32_x32 = i386-linux-gnu
+DEB_TARGET_MULTIARCH64_x32 = x86_64-linux-gnu
+
+DEB_TARGET_MULTIARCH32_powerpc = powerpc-linux-gnu
+
+DEB_TARGET_MULTIARCH32_s390x = s390-linux-gnu
+
+DEB_TARGET_MULTIARCH32_sparc64 = sparc-linux-gnu
+
+DEB_TARGET_MULTIARCH32_kfreebsd-amd64 = i386-kfreebsd-gnu
+
+DEB_TARGET_MULTIARCH64_i386 = x86_64-linux-gnu
+DEB_TARGET_MULTIARCHX32_i386 = x86_64-linux-gnux32
+
+DEB_TARGET_MULTIARCH64_powerpc = powerpc64-linux-gnu
+
+DEB_TARGET_MULTIARCH64_sparc = sparc64-linux-gnu
+
+DEB_TARGET_MULTIARCH64_s390 = s390x-linux-gnu
+
+DEB_TARGET_MULTIARCH64_kfreebsd-i386 = x86_64-kfreebsd-gnu
+
+DEB_TARGET_MULTIARCH64_mips = mips64-linux-gnuabi64
+DEB_TARGET_MULTIARCHN32_mips = mips64-linux-gnuabin32
+
+DEB_TARGET_MULTIARCH64_mipsel = mips64el-linux-gnuabi64
+DEB_TARGET_MULTIARCHN32_mipsel = mips64el-linux-gnuabin32
+
+DEB_TARGET_MULTIARCH64_mipsn32 = mips64-linux-gnuabi64
+DEB_TARGET_MULTIARCH32_mipsn32 = mips-linux-gnu
+
+DEB_TARGET_MULTIARCH64_mipsn32el = mips64el-linux-gnuabi64
+DEB_TARGET_MULTIARCH32_mipsn32el = mipsel-linux-gnu
+
+DEB_TARGET_MULTIARCH32_mips64 = mips-linux-gnu
+DEB_TARGET_MULTIARCHN32_mips64 = mips64-linux-gnuabin32
+
+DEB_TARGET_MULTIARCH32_mips64el = mipsel-linux-gnu
+DEB_TARGET_MULTIARCHN32_mips64el = mips64el-linux-gnuabin32
+
+DEB_TARGET_MULTIARCH64_mipsr6 = mipsisa64r6-linux-gnuabi64
+DEB_TARGET_MULTIARCHN32_mipsr6 = mipsisa64r6-linux-gnuabin32
+
+DEB_TARGET_MULTIARCH64_mipsr6el = mipsisa64r6el-linux-gnuabi64
+DEB_TARGET_MULTIARCHN32_mipsr6el = mipsisa64r6el-linux-gnuabin32
+
+DEB_TARGET_MULTIARCH64_mipsn32r6 = mipsisa64r6-linux-gnuabi64
+DEB_TARGET_MULTIARCH32_mipsn32r6 = mipsisa32r6-linux-gnu
+
+DEB_TARGET_MULTIARCH64_mipsn32r6el = mipsisa64r6el-linux-gnuabi64
+DEB_TARGET_MULTIARCH32_mipsn32r6el = mipsisa32r6el-linux-gnu
+
+DEB_TARGET_MULTIARCH32_mips64r6 = mipsisa32r6-linux-gnu
+DEB_TARGET_MULTIARCHN32_mips64r6 = mipsisa64r6-linux-gnuabin32
+
+DEB_TARGET_MULTIARCH32_mips64r6el = mipsisa32r6el-linux-gnu
+DEB_TARGET_MULTIARCHN32_mips64r6el = mipsisa64r6el-linux-gnuabin32
+
+DEB_TARGET_MULTIARCH32_arm64 = aarch64_ilp32-linux-gnu
+
+SET_MULTIARCH_ENV = \
+ DEB_TARGET_MULTIARCH=$(call _multiarch,$1) \
+ $(if $(DEB_TARGET_MULTIARCH32_$1) ,DEB_TARGET_MULTIARCH32=$(DEB_TARGET_MULTIARCH32_$1)) \
+ $(if $(DEB_TARGET_MULTIARCH64_$1) ,DEB_TARGET_MULTIARCH64=$(DEB_TARGET_MULTIARCH64_$1)) \
+ $(if $(DEB_TARGET_MULTIARCHX32_$1),DEB_TARGET_MULTIARCHX32=$(DEB_TARGET_MULTIARCHX32_$1)) \
+ $(if $(DEB_TARGET_MULTIARCHN32_$1),DEB_TARGET_MULTIARCHN32=$(DEB_TARGET_MULTIARCHN32_$1))
+
+CONFARGS_TARGET_sparc = --enable-targets=sparc64-linux-gnu
+CONFLICTS_TARGET_sparc = -VextraConflicts="libc6-dev-sparc64 (<< 2.2.5-7)"
+
+CONFARGS_TARGET_sparc64 = --enable-targets=sparc-linux-gnu
+CONFLICTS_TARGET_sparc64 = -VextraConflicts="libc6-dev-sparc64 (<< 2.2.5-7)"
+
+CONFARGS_TARGET_powerpc = --enable-targets=powerpc64-linux-gnu
+
+CONFARGS_TARGET_ppc64 = --enable-targets=powerpc-linux-gnu
+
+CONFARGS_TARGET_ppc64el = --enable-targets=powerpc-linux-gnu
+
+CONFARGS_TARGET_s390 = --enable-targets=s390x-linux-gnu
+
+CONFARGS_TARGET_s390x = --enable-targets=s390-linux-gnu
+
+CONFARGS_TARGET_amd64 = --enable-targets=x86_64-linux-gnux32,x86_64-pep
+
+CONFARGS_TARGET_i386 = --enable-targets=x86_64-linux-gnu,x86_64-linux-gnux32,x86_64-pep
+
+CONFARGS_TARGET_x32 = --enable-targets=x86_64-linux-gnu,x86_64-pep
+
+CONFLICTS_TARGET_amd64 = -VextraConflicts="binutils-mingw-w64-i686 (<< 2.23.52.20130612-1+3), binutils-mingw-w64-x86-64 (<< 2.23.52.20130612-1+3)"
+CONFLICTS_TARGET_i386 = $(CONFLICTS_TARGET_amd64)
+CONFLICTS_TARGET_x32 = $(CONFLICTS_TARGET_amd64)
+
+CONFARGS_TARGET_riscv64 = --with-isa-spec=2.2
+
+CONFARGS_TARGET_kfreebsd-i386 = --enable-targets=x86_64-kfreebsd-gnu
+
+CONFARGS_TARGET_mips = --enable-targets=mips64-linux-gnuabi64,mips64-linux-gnuabin32
+
+CONFARGS_TARGET_mipsel = --enable-targets=mips64el-linux-gnuabi64,mips64el-linux-gnuabin32 --enable-mips-fix-loongson3-llsc=yes
+
+CONFARGS_TARGET_mipsn32 = --enable-targets=mips64-linux-gnuabi64,mips-linux-gnu
+
+CONFARGS_TARGET_mipsn32el = --enable-targets=mips64el-linux-gnuabi64,mipsel-linux-gnu --enable-mips-fix-loongson3-llsc=yes
+
+CONFARGS_TARGET_mips64 = --enable-targets=mips64-linux-gnuabin32,mips-linux-gnu
+
+CONFARGS_TARGET_mips64el = --enable-targets=mips64el-linux-gnuabin32,mipsel-linux-gnu --enable-mips-fix-loongson3-llsc=yes
+
+CONFARGS_TARGET_mipsr6 = --enable-targets=mipsisa64r6-linux-gnuabi64,mipsisa64r6-linux-gnuabin32
+
+CONFARGS_TARGET_mipsr6el = --enable-targets=mipsisa64r6el-linux-gnuabi64,mipsisa64r6el-linux-gnuabin32
+
+CONFARGS_TARGET_mipsn32r6 = --enable-targets=mipsisa64r6-linux-gnuabi64,mipsisa32r6-linux-gnu
+
+CONFARGS_TARGET_mipsn32r6el = --enable-targets=mipsisa64r6el-linux-gnuabi64,mipsisa32r6el-linux-gnu
+
+CONFARGS_TARGET_mips64r6 = --enable-targets=mipsisa64r6-linux-gnuabin32,mipsisa32r6-linux-gnu
+
+CONFARGS_TARGET_mips64r6el = --enable-targets=mipsisa64r6el-linux-gnuabin32,mipsisa32r6el-linux-gnu
+
+CONFARGS_TARGET_aarch64 = --enable-targets=aarch64_be-linux-gnu
+
+CONFARGS_TARGET_arc = --with-cpu=hs38_linux
+
+with_check := yes
+ifneq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
+ # override buildd admins to run the testsuite anyway ...
+ ifeq (,$(filter $(DEB_HOST_ARCH), m68k powerpc sh4 sparc64))
+ with_check := disabled through DEB_BUILD_OPTIONS
+ endif
+endif
+#with_check := disabled for this upload
+
+regression_archs = mipsel riscv64 sparc64
+ifneq (,$(filter $(DEB_HOST_ARCH), $(regression_archs)))
+ ignore_regressions := regressions ignored on architecture $(DEB_HOST_ARCH)
+endif
+#ignore_regressions := regressions ignored on architecture $(DEB_HOST_ARCH)
+
+with_strip := yes
+ifneq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+ with_strip := disabled through DEB_BUILD_OPTIONS
+endif
+
+source_files = $(addprefix $(shell basename $(pwd))/, \
+ $(filter-out stamps .pc CVS debian builddir-% test-summary%, $(wildcard *)))
+
+###############################################################################
+
+update-patches: export QUILT_PATCHES := debian/patches
+update-patches:
+ while quilt push; do \
+ quilt refresh --no-timestamps --no-index -pab --sort; \
+ done
+
+###############################################################################
+
+################
+# clean target #
+################
+
+clean:
+ $(checkdir)
+ rm -rf stamps
+ rm -rf builddir-*
+ rm -rf stamps
+ find . -name \*.gmo -o -name \*~ -o -name \*.info ! -name sysroff.info | xargs -r rm -f
+ rm -f test-summary*
+ rm -rf $(d_bin) $(d_com) $(d_lib) $(d_lib)-dbg $(d_nat) $(d_nat)-dbg \
+ $(d_hst) $(d_dev) $(d_mul) $(d_mul)-dbg $(d_mdev) $(d_doc) \
+ $(d_hppa64) $(d_hppa64)-dbg $(d_src) $(d_bld) \
+ $(d_ctf) $(d_ctf)-dbg $(d_ctfn) $(d_ctfn)-dbg
+ rm -rf $(foreach ca,$(CROSS_ARCHS),debian/binutils-$(subst _,-,$(subst i586,i686,$(call _gnu_type,$(ca)))){,-dbg})
+ rm -rf debian/tmp debian/files* debian/substvars
+ rm -f debian/*.orig debian/*.rej
+ rm -f debian/files debian/substvars
+ifneq (,$(TARGET))
+ rm -rf $(d_cross)
+endif
+ for i in debian/*.in; do \
+ case "$$i" in debian/control*.in) continue; esac; \
+ rm -f $${i%*.in}; \
+ done
+
+ rm -f *-stamp
+
+###############################################################################
+
+stamps/control: debian/control.in debian/control.cross.in
+ifneq (,$(TARGET))
+ sed -n -e 's/@dpkg_dev@/$(DPKG_DEV)/;/^Package: binutils-for-build$$/q;p' \
+ < debian/control.in > debian/control
+ sed -e "s/@target@/$(subst _,-,$(DEB_TARGET_GNU_TYPE))/g" \
+ -e "s/@host_archs@/any/" \
+ -e 's/@binutils_alt_triplet@//' \
+ < debian/control.cross.in >> debian/control
+else
+ sed -e 's/@dpkg_dev@/$(DPKG_DEV)/' \
+ debian/control.in > debian/control
+ $(foreach ca,$(NATIVE_ARCHS), \
+ sed \
+ -e 's/@host_archs@/$(ca)$(if $(and $(filter yes,$(with_cross)),$(filter $(ca),$(DEB_HOST_ARCH) $(CROSS_ARCHS))), $(HOST_ARCHS_$(ca)))/g' \
+ -e 's/@target@/$(subst _,-,$(subst i586,i686,$(call _gnu_type,$(ca))))/g' \
+ -e 's/@binutils_alt_triplet@/$(if $(findstring i386,$(ca)),binutils-$(subst i686,i586,$(call _gnu_type,$(ca))))/g' \
+ -e '$(if $(filter yes,$(same_source)),/^Built-Using/d)' \
+ debian/control.cross.in >> debian/control; \
+ )
+endif
+ @mkdir -p stamps
+ touch $@
+
+#######################
+# single-arch targets #
+#######################
+
+SINGLE_CONFARGS = $(CONFARGS) $(CONFARGS_TARGET_$(DEB_HOST_ARCH))
+ifeq ($(with_gold),yes)
+ SINGLE_CONFARGS += --enable-ld=default --enable-gold
+endif
+SINGLE_CONFARGS += $(CONF_PGO)
+
+stamps/configure-single:
+ $(checkdir)
+ env
+ @echo BEGIN $@
+ifeq ($(with_check),yes)
+ @if echo "spawn true" | /usr/bin/expect -f - >/dev/null; then \
+ : ; \
+ else \
+ echo "expect is failing on your system with the above error, which means the"; \
+ echo "testsuite will fail. Please resolve the above issues and retry the build."; \
+ echo "-----------------------------------------------------------------------------"; \
+ exit 1; \
+ fi
+endif
+
+ : # force regeneration, not needed for releases
+ rm -f ld/ldgram.c ld/ldgram.h ld/ldlex.c
+
+ find -name '*.[1-8]' -size 0 | xargs -r rm -f
+
+ rm -rf stamps/configure-single builddir-single
+ mkdir builddir-single
+ cd builddir-single && env CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" \
+ $(call SET_MULTIARCH_ENV,$(DEB_HOST_ARCH)) \
+ ../configure --with-sysroot=/ \
+ --libdir=/$(PF)/lib/$(DEB_HOST_MULTIARCH) \
+ $(SINGLE_CONFARGS)
+ @mkdir -p stamps
+ touch $@
+
+stamps/build-single: stamps/configure-single
+ $(checkdir)
+ @echo BEGIN $@
+ env BFD_SOVER_EXT="$(SINGLE_VERSION)" CTF_SOVER_EXT="" \
+ $(call SET_MULTIARCH_ENV,$(DEB_HOST_ARCH)) \
+ $(MAKE) $(NJOBS) -C builddir-single \
+ LDFLAGS="-Wl,-z,relro"
+ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+ifeq ($(with_check),yes)
+ -env MAKE="$(MAKE) VERSION=$(SINGLE_VERSION)" \
+ $(call SET_MULTIARCH_ENV,$(DEB_HOST_ARCH)) \
+ $(MAKE) -C builddir-single -k check
+ cat builddir-single/binutils/binutils.sum \
+ builddir-single/gas/testsuite/gas.sum \
+ builddir-single/ld/ld.sum >> $(pwd)/test-summary
+ set -e; \
+ tsi=test-summary-installed; \
+ rm -f $$tsi; \
+ if [ -f /usr/share/doc/binutils/test-summary-$(DEB_HOST_ARCH).gz ]; then \
+ zcat /usr/share/doc/binutils/test-summary-$(DEB_HOST_ARCH).gz > $$tsi; \
+ elif [ -f /usr/share/doc/binutils/test-summary.gz ]; then \
+ zcat /usr/share/doc/binutils/test-summary.gz > $$tsi; \
+ elif [ -f /usr/share/doc/binutils/test-summary ]; then \
+ cat /usr/share/doc/binutils/test-summary > $$tsi; \
+ fi; \
+ if [ ! -f $$tsi ]; then \
+ echo "No test results available for the installed binutils version"; \
+ elif [ -x /usr/bin/python3 ]; then \
+ echo "Test results, compared with installed binutils:"; \
+ if python3 debian/test-suite-compare.py $$tsi test-summary; then \
+ : ; \
+ elif [ -n "$(ignore_regressions)" ]; then \
+ echo "$(ignore_regressions)"; \
+ else \
+ false; \
+ fi; \
+ else \
+ echo "python3 not installed, not comparing test results."; \
+ fi
+endif
+endif
+ touch $@
+
+
+###############################################################################
+
+#####################
+# multiarch targets #
+#####################
+
+multiarch_targets = \
+ aarch64-linux-gnu \
+ aarch64_be-linux-gnu \
+ alpha-linux-gnu \
+ arm-linux-gnueabi \
+ hppa-linux-gnu \
+ i686-linux-gnu \
+ ia64-linux-gnu \
+ m32r-linux-gnu \
+ m68k-linux-gnu \
+ m68k-rtems \
+ mips-linux-gnu \
+ mipsel-linux-gnu \
+ mips64-linux-gnuabin32 \
+ mips64el-linux-gnuabin32 \
+ mips64-linux-gnu \
+ mips64el-linux-gnu \
+ mipsisa32r6-linux-gnu \
+ mipsisa32r6el-linux-gnu \
+ mipsisa64r6-linux-gnuabin32 \
+ mipsisa64r6el-linux-gnuabin32 \
+ mipsisa64r6-linux-gnuabi64 \
+ mipsisa64r6el-linux-gnuabi64 \
+ powerpc-linux-gnu \
+ powerpc64-linux-gnu \
+ powerpc64le-linux-gnu \
+ riscv64-linux-gnu \
+ s390-linux-gnu \
+ s390x-linux-gnu \
+ sh-linux-gnu \
+ sparc-linux-gnu \
+ sparc64-linux-gnu \
+ x86_64-linux-gnu \
+ x86_64-linux-gnux32 \
+ m32r-linux-gnu \
+ x86_64-pep
+
+# try to work around #758830
+ifeq ($(DEB_HOST_ARCH),sh4)
+ multiarch_targets := $(filter-out hppa-linux-gnu, $(multiarch_targets))
+endif
+
+stamps/configure-multi:
+ $(checkdir)
+ @echo BEGIN $@
+ rm -rf stamps/configure-multi \
+ builddir-multi
+ mkdir builddir-multi
+ cd builddir-multi \
+ && env CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" \
+ $(call SET_MULTIARCH_ENV,$(DEB_HOST_ARCH)) \
+ ../configure $(CONFARGS) $(CONF_PGO) \
+ $(filter-out --enable-targets=%, $(CONFARGS_TARGET_$(DEB_HOST_ARCH))) \
+ --with-sysroot=/ \
+ --libdir=/$(PF)/lib/$(DEB_HOST_MULTIARCH) \
+ --enable-targets=$(subst $(SPACE),$(COMMA),$(multiarch_targets))
+ @mkdir -p stamps
+ touch $@
+
+stamps/build-multi: stamps/configure-multi
+ $(checkdir)
+ @echo BEGIN $@
+ env BFD_SOVER_EXT="$(MULTI_VERSION)" CTF_SOVER_EXT="$(MULTI_VERSION)" \
+ $(call SET_MULTIARCH_ENV,$(DEB_HOST_ARCH)) \
+ $(MAKE) $(NJOBS) -C builddir-multi \
+ LDFLAGS="-Wl,-z,relro"
+ touch $@
+
+###############################################################################
+
+#################
+# cross targets #
+#################
+
+CROSS_CONFARGS = $(CONFARGS) --enable-initfini-array
+ifeq ($(with_gold),yes)
+ CROSS_CONFARGS += --enable-ld=default --enable-gold
+endif
+
+stamps/configure.%:
+ $(checkdir)
+ @echo BEGIN $@
+ rm -rf $@ builddir-$*
+ mkdir builddir-$*
+ cd builddir-$* \
+ && env CC="$(CC)" CXX="$(CXX)" \
+ $(call SET_MULTIARCH_ENV,$*) \
+ ../configure \
+ $(CROSS_CONFARGS) \
+ $(CONFARGS_TARGET_$(*)) \
+ --with-sysroot=/ \
+ --libdir=/$(PF)/lib/$(call _multiarch,$*) \
+ $(if $(filter $*, $(gold_targets)),--enable-ld=default --enable-gold,--disable-gold) \
+ --target=$(CROSS_GNU_TYPE)
+ @mkdir -p stamps
+ touch $@
+
+stamps/build.%: stamps/configure.%
+ $(checkdir)
+ @echo BEGIN $@
+ env BFD_SOVER_EXT="-$*" CTF_SOVER_EXT="-$*" \
+ $(call SET_MULTIARCH_ENV,$*) \
+ $(MAKE) -C builddir-$* $(NJOBS) \
+ CFLAGS="$(CFLAGS)" \
+ CXXFLAGS="$(CXXFLAGS)" \
+ LDFLAGS="$(LDFLAGS) -Wl,-z,relro"
+ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+ifeq ($(with_check),yes)
+ -env MAKE="$(MAKE) VERSION=$(VERSION)-$*" \
+ $(call SET_MULTIARCH_ENV,$*) \
+ $(MAKE) -C builddir-$* -k check
+ cat builddir-$*/binutils/binutils.sum \
+ builddir-$*/gas/testsuite/gas.sum \
+ builddir-$*/ld/ld.sum >> test-summary-$*
+ set -e; \
+ tsi=test-summary-$*-installed; \
+ rm -f $$tsi; \
+ if [ -f /usr/share/doc/$(P_CROSS)/test-summary.gz ]; then \
+ zcat /usr/share/doc/$(P_CROSS)/test-summary.gz > $$tsi; \
+ elif [ -f /usr/share/doc/binutils/test-summary-$*.gz ]; then \
+ zcat /usr/share/doc/binutils/test-summary-$*.gz > $$tsi; \
+ fi; \
+ if [ ! -f $$tsi ]; then \
+ echo "No test results available for the installed $(P_CROSS) version"; \
+ elif [ -x /usr/bin/python3 ]; then \
+ echo "Test results, compared with installed binutils:"; \
+ if python3 debian/test-suite-compare.py $$tsi test-summary-$*; then \
+ : ; \
+ elif echo $(regression_archs) | grep --word-regexp --silent "$*"; then \
+ echo "regressions ignore for target $*"; \
+ else \
+ false; \
+ fi; \
+ else \
+ echo "python3 not installed, not comparing test results."; \
+ fi
+endif
+endif
+ touch $@
+
+stamps/install.%: stamps/build.%
+ $(checkdir)
+ @echo BEGIN $@
+ rm -rf $(D_CROSS)
+ env MAKE="$(MAKE) VERSION=$(VERSION)-$*" \
+ $(MAKE) -C builddir-$* DESTDIR=$(CURDIR)/$(D_CROSS) install
+
+ rm -rf \
+ $(D_CROSS)/$(PF)/share/info \
+ $(D_CROSS)/$(PF)/share/locale
+
+ mkdir -p $(D_CROSS)/$(PF)/lib/$(DEB_HOST_MULTIARCH)
+ set -e; \
+ d_src=$(D_CROSS)/$(PF)/$(DEB_HOST_GNU_TYPE)/$(CROSS_GNU_TYPE)/lib; \
+ d_dst=$(D_CROSS)/$(PF)/lib/$(DEB_HOST_MULTIARCH); \
+ for lib in libbfd libopcodes; do \
+ so=$$(basename $$(echo $$d_src/$$lib*$**.so)); \
+ mv $$d_src/$$so $$d_dst/.; \
+ ln -sf ../../../lib/$(DEB_HOST_MULTIARCH)/$$so $$d_src/$$lib.so; \
+ mv $$d_src/$$lib.a $$d_dst/$${lib}-$(VERSION)-$*.a; \
+ ln -sf ../../../lib/$(DEB_HOST_MULTIARCH)/$$lib-$(VERSION)-$*.a $$d_src/$$lib.a; \
+ done
+ mv $(D_CROSS)/$(PF)/lib/$(call _multiarch,$*)/libctf*.so* \
+ $(D_CROSS)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/.
+
+ : # replace hard links with soft links
+ for i in $(D_CROSS)/usr/$(CROSS_GNU_TYPE)/bin/*; do \
+ ln -sf ../../bin/$(CROSS_GNU_TYPE)-$$(basename $$i) $$i; \
+ done
+ ln -sf $(CROSS_GNU_TYPE)-ld.bfd $(D_CROSS)/usr/bin/$(CROSS_GNU_TYPE)-ld
+
+ $(call strip_package, $(P_CROSS),$(D_CROSS),.)
+ chmod ugo-x $(D_CROSS)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.so
+ chmod ugo-x $(D_CROSS)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.so.*
+
+ : # Get rid of .la files since libtool obviously has no idea about transient paths
+ rm -f $(D_CROSS)/$(PF)/$(DEB_HOST_GNU_TYPE)/$(CROSS_GNU_TYPE)/lib/*.la
+
+ for i in $(D_CROSS)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.a; do \
+ echo "lto-stripping $(basename $$i) ..."; \
+ $(STRIP_LTO) $$i; \
+ if which strip-nondeterminism >/dev/null 2>&1; then \
+ echo "strip-nondeterminism $(basename $$i) ..."; \
+ strip-nondeterminism $$i; \
+ fi; \
+ done
+
+ : # no spu toolchain
+ rm -f $(D_CROSS)/$(PF)/bin/*embedspu
+
+ : # Remove windows related manpages
+ rm -f $(D_CROSS)/$(PF)/share/man/man1/$(CROSS_GNU_TYPE)-{dlltool,nlmconv,windmc,windres}.1
+
+ : # symlink man pages
+ mv $(D_CROSS)/$(PF)/share/man/man1/$(CROSS_GNU_TYPE)-ld.1 \
+ $(D_CROSS)/$(PF)/share/man/man1/$(CROSS_GNU_TYPE)-ld.bfd.1
+ gzip -9n $(D_CROSS)/$(PF)/share/man/man1/*
+ for i in $(D_CROSS)/$(PF)/share/man/man1/*; do \
+ b=$$(basename $$i | sed 's/$(CROSS_GNU_TYPE)-//'); \
+ ln -sf $$b $$i; \
+ done
+ ln -sf $(CROSS_GNU_TYPE)-ld.bfd.1.gz \
+ $(D_CROSS)/$(PF)/share/man/man1/$(CROSS_GNU_TYPE)-ld.1.gz
+
+ : # gold man pages
+ $(if $(filter $*, $(gold_targets)), \
+ ln -sf ld.gold.1.gz $(D_CROSS)/$(PF)/share/man/man1/$(CROSS_GNU_TYPE)-ld.gold.1.gz; \
+ ln -sf dwp.1.gz $(D_CROSS)/$(PF)/share/man/man1/$(CROSS_GNU_TYPE)-dwp.1.gz; \
+ )
+
+ : # Don't want /usr/<arch>-linux to exist in any package, don't ship development files
+ rm -rf $(D_CROSS)/$(PF)/$(DEB_HOST_GNU_TYPE)
+
+ rm -f $(D_CROSS)/$(PF)/lib/*.a $(D_CROSS)/$(PF)/lib/*/*.a
+ rm -f $(D_CROSS)/$(PF)/lib/*.la $(D_CROSS)/$(PF)/lib/*/*.la
+ rm -f $(D_CROSS)/$(PF)/$(DEB_HOST_GNU_TYPE)/$(CROSS_GNU_TYPE)/lib/*.a
+ rm -f $(D_CROSS)/$(PF)/$(DEB_HOST_GNU_TYPE)/$(CROSS_GNU_TYPE)/lib/libctf*
+ rm -f $(D_CROSS)/$(PF)/lib/$(CROSS_GNU_TYPE)/libctf*
+ rm -f $(D_CROSS)/$(PF)/include/ctf*.h
+
+ : # remove RPATH
+ chrpath -k -d $$(file $(D_CROSS)/usr/bin/*|awk -F: '/ ELF/ {print $$1}')
+
+ifneq (,$(filter $(distrelease),lenny etch squeeze wheezy jessie stretch))
+ : # temporary i586-* symlinks for stretch
+ compat=$$(echo $(CROSS_GNU_TYPE) | sed 's/i686/i586/'); \
+ case "$(CROSS_GNU_TYPE)" in i686-*) \
+ for i in $(programs); do \
+ ln -sf $(CROSS_GNU_TYPE)-$$i $(D_CROSS)/$(PF)/bin/$$compat-$$i; \
+ ln -sf $(CROSS_GNU_TYPE)-$$i.1.gz $(D_CROSS)/$(PF)/share/man/man1/$$compat-$$i.1.gz; \
+ done; \
+ esac
+endif
+ touch $@
+
+###############################################################################
+
+#################
+# hppa64 target #
+#################
+
+stamps/configure-hppa64:
+ $(checkdir)
+ @echo BEGIN $@
+ rm -rf stamps/configure-hppa64 \
+ builddir-hppa64
+ mkdir builddir-hppa64
+ cd builddir-hppa64 \
+ && env CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" ../configure \
+ $(filter-out --enable-targets=%, $(CONFARGS)) \
+ --libdir=/$(PF)/lib/hppa64-linux-gnu \
+ --target=hppa64-linux-gnu
+ @mkdir -p stamps
+ touch $@
+
+stamps/build-hppa64: stamps/configure-hppa64
+ $(checkdir)
+ @echo BEGIN $@
+ env BFD_SOVER_EXT="$(HPPA64_VERSION)" CTF_SOVER_EXT="$(HPPA64_VERSION)" \
+ $(MAKE) $(NJOBS) -C builddir-hppa64 \
+ LDFLAGS="-Wl,-z,relro"
+ touch $@
+
+###############################################################################
+
+pre-build:
+#ifneq (,$(filter $(DEB_HOST_ARCH), armel powerpc))
+# @echo Build it ...
+#else
+# @echo Explicitely fail the build for architecture $(DEB_HOST_ARCH)
+# false
+#endif
+
+build_stamps = stamps/build-single
+ifeq ($(with_multiarch),yes)
+ build_stamps += stamps/build-multi
+endif
+ifeq ($(with_hppa64),yes)
+ build_stamps += stamps/build-hppa64
+endif
+ifeq ($(with_cross),yes)
+ build_stamps += $(addprefix stamps/build.,$(CROSS_ARCHS))
+endif
+ifneq (,$(TARGET))
+ ifeq ($(DEB_TARGET_GNU_TYPE),hppa64-linux-gnu)
+ build_stamps = stamps/build-hppa64
+ else
+ build_stamps = stamps/build.$(DEB_TARGET_ARCH)
+ endif
+endif
+ifeq ($(BACKPORT),true)
+ build_stamps :=
+ with_check := no
+endif
+
+build: pre-build stamps/build
+build-arch: pre-build stamps/build
+build-indep: pre-build stamps/build
+stamps/build: $(build_stamps)
+ touch $@
+
+###############################################################################
+
+##################
+# install target #
+##################
+
+install_stamps =
+ifeq ($(with_hppa64),yes)
+ install_stamps += stamps/install-hppa64
+endif
+ifeq ($(with_cross),yes)
+ install_stamps += $(addprefix stamps/install.,$(CROSS_ARCHS))
+endif
+
+ifneq (,$(TARGET))
+ ifeq ($(DEB_TARGET_GNU_TYPE),hppa64-linux-gnu)
+ install_stamp = stamps/install-hppa64
+ else
+ install_stamp = stamps/install.$(DEB_TARGET_ARCH)
+ endif
+else
+ install_stamp = stamps/install
+endif
+ifeq ($(BACKPORT),true)
+ install_stamps :=
+endif
+install: $(install_stamp)
+stamps/install: checkroot stamps/build $(install_stamps)
+ $(checkdir)
+
+ rm -fr $(d_bin) $(d_com) $(d_lib) $(d_nat) $(d_dev) $(d_mul) $(d_mdev) $(d_doc) $(d_src) $(d_bld) $(d_ctf) $(d_ctfn)
+ $(install_dir) $(d_bin) $(d_com) $(d_lib) $(d_nat) $(d_dev) $(d_mul) $(d_mdev) $(d_doc) $(d_src) $(d_bld)
+
+ : # install binutils and -dev stuff
+ env MAKE="$(MAKE) VERSION=$(SINGLE_VERSION)" \
+ $(MAKE) -C builddir-single \
+ CFLAGS="$(CFLAGS)" \
+ CXXFLAGS="$(CXXFLAGS)" \
+ LDFLAGS="$(LDFLAGS)" \
+ DESTDIR=$(CURDIR)/$(d_bin) install
+
+ $(install_dir) $(d_com)/$(PF)/share
+ mv $(d_bin)/$(PF)/share/locale $(d_com)/$(PF)/share/locale
+
+ $(install_dir) $(d_doc)/$(PF)/share
+ mv $(d_bin)/$(PF)/share/info $(d_doc)/$(PF)/share/info
+
+ $(install_dir) $(d_nat)/$(PF)/lib/$(DEB_HOST_MULTIARCH)
+ mv $(d_bin)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/bfd-plugins \
+ $(d_nat)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/.
+ mv $(d_bin)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/ldscripts \
+ $(d_nat)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/.
+
+ $(install_dir) $(d_com)/$(PF)/share/man
+ mv $(d_bin)/$(PF)/share/man/man1 $(d_com)/$(PF)/share/man/.
+ for f in $(d_com)/$(PF)/share/man/man1/*.1; do \
+ sed -i -e '/^\.TH /s/[0-9]*-[0-9]*-[0-9]*/$(BUILD_DAY)/' $$f; \
+ done
+
+ifeq ($(with_multiarch),yes)
+ : # now install binutils-multiarch stuff
+ env MAKE="$(MAKE) VERSION=$(MULTI_VERSION)" \
+ $(MAKE) -C builddir-multi \
+ CFLAGS="$(CFLAGS)" \
+ CXXFLAGS="$(CXXFLAGS)" \
+ LDFLAGS="$(LDFLAGS)" \
+ DESTDIR=$(CURDIR)/$(d_mul) install
+endif
+
+ : # fix bfd.h, removing the safety inclusion guard
+ awk '/PR 14072/,/^#endif/ {next} {print}' $(d_bin)/$(PF)/include/bfd.h \
+ > $(d_bin)/$(PF)/include/bfd.h.new
+ mv $(d_bin)/$(PF)/include/bfd.h.new $(d_bin)/$(PF)/include/bfd.h
+
+ : # fix multilib conflicts of generated values by __WORDSIZE-based expressions
+ sed -i -e '/^#include "ansidecl.h"/{p;s~^.*$$~#include <bits/wordsize.h>~;}' \
+ -e 's/^#define BFD_DEFAULT_TARGET_SIZE \(32\|64\) *$$/#define BFD_DEFAULT_TARGET_SIZE __WORDSIZE/' \
+ -e 's/^#define BFD_HOST_64BIT_LONG [01] *$$/#define BFD_HOST_64BIT_LONG (__WORDSIZE == 64)/' \
+ -e 's/^#define BFD_HOST_64_BIT \(long \)\?long *$$/#if __WORDSIZE == 32\
+#define BFD_HOST_64_BIT long long\
+#else\
+#define BFD_HOST_64_BIT long\
+#endif/' \
+ -e 's/^#define BFD_HOST_U_64_BIT unsigned \(long \)\?long *$$/#define BFD_HOST_U_64_BIT unsigned BFD_HOST_64_BIT/' \
+ $(d_bin)/$(PF)/include/bfd.h
+
+ : # copy plugin-api.h ...
+ cp -f include/plugin-api.h $(d_bin)/$(PF)/include
+
+ : # We don't need to distribute everything in binutils and -dev
+ rm -rf $(d_bin)/$(PF)/include/obstack.h
+ rm -f $(d_doc)/$(PF)/share/info/configure.* $(d_doc)/$(PF)/share/info/standards.*
+
+ifneq (,$(filter $(DEB_HOST_ARCH),powerpc ppc64 ppc64el))
+ rm -f $(d_bin)/$(PF)/bin/embedspu
+endif
+
+ifeq ($(with_multiarch),yes)
+ : # Now get rid of just about everything in binutils-multiarch
+ rm -rf $(d_mul)/$(PF)/man $(d_mul)/$(PF)/info $(d_mul)/$(PF)/include
+ rm -rf $(d_mul)/$(PF)/share/man $(d_mul)/$(PF)/share/info $(d_mul)/$(PF)/share/locale
+
+ : # elfedit (even with its --input-mach option)
+ : # is the same for all targets.
+ rm -f $(d_mul)/$(PF)/bin/elfedit
+
+ : # c++filt does not link to libbfd for anything more than
+ : # the help message, and its behavior does not vary
+ : # between arches aside from the --version message.
+ rm -f $(d_mul)/$(PF)/bin/c++filt
+
+ : # As gas/README points out (search for --enable-targets),
+ : # multi-arch gas is not ready yet.
+ rm -f $(d_mul)/$(PF)/bin/as
+ rm -f $(d_mul)/$(PF)/bin/ld
+ rm -f $(d_mul)/$(PF)/bin/ld.bfd
+ rm -f $(d_mul)/$(PF)/bin/ld.gold
+
+ ifneq (,$(filter $(DEB_HOST_ARCH),powerpc ppc64 ppc64el))
+ rm -f $(d_mul)/$(PF)/bin/embedspu
+ endif
+ rm -rf $(d_mul)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/ldscripts
+ rm -rf $(d_mul)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/bfd-plugins
+endif
+
+# rm -rf debian/binutils-*-*-*/$(PF)/lib/$(DEB_HOST_MULTIARCH)/ldscripts \
+# debian/binutils-*-gnu/$(PF)/lib/$(DEB_HOST_MULTIARCH)/ldscripts
+
+ $(install_dir) $(d_dev)/$(PF)/include
+ mv $(d_bin)/$(PF)/include/* $(d_dev)/$(PF)/include/
+
+ $(install_dir) $(d_ctf)/$(PF)/lib/$(DEB_HOST_MULTIARCH)
+ mv $(d_bin)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libctf.so.* \
+ $(d_ctf)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/.
+ $(install_dir) $(d_ctfn)/$(PF)/lib/$(DEB_HOST_MULTIARCH)
+ mv $(d_bin)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libctf-nobfd.so.* \
+ $(d_ctfn)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/.
+
+ $(install_dir) $(d_lib)/$(PF)/lib/$(DEB_HOST_MULTIARCH) $(d_dev)/$(PF)/lib/$(DEB_HOST_MULTIARCH)
+ mv $(d_bin)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.a \
+ $(d_bin)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libbfd.so \
+ $(d_bin)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libopcodes.so \
+ $(d_bin)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libctf*.so \
+ $(d_dev)/$(PF)/lib/$(DEB_HOST_MULTIARCH)
+ mv $(d_bin)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.so \
+ $(d_lib)/$(PF)/lib/$(DEB_HOST_MULTIARCH)
+
+ifeq ($(with_multiarch),yes)
+ $(install_dir) $(d_mul)/$(PF)/lib/$(DEB_HOST_MULTIARCH) $(d_mdev)/$(PF)/lib/$(DEB_HOST_MULTIARCH)
+ mv $(d_mul)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libbfd.so \
+ $(d_mdev)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libbfd-multiarch.so
+ mv $(d_mul)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libopcodes.so \
+ $(d_mdev)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libopcodes-multiarch.so
+ mv $(d_mul)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libctf-*.so \
+ $(d_mdev)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/.
+ rm -f $(d_mul)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.la \
+ $(d_mul)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.a
+ rm -f $(d_mul)/$(PF)/lib*/$(DEB_HOST_MULTIARCH)/libiberty*
+endif
+
+ : # Get rid of .la files since libtool obviously has no idea about transient paths
+ rm -f $(d_bin)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.la
+
+ chmod ugo-x $(d_lib)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.so
+ chmod ugo-x $(d_ctf)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.so.*
+ chmod ugo-x $(d_ctfn)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.so.*
+ifeq ($(with_native),yes)
+ $(call strip_package, $(p_lib), $(d_lib))
+ $(call strip_package, $(p_ctf), $(d_ctf))
+ $(call strip_package, $(p_ctfn), $(d_ctfn))
+endif
+ifeq ($(with_multiarch),yes)
+ chmod ugo-x $(d_mul)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.so
+ chmod ugo-x $(d_mul)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.so.*
+ $(call strip_package, $(p_mul), $(d_mul))
+endif
+
+ for i in $(d_dev)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.a; do \
+ echo "lto-stripping $(basename $$i) ..."; \
+ $(STRIP_LTO) $$i; \
+ if which strip-nondeterminism >/dev/null 2>&1; then \
+ echo "strip-nondeterminism $(basename $$i) ..."; \
+ strip-nondeterminism $$i; \
+ fi; \
+ done
+
+ : # Don't want /usr/<arch>-linux to exist in any package
+ rm -rf $(d_bin)/$(PF)/$(DEB_HOST_GNU_TYPE)
+
+ : # Remove windows related manpages
+ rm -f $(d_com)/$(PF)/share/man/man1/{dlltool,nlmconv,windmc,windres}.1
+
+ifeq ($(with_multiarch),yes)
+ rm -rf $(d_mul)/$(PF)/$(DEB_HOST_GNU_TYPE)
+ rm -f $(d_mul)/$(PF)/share/man/man1/{dlltool,nlmconv,windmc,windres}.1
+endif
+
+ rm -f $(d_bin)/$(PF)/bin/ld.bfd
+ mv $(d_bin)/$(PF)/bin/ld $(d_bin)/$(PF)/bin/ld.bfd
+ mv $(d_com)/$(PF)/share/man/man1/ld.1 \
+ $(d_com)/$(PF)/share/man/man1/ld.bfd.1
+ ln -sf $(DEB_HOST_GNU_TYPE)-ld.bfd $(d_bin)/$(PF)/bin/ld
+ $(install_dir) $(d_com)/$(PF)/share/man/man1
+ ln -sf ld.bfd.1.gz $(d_com)/$(PF)/share/man/man1/ld.1.gz
+ifeq ($(with_gold),yes)
+ ln -s ld.gold $(d_bin)/$(PF)/bin/gold
+ ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+ find debian -name '*gold' -o -name '*dwp'
+ if which help2man >/dev/null 2>&1; then \
+ help2man -N -n 'The GNU ELF linker' \
+ $(d_bin)/$(PF)/bin/ld.gold \
+ | sed -e 's,debian/.*-ld.gold,ld.gold,g' \
+ -e 's/$(DEB_HOST_GNU_TYPE)-//g' \
+ > debian/ld.gold.1; \
+ help2man -N -n 'The DWARF packaging utility' \
+ $(d_bin)/$(PF)/bin/dwp \
+ | sed -e 's,debian/.*-dwp,dwp,g' \
+ -e 's/$(DEB_HOST_GNU_TYPE)-//g' \
+ > debian/dwp.1; \
+ fi
+ endif
+ cp debian/dwp.1 $(d_com)/$(PF)/share/man/man1/
+ cp debian/ld.gold.1 $(d_com)/$(PF)/share/man/man1/
+ ln -s ld.gold.1.gz $(d_com)/$(PF)/share/man/man1/gold.1.gz
+
+ : # install a symlink for the gold linker
+ $(install_dir) $(d_bin)/$(PF)/lib/gold-ld
+ ln -s ../../bin/ld.gold $(d_bin)/$(PF)/lib/gold-ld/ld
+endif
+ : # install a symlink for the bfd linker
+ $(install_dir) $(d_bin)/$(PF)/lib/compat-ld
+ ln -s ../../bin/ld.bfd $(d_bin)/$(PF)/lib/compat-ld/ld
+
+ : # Remove empty directory
+ rmdir $(d_bin)/$(PF)/include/
+
+ : # Rename non-prefixed binaries to $(DEB_HOST_GNU_TYPE)- prefixed binaries
+ : # and provide symlinks to the prefixed binaries.
+ $(install_dir) $(d_nat)/$(PF)/bin $(d_nat)/$(PF)/share/man/man1
+ for i in $(programs); do \
+ mv $(d_bin)/$(PF)/bin/$$i $(d_nat)/$(PF)/bin/$(DEB_HOST_GNU_TYPE)-$$i; \
+ ln -sf $(DEB_HOST_GNU_TYPE)-$$i $(d_bin)/$(PF)/bin/$$i; \
+ done
+ ln -sf $(DEB_HOST_GNU_TYPE)-ld.gold $(d_nat)/usr/bin/$(DEB_HOST_GNU_TYPE)-gold
+ for i in $(programs); do \
+ ln -sf $$i.1.gz $(d_nat)/$(PF)/share/man/man1/$(DEB_HOST_GNU_TYPE)-$$i.1.gz; \
+ done
+ifeq ($(with_native),yes)
+ $(call strip_package, $(p_nat), $(d_nat))
+endif
+ifeq ($(with_multiarch),yes)
+ for i in \
+ addr2line ar gprof \
+ nm objcopy objdump ranlib readelf size strings strip; \
+ do \
+ mv $(d_mul)/$(PF)/bin/$$i $(d_mul)/$(PF)/bin/$(DEB_HOST_GNU_TYPE)-$$i; \
+ done
+ rm -f $(d_mul)/$(PF)/bin/embedspu
+endif
+
+ifneq (,$(filter $(DEB_HOST_ARCH),i386 kfreebsd-i386 hurd-i386))
+# temporary i586-* symlinks for stretch/sid
+ ifneq (,$(TRIPLET_SYMLINK))
+ for i in $(programs); do \
+ ln -sf $(DEB_HOST_GNU_TYPE)-$$i $(d_nat)/$(PF)/bin/$(TRIPLET_SYMLINK)-$$i; \
+ ln -sf $(DEB_HOST_GNU_TYPE)-$$i.1.gz $(d_nat)/$(PF)/share/man/man1/$(TRIPLET_SYMLINK)-$$i.1.gz; \
+ done
+ endif
+# temporary i486-* symlinks for jessie/sid
+ ifeq ($(DEB_HOST_GNU_CPU),i586)
+ gnutype=$(subst i586,i486,$(DEB_HOST_GNU_TYPE)); \
+ for i in $(programs); do \
+ ln -sf $(DEB_HOST_GNU_TYPE)-$$i $(d_nat)/$(PF)/bin/$$gnutype-$$i; \
+ ln -sf $(DEB_HOST_GNU_TYPE)-$$i.1.gz $(d_nat)/$(PF)/share/man/man1/$$gnutype-$$i.1.gz; \
+ done
+ endif
+# for backports to wheezy and squeeze
+ ifeq ($(DEB_HOST_GNU_CPU),i486)
+ gnutype=$(subst i486,i586,$(DEB_HOST_GNU_TYPE)); \
+ for i in $(programs); do \
+ ln -sf $(DEB_HOST_GNU_TYPE)-$$i $(d_nat)/$(PF)/bin/$$gnutype-$$i; \
+ ln -sf $(DEB_HOST_GNU_TYPE)-$$i.1.gz $(d_nat)/$(PF)/share/man/man1/$$gnutype-$$i.1.gz; \
+ done
+ endif
+endif
+ touch $@
+
+stamps/install-hppa64: checkroot stamps/build-hppa64
+ $(checkdir)
+
+ rm -fr $(d_hppa64)
+ $(install_dir) $(d_hppa64)
+ $(install_dir) $(d_hppa64)/$(PF)/lib/$(DEB_HOST_MULTIARCH)
+
+ : # install binutils-hppa64 stuff
+ env MAKE="$(MAKE) VERSION=$(HPPA64_VERSION)" \
+ $(MAKE) -C builddir-hppa64 \
+ CFLAGS="$(CFLAGS)" \
+ CXXFLAGS="$(CXXFLAGS)" \
+ LDFLAGS="$(LDFLAGS)" \
+ DESTDIR=$(CURDIR)/$(d_hppa64) install
+
+ : # move shared libs to the standard path
+ mv $(d_hppa64)/$(PF)/$(DEB_HOST_GNU_TYPE)/hppa64-linux-gnu/lib/lib*-*.so \
+ $(d_hppa64)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/.
+ mv $(d_hppa64)/$(PF)/lib/hppa64-linux-gnu/libctf*.so.* \
+ $(d_hppa64)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/.
+
+ : # Now get rid of just about everything in binutils-hppa64
+ rm -rf $(d_hppa64)/$(PF)/man
+ rm -rf $(d_hppa64)/$(PF)/info
+ rm -rf $(d_hppa64)/$(PF)/include
+ rm -rf $(d_hppa64)/$(PF)/share
+ rm -rf $(d_hppa64)/$(PF)/hppa-linux-gnu
+ rm -rf $(d_hppa64)/$(PF)/lib/libiberty.a
+ rm -rf $(d_hppa64)/$(PF)/lib/hppa64-linux-gnu/libctf*
+
+ : # replace hard links with soft links
+ for i in $(d_hppa64)/usr/hppa64-linux-gnu/bin/*; do \
+ ln -sf ../../bin/hppa64-linux-gnu-$$(basename $$i) $$i; \
+ done
+ ln -sf hppa64-linux-gnu-ld.bfd $(d_hppa64)/usr/bin/hppa64-linux-gnu-ld
+
+ $(call strip_package, $(p_hppa64), $(d_hppa64))
+ chmod ugo-x $(d_hppa64)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.so
+ chmod ugo-x $(d_hppa64)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/*.so.*
+
+ : # remove RPATH
+ chrpath -k -d $$(file $(d_hppa64)/usr/bin/*|awk -F: '/ ELF/ {print $$1}')
+
+ : # Don't want /usr/<arch>-linux to exist in any package
+ rm -rf $(d_hppa64)/$(PF)/$(DEB_HOST_GNU_TYPE)
+
+ touch $@
+
+###############################################################################
+
+#######################
+# binary-indep target #
+#######################
+
+binary-indep: checkroot build install
+ $(checkdir)
+
+ rm -f debian/files debian/substvars
+
+# Cross builds do not have documentation packages
+ifeq (,$(TARGET))
+
+ $(install_dir) $(d_doc)/DEBIAN
+
+ifeq ($(GFDL_INVARIANT_FREE),yes)
+ rm -f $(d_doc)/$(PF)/share/info/bfd.info*
+ rm -f $(d_doc)/$(PF)/share/info/bfdint.info*
+ rm -f $(d_doc)/$(PF)/share/info/ldint.info*
+endif
+
+ifneq ($(BACKPORT),true)
+ $(install_dir) $(d_doc)/$(PF)/share/doc/$(p_doc)/
+ $(install_file) debian/changelog $(d_doc)/$(PF)/share/doc/$(p_doc)/changelog.Debian
+ $(install_file) debian/copyright $(d_doc)/$(PF)/share/doc/$(p_doc)/
+ for i in bfd gas gprof ld; do \
+ ln -sf ../$(p_bin)/$$i $(d_doc)/$(PF)/share/doc/$(p_doc)/$$i; \
+ done
+ find $(d_doc)/$(PF)/share/doc/$(p_doc) -maxdepth 1 -type f ! -name copyright | xargs gzip -9n
+ gzip -9n $(d_doc)/$(PF)/share/info/*
+
+ dpkg-gencontrol -P$(d_doc) -p$(p_doc)
+ $(CHOWN) -R root:root $(d_doc)
+ chmod -R go=rX $(d_doc)
+ find $(d_doc) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_doc) ..
+
+ $(install_dir) $(d_src)/$(PF)/share/doc/$(p_src)/
+ $(install_file) debian/changelog $(d_src)/$(PF)/share/doc/$(p_src)/changelog.Debian
+ $(install_file) debian/copyright $(d_src)/$(PF)/share/doc/$(p_src)/
+ find $(d_src)/$(PF)/share/doc/$(p_src) -maxdepth 1 -type f ! -name copyright | xargs gzip -9n
+endif # ifndef BACKPORT
+
+ $(install_dir) $(d_src)/DEBIAN
+ $(install_dir) $(d_src)/$(PF)/src/binutils/patches
+ $(install_file) debian/patches/* $(d_src)/$(PF)/src/binutils/patches/
+ cd .. && find $(source_files) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)' && \
+ find $(source_files) -type f -print0 | LC_ALL=C sort -z | \
+ tar --null -T - -c --xz --exclude=CVS --mode=go=rX,u+rw,a-s \
+ --xform='s=^[^/]*\/=binutils-$(VERSION)/=' \
+ -f $(pwd)/$(d_src)/$(PF)/src/binutils/binutils-$(VERSION).tar.xz \
+ $(source_files)
+
+ tar cf - $$(find './debian' -mindepth 1 \( \
+ -path './debian/binutils*' -type d -prune -o \
+ -path './debian/libbinutils' -type d -prune -o \
+ -path './debian/binutils*-dbg' -type d -prune -o \
+ -path './debian/libbinutils-dbg' -type d -prune -o \
+ -path './debian/patches' -prune -o \
+ -path './debian/libctf*' -type d -prune -o \
+ -path './debian/tmp*' -prune -o \
+ -path './debian/.bzr*' -prune -o \
+ -path './debian/files' -prune -o \
+ -print \) ) \
+ | tar -x -C $(d_src)/$(PF)/src/binutils -f -
+ -chmod 755 $(d_src)/$(PF)/src/binutils/debian/*.{pre,post}{inst,rm}
+ chmod 755 $(d_src)/$(PF)/src/binutils/debian/test-suite-compare.py
+
+ dpkg-gencontrol -P$(d_src) -p$(p_src)
+ $(CHOWN) -R root:root $(d_src)
+ chmod -R go=rX $(d_src)
+ find $(d_src) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_src) ..
+
+
+ $(install_dir) $(d_bld)/DEBIAN $(d_bld)/$(PF)/share/doc/
+ ln -sf $(p_com) $(d_bld)/$(PF)/share/doc/$(p_bld)
+ dpkg-gencontrol -P$(d_bld) -p$(p_bld) -Vbinutils:minver=$(min_ver)
+ $(CHOWN) -R root:root $(d_bld)
+ chmod -R go=rX $(d_bld)
+ find $(d_bld) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_bld) ..
+endif
+
+###############################################################################
+
+#######################
+# binary-arch target #
+#######################
+
+binary.%: stamps/install.% install
+ rm -rf $(D_CROSS)/$(PF)/share/info
+
+ rm -rf $(D_CROSS)/DEBIAN $(D_CROSS)-dbg/DEBIAN
+
+ : # make lintian happy
+ $(install_dir) $(D_CROSS)/$(PF)/share/lintian/overrides
+ sed 's/@PKG@/$(P_CROSS)/' debian/binutils-cross.overrides \
+ > $(D_CROSS)/$(PF)/share/lintian/overrides/$(P_CROSS)
+
+ : # install maintainer scrtips
+ $(install_dir) $(D_CROSS)/$(PF)/share/doc/$(P_CROSS)
+ $(install_file) debian/changelog \
+ $(D_CROSS)/$(PF)/share/doc/$(P_CROSS)/changelog.Debian
+ $(install_file) debian/copyright debian/README.cross \
+ $(D_CROSS)/$(PF)/share/doc/$(P_CROSS)/
+ gzip -9nf $(D_CROSS)/$(PF)/share/doc/$(P_CROSS)/changelog.Debian
+
+ifeq ($(with_check),yes)
+ : # remove user and date from test-summary for reproducible builds
+ sed -i -e '/Test run by/d' test-summary-$*
+ $(install_file) test-summary-$* \
+ $(D_CROSS)/$(PF)/share/doc/$(P_CROSS)/test-summary
+ gzip -9nf $(D_CROSS)/$(PF)/share/doc/$(P_CROSS)/test-summary
+ $(install_dir) $(D_CROSS)/$(PF)/share/doc/$(p_bin)
+ ln -sf ../$(P_CROSS)/test-summary.gz \
+ $(D_CROSS)/$(PF)/share/doc/$(p_bin)/test-summary-$*.gz
+endif
+
+ for pkg in bfd gas gprof ld; do \
+ ln -sf ../binutils/$$pkg \
+ $(D_CROSS)/$(PF)/share/doc/$(P_CROSS)/$$pkg; \
+ done
+
+ $(install_dir) $(D_CROSS)/DEBIAN $(D_CROSS)-dbg/DEBIAN
+ if [ "$(is_rc)" = yes ]; then \
+ nver=$$(echo $(DEB_VERSION_UPSTREAM) | awk -F. '{ OFS="."; NF--; $$NF=$$NF+1; print }'); \
+ else \
+ nver=$$(echo $(DEB_VERSION_UPSTREAM) | awk -F. '{ OFS="."; if (NF > 2) $$NF=$$NF+1; else $$++NF=1; print }'); \
+ fi; \
+ date_ext=$(DATE_EXT); \
+ [ "$(is_rc)" = yes ] && date_ext=; \
+ $(install_file) debian/binutils.triggers $(D_CROSS)/DEBIAN/triggers
+
+ rm -f debian/substvars
+ dpkg-shlibdeps $(D_CROSS)/$(PF)/bin/* -l$(d_lib)/$(PF)/lib/$(DEB_HOST_MULTIARCH)
+ dpkg-gencontrol -P$(D_CROSS) -p$(P_CROSS) \
+ -VBuilt-Using="$(shell dpkg-query -f '$${source:Package} (= $${source:Version}), ' -W binutils-source)"
+ cd $(D_CROSS) && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+ dpkg-gencontrol -P$(D_CROSS)-dbg -p$(P_CROSS)-dbg
+ cd $(D_CROSS)-dbg && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+ $(CHOWN) -R root:root $(D_CROSS) $(D_CROSS)-dbg
+ chmod -R go=rX $(D_CROSS) $(D_CROSS)-dbg
+ find $(D_CROSS) $(D_CROSS)-dbg -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(D_CROSS) ..
+ $(DPKG_DEB) --build $(D_CROSS)-dbg ..
+
+binary-for-host: checkroot
+ $(checkdir)
+
+ rm -fr $(d_hst)
+ $(install_dir) $(d_hst)/DEBIAN/ $(d_hst)/$(PF)/share/doc/
+ ln -sf $(p_com) $(d_hst)/$(PF)/share/doc/$(p_hst)
+
+ rm -f debian/substvars
+ $(for_target) dpkg-gencontrol -P$(d_hst) -p$(p_hst) \
+ -Vbinutils:native=$(if $(TARGET),$(p_cross),$(p_nat)) \
+ -Vbinutils:minver=$(min_ver)
+
+ $(CHOWN) -R root:root $(d_hst)
+ chmod -R go=rX $(d_hst)
+
+ find $(d_hst) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_hst) ..
+
+binary-arch: checkroot binary-native binary-for-host \
+ $(if $(filter yes, $(with_cross)),$(addprefix binary.,$(CROSS_ARCHS)))
+ $(checkdir)
+
+binary-native: checkroot build install $(checkdir)
+
+ifneq ($(BACKPORT),true)
+# Process the following only if $(TARGET) is set
+ifneq (,$(TARGET))
+ rm -rf $(d_cross)/$(PF)/share/info $(d_cross)/$(PF)/share/man
+
+ $(install_dir) $(d_cross)/DEBIAN
+
+ $(install_dir) $(d_cross)/$(PF)/share/doc/$(p_cross)/
+ $(install_file) debian/changelog $(d_cross)/$(PF)/share/doc/$(p_cross)/changelog.Debian
+ $(install_file) debian/copyright debian/README.cross $(d_cross)/$(PF)/share/doc/$(p_cross)/
+ gzip -9nf $(d_cross)/$(PF)/share/doc/$(p_cross)/changelog.Debian
+
+ for pkg in bfd gas gprof ld; do \
+ ln -sf ../binutils/$$pkg $(d_cross)/$(PF)/share/doc/$(p_cross)/$$pkg; \
+ done
+
+ rm -f debian/substvars
+ dpkg-shlibdeps $(d_cross)/$(PF)/bin/* \
+ -ldebian/tmp/$(PF)/lib/$(DEB_TARGET_MULTIARCH) -l$(d_lib)/$(PF)/lib/$(DEB_TARGET_MULTIARCH)
+ dpkg-gencontrol -P$(d_cross) -p$(p_cross) \
+ -VBuilt-Using="$(shell dpkg-query -f '$${source:Package} (= $${source:Version}), ' -W binutils-source)"
+ find $(d_cross) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_cross) ..
+
+else
+ : # generate some control & helper files
+ if [ "$(is_rc)" = yes ]; then \
+ nver=$$(echo $(DEB_VERSION_UPSTREAM) | awk -F. '{ OFS="."; NF--; $$NF=$$NF+1; print }'); \
+ else \
+ nver=$$(echo $(DEB_VERSION_UPSTREAM) | awk -F. '{ OFS="."; if (NF > 2) $$NF=$$NF+1; else $$++NF=1; print }'); \
+ fi; \
+ for i in debian/*.in; do \
+ case "$$i" in debian/control.in|debian/control.cross.in) continue; esac; \
+ date_ext=$(DATE_EXT); \
+ case "$$i" in debian/*.shlibs.in) [ "$(is_rc)" = yes ] && date_ext=; esac; \
+ sed -e 's/@VER@/$(VERSION)/g' \
+ -e 's/@DEB_VER@/$(DEB_VERSION)/g' \
+ -e 's/@DEB_SVER@/$(DEB_SVERSION)/g' \
+ -e 's/@DEB_UVER@/$(DEB_VERSION_UPSTREAM)/g' \
+ -e "s/@DEB_NVER@/$$nver/g" \
+ -e "s/@DATE_EXT@/$$date_ext/g" \
+ -e 's/@DEB_ARCH@/$(DEB_HOST_ARCH)/g' \
+ -e 's/@DEB_MULTIARCH@/$(DEB_HOST_MULTIARCH)/g' \
+ -e 's/@DEB_TRIPLET@/$(DEB_HOST_GNU_TYPE)/g' \
+ -e "s/@dpkg_dev@/$(DPKG_DEV)/" \
+ $$i > $${i%*.in}; \
+ case "$$i" in *.post*|*.pre*) chmod 755 $${i%*.in}; esac; \
+ done
+
+ : # install bug reporting information
+ $(install_file) -D debian/$(p_bin).presubj \
+ $(d_bin)/$(PF)/share/bug/$(p_bin)/presubj
+ifeq ($(with_multiarch),yes)
+ $(install_dir) $(d_mul)/$(PF)/share/bug
+ ln -sf $(p_bin) $(d_mul)/$(PF)/share/bug/$(p_mul)
+endif
+ifeq ($(with_hppa64),yes)
+ $(install_dir) $(d_hppa64)/$(PF)/share/bug
+ ln -sf $(p_bin) $(d_hppa64)/$(PF)/share/bug/$(p_hppa64)
+endif
+
+ : # make lintian happy
+ $(install_file) -D debian/$(p_com).overrides \
+ $(d_com)/$(PF)/share/lintian/overrides/$(p_com)
+ $(install_file) -D debian/$(p_lib).overrides \
+ $(d_lib)/$(PF)/share/lintian/overrides/$(p_lib)
+ $(install_file) -D debian/binutils.overrides \
+ $(d_bin)/$(PF)/share/lintian/overrides/$(p_bin)
+ $(install_dir) $(d_nat)/$(PF)/share/lintian/overrides
+ sed 's/@PKG@/$(p_nat)/' debian/binutils-triplet.overrides \
+ > $(d_nat)/$(PF)/share/lintian/overrides/$(p_nat)
+ifeq ($(with_multiarch),yes)
+ $(install_file) -D debian/$(p_mul).overrides \
+ $(d_mul)/$(PF)/share/lintian/overrides/$(p_mul)
+ $(install_file) -D debian/$(p_mdev).overrides \
+ $(d_mdev)/$(PF)/share/lintian/overrides/$(p_mdev)
+endif
+ifeq ($(with_hppa64),yes)
+ $(install_file) -D debian/$(p_hppa64).overrides \
+ $(d_hppa64)/$(PF)/share/lintian/overrides/$(p_hppa64)
+endif
+
+ : # install maintainer scripts
+ $(install_dir) $(d_bin)/DEBIAN
+
+ $(install_dir) $(d_lib)/DEBIAN $(d_lib)-dbg/DEBIAN
+ $(install_file) debian/binutils.triggers $(d_lib)/DEBIAN/triggers
+ $(install_file) debian/libbinutils.shlibs $(d_lib)/DEBIAN/shlibs
+
+ $(install_dir) $(d_ctf)/DEBIAN $(d_ctf)-dbg/DEBIAN
+ $(install_file) debian/binutils.triggers $(d_ctf)/DEBIAN/triggers
+ $(install_file) debian/libctf0.symbols $(d_ctf)/DEBIAN/symbols
+
+ $(install_dir) $(d_ctfn)/DEBIAN $(d_ctfn)-dbg/DEBIAN
+ $(install_file) debian/binutils.triggers $(d_ctfn)/DEBIAN/triggers
+ $(install_file) debian/libctf-nobfd0.symbols $(d_ctfn)/DEBIAN/symbols
+
+ $(install_dir) $(d_com)/DEBIAN
+
+ $(install_dir) $(d_nat)/DEBIAN $(d_nat)-dbg/DEBIAN
+
+ $(install_dir) $(d_dev)/DEBIAN
+
+ifeq ($(with_multiarch),yes)
+ $(install_dir) $(d_mul)/DEBIAN $(d_mul)-dbg/DEBIAN
+ $(install_script) debian/binutils-multiarch.preinst $(d_mul)/DEBIAN/preinst
+ $(install_script) debian/binutils-multiarch.postinst $(d_mul)/DEBIAN/postinst
+ $(install_script) debian/binutils-multiarch.prerm $(d_mul)/DEBIAN/prerm
+ $(install_script) debian/binutils-multiarch.postrm $(d_mul)/DEBIAN/postrm
+ $(install_file) debian/binutils-multiarch.shlibs $(d_mul)/DEBIAN/shlibs
+ $(install_file) debian/binutils.triggers $(d_mul)/DEBIAN/triggers
+ $(install_dir) $(d_mdev)/DEBIAN
+endif
+
+ifeq ($(with_hppa64),yes)
+ $(install_dir) $(d_hppa64)/DEBIAN $(d_hppa64)-dbg/DEBIAN
+ $(install_file) debian/binutils.triggers $(d_hppa64)/DEBIAN/triggers
+endif
+
+ : # install docs
+ $(install_dir) $(d_bin)/$(PF)/share/doc/$(p_bin)/
+ $(install_file) debian/changelog $(d_bin)/$(PF)/share/doc/$(p_bin)/changelog.Debian
+ $(install_file) debian/copyright $(d_bin)/$(PF)/share/doc/$(p_bin)/
+
+ $(install_dir) $(d_com)/$(PF)/share/doc/$(p_com)/
+ $(install_file) debian/changelog $(d_com)/$(PF)/share/doc/$(p_com)/changelog.Debian
+ $(install_file) debian/copyright $(d_com)/$(PF)/share/doc/$(p_com)/
+
+ $(install_dir) $(d_lib)/$(PF)/share/doc/
+ ln -sf $(p_com) $(d_lib)/$(PF)/share/doc/$(p_lib)
+
+ $(install_dir) $(d_ctf)/$(PF)/share/doc/
+ ln -sf $(p_lib) $(d_ctf)/$(PF)/share/doc/$(p_ctf)
+
+ $(install_dir) $(d_ctfn)/$(PF)/share/doc/$(p_ctfn)
+ $(install_file) debian/changelog $(d_ctfn)/$(PF)/share/doc/$(p_ctfn)/changelog.Debian
+ $(install_file) debian/copyright $(d_ctfn)/$(PF)/share/doc/$(p_ctfn)/
+
+ $(install_dir) $(d_nat)/$(PF)/share/doc/
+ ln -sf $(p_lib) $(d_nat)/$(PF)/share/doc/$(p_nat)
+
+ $(install_dir) $(d_dev)/$(PF)/share/doc/
+ ln -sf $(p_bin) $(d_dev)/$(PF)/share/doc/$(p_dev)
+ifeq ($(with_multiarch),yes)
+ $(install_dir) $(d_mul)/$(PF)/share/doc/
+ ln -sf $(p_bin) $(d_mul)/$(PF)/share/doc/$(p_mul)
+ $(install_dir) $(d_mdev)/$(PF)/share/doc/
+ ln -sf $(p_mul) $(d_mdev)/$(PF)/share/doc/$(p_mdev)
+endif
+ifeq ($(with_hppa64),yes)
+ $(install_dir) $(d_hppa64)/$(PF)/share/doc/
+ ln -sf $(p_bin) $(d_hppa64)/$(PF)/share/doc/$(p_hppa64)
+endif
+
+ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
+ifeq ($(with_check),yes)
+ : # remove user and date from test-summary for reproducible builds
+ sed -i -e '/Test run by/d' $(pwd)/test-summary
+ $(install_dir) $(d_nat)/$(PF)/share/doc/$(p_bin)
+ $(install_file) test-summary \
+ $(d_nat)/$(PF)/share/doc/$(p_bin)/test-summary-$(DEB_HOST_ARCH)
+ gzip -9nf \
+ $(d_nat)/$(PF)/share/doc/$(p_bin)/test-summary-$(DEB_HOST_ARCH)
+
+ : # save log and sum files in $(p_dev)
+ $(install_dir) $(d_dev)/$(PF)/share/doc/$(p_bin)/tests
+ for i in $$(find builddir-single -name '*.sum'); do \
+ b=$$(basename $$i .sum); \
+ $(install_file) $$i $(d_dev)/$(PF)/share/doc/$(p_bin)/tests/$$b.sum; \
+ sed -i -e '/Test run by/d' $(d_dev)/$(PF)/share/doc/$(p_bin)/tests/$$b.sum; \
+ xz -9v $(d_dev)/$(PF)/share/doc/$(p_bin)/tests/$$b.sum; \
+ $(install_file) $${i%.sum}.log $(d_dev)/$(PF)/share/doc/$(p_bin)/tests/$$b.log; \
+ xz -9v $(d_dev)/$(PF)/share/doc/$(p_bin)/tests/$$b.log; \
+ done
+endif
+endif
+ $(install_dir) $(d_com)/$(PF)/share/doc/$(p_bin)
+ $(install_file) binutils/NEWS debian/README.cross \
+ $(d_com)/$(PF)/share/doc/$(p_bin)/
+
+ $(install_file) binutils/ChangeLog $(d_com)/$(PF)/share/doc/$(p_bin)/changelog
+
+ for pkg in bfd gas gprof ld; do \
+ $(install_dir) $(d_com)/$(PF)/share/doc/$(p_bin)/$$pkg; \
+ done
+ $(install_file) bfd/ChangeLog bfd/PORTING bfd/TODO \
+ $(d_com)/$(PF)/share/doc/$(p_bin)/bfd/
+ $(install_file) gas/ChangeLog gas/NEWS $(d_com)/$(PF)/share/doc/$(p_bin)/gas/
+ $(install_file) gprof/ChangeLog gprof/TODO gprof/TEST \
+ $(d_com)/$(PF)/share/doc/$(p_bin)/gprof/
+ $(install_file) ld/ChangeLog ld/TODO ld/NEWS \
+ $(d_com)/$(PF)/share/doc/$(p_bin)/ld/
+
+ : # These only exist in H. J. Lu releases not GNU ones.
+ for dir in binutils bfd gas gprof ld; do \
+ if [ -f $$dir/ChangeLog.linux ]; then \
+ $(install_file) $$dir/ChangeLog.linux $(d_com)/$(PF)/share/doc/$(p_bin)/$$dir/; \
+ fi; \
+ done
+
+ : # Copy bbconv.pl to the doc dir for use by interested people
+ $(install_file) gprof/bbconv.pl $(d_com)/$(PF)/share/doc/$(p_bin)/gprof/.
+
+ : # Compress stuff that needs it
+ gzip -9n $(d_ctfn)/$(PF)/share/doc/$(p_ctfn)/changelog.Debian
+
+ gzip -9n $(d_bin)/$(PF)/share/doc/$(p_bin)/changelog.Debian
+ find $(d_com)/$(PF)/share/doc/$(p_bin)/ -type f ! -name bbconv.pl | xargs gzip -9n
+ gzip -9n $(d_com)/$(PF)/share/doc/$(p_com)/changelog.Debian
+ gzip -9n $(d_com)/$(PF)/share/man/man1/*.1
+
+ : # Finish it all up
+ dpkg-gencontrol -P$(d_bin) -p$(p_bin) \
+ $(CONFLICTS_TARGET_$(DEB_HOST_ARCH)) $(gold_provides) \
+ -Vbinutils:native=$(p_nat)
+ cd $(d_bin) && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+
+ rm -f debian/substvars
+ find $(d_lib) -type f | xargs file | grep ELF | cut -d: -f 1 | xargs dpkg-shlibdeps
+ dpkg-gencontrol -P$(d_lib) -p$(p_lib)
+ cd $(d_lib) && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+ dpkg-gencontrol -P$(d_lib)-dbg -p$(p_lib)-dbg
+ cd $(d_lib)-dbg && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+
+ dpkg-gensymbols -P$(d_ctf) -p$(p_ctf) -l$(d_lib)
+ dpkg-gensymbols -P$(d_ctfn) -p$(p_ctfn)
+
+ rm -f debian/substvars
+ find $(d_ctf) -type f | xargs file | grep ELF | cut -d: -f 1 | xargs dpkg-shlibdeps
+ dpkg-gencontrol -P$(d_ctf) -p$(p_ctf)
+ cd $(d_ctf) && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+ dpkg-gencontrol -P$(d_ctf)-dbg -p$(p_ctf)-dbg
+ cd $(d_ctf)-dbg && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+
+ rm -f debian/substvars
+ find $(d_ctfn) -type f | xargs file | grep ELF | cut -d: -f 1 | xargs dpkg-shlibdeps
+ dpkg-gencontrol -P$(d_ctfn) -p$(p_ctfn)
+ cd $(d_ctfn) && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+ dpkg-gencontrol -P$(d_ctfn)-dbg -p$(p_ctfn)-dbg
+ cd $(d_ctfn)-dbg && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+
+ rm -f debian/substvars
+ dpkg-gencontrol -P$(d_com) -p$(p_com)
+ cd $(d_com) && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+
+ rm -f debian/substvars
+ find $(d_nat) -type f | xargs file | grep ELF | cut -d: -f 1 | xargs dpkg-shlibdeps -l$(d_lib)/$(PF)/lib/$(DEB_HOST_MULTIARCH)
+ dpkg-gencontrol -P$(d_nat) -p$(p_nat) -VextraDepends='libbinutils (= $${binary:Version})'
+ cd $(d_nat) && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+ dpkg-gencontrol -P$(d_nat)-dbg -p$(p_nat)-dbg -VextraDepends='libbinutils (= $${binary:Version})'
+ cd $(d_nat)-dbg && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+
+ rm -f debian/substvars
+ dpkg-gencontrol -P$(d_dev) -p$(p_dev)
+ cd $(d_dev) && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+
+ifeq ($(with_multiarch),yes)
+ rm -f debian/substvars
+ find $(d_mul) -type f | xargs file | grep ELF | cut -d: -f 1 | xargs dpkg-shlibdeps
+ dpkg-gencontrol -P$(d_mul) -p$(p_mul)
+ cd $(d_mul) && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+ dpkg-gencontrol -P$(d_mul)-dbg -p$(p_mul)-dbg
+ cd $(d_mul)-dbg && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+
+ rm -f debian/substvars
+ mkdir -p $(d_mdev)/DEBIAN
+ dpkg-gencontrol -P$(d_mdev) -p$(p_mdev)
+ cd $(d_mdev) && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs -r md5sum > DEBIAN/md5sums
+endif
+
+ifeq ($(with_hppa64),yes)
+ rm -f debian/substvars
+ find $(d_hppa64) -type f | xargs file | grep ELF | cut -d: -f 1 | xargs dpkg-shlibdeps
+ dpkg-gencontrol -P$(d_hppa64) -p$(p_hppa64)
+ cd $(d_hppa64) && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+ dpkg-gencontrol -P$(d_hppa64)-dbg -p$(p_hppa64)-dbg
+ cd $(d_hppa64)-dbg && find -type f ! -regex './DEBIAN/.*' -printf '%P\n' | LC_ALL=C sort | xargs md5sum > DEBIAN/md5sums
+endif
+
+ $(CHOWN) -R root:root $(d_bin) $(d_com) $(d_lib) $(d_lib)-dbg $(d_ctf) $(d_ctf)-dbg $(d_ctfn) $(d_ctfn)-dbg $(d_nat) $(d_nat)-dbg $(d_dev)
+ chmod -R go=rX $(d_bin) $(d_com) $(d_lib) $(d_lib)-dbg $(d_ctf) $(d_ctf)-dbg $(d_ctfn) $(d_ctfn)-dbg $(d_nat) $(d_nat)-dbg $(d_dev)
+ find $(d_bin) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_bin) ..
+ find $(d_com) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_com) ..
+ find $(d_ctf) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_ctf) ..
+ find $(d_ctf)-dbg -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_ctf)-dbg ..
+ find $(d_ctfn) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_ctfn) ..
+ find $(d_ctfn)-dbg -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_ctfn)-dbg ..
+ find $(d_lib) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_lib) ..
+ find $(d_lib)-dbg -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_lib)-dbg ..
+ find $(d_nat) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_nat) ..
+ find $(d_nat)-dbg -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_nat)-dbg ..
+ find $(d_dev) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_dev) ..
+ifeq ($(with_multiarch),yes)
+ $(CHOWN) -R root:root $(d_mul) $(d_mul)-dbg
+ chmod -R go=rX $(d_mul) $(d_mul)-dbg
+ find $(d_mul) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_mul) ..
+ find $(d_mul)-dbg -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_mul)-dbg ..
+
+ $(CHOWN) -R root:root $(d_mdev)
+ chmod -R go=rX $(d_mdev)
+ find $(d_mdev) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_mdev) ..
+endif
+ifeq ($(with_hppa64),yes)
+ $(CHOWN) -R root:root $(d_hppa64)-dbg
+ chmod -R go=rX $(d_hppa64) $(d_hppa64)-dbg
+ find $(d_hppa64) -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_hppa64) ..
+ find $(d_hppa64)-dbg -depth -newermt '$(BUILD_DATE)' -print0 | \
+ xargs -0r touch --no-dereference --date='$(BUILD_DATE)'
+ $(DPKG_DEB) --build $(d_hppa64)-dbg ..
+endif
+ @echo '==================== Build finished ===================='
+ ps aux
+
+endif # Process the following only if $(TARGET) is set
+endif # ifndef BACKPORT
+
+###############################################################################
+
+define checkdir
+ test -f bfd/elf32.c -a -f debian/rules
+endef
+
+# if which pkg_create_dbgsym >/dev/null 2>&1; then \
+# pkg_create_dbgsym $1 $2; \
+# fi
+
+ifeq ($(with_strip),yes)
+# strip_package: <pkgname> <install-dir> <???>
+define strip_package
+ $(install_dir) $(strip $2)-dbg/usr/share/doc/
+ ln -sf $(strip $1) $(strip $2)-dbg/usr/share/doc/$(strip $1)-dbg
+ : # Strip shared libraries and binaries
+ set -e; \
+ nfiles=0; \
+ for i in \
+ $(strip $2)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libbfd-*so \
+ $(strip $2)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libopcodes-*so \
+ $(strip $2)/$(PF)/lib/$(DEB_HOST_MULTIARCH)/libctf*.so.0.0.0 \
+ $$(file $(strip $2)/$(PF)/bin/* |awk -F: '$$0 !~ /script/ {print $$1}'); \
+ do \
+ test ! -h $$i || continue; test -f $$i || continue; \
+ files="$$files $$i"; \
+ nfiles=$$(expr $$nfiles + 1); \
+ done; \
+ for i in $$files; do \
+ id=$$(debugedit --build-id --build-id-seed='$(strip $1)-$(DEB_VERSION)' $$i); \
+ done; \
+ mkdir -p $(strip $2)-dbg/usr/lib/debug/.dwz/$(DEB_HOST_MULTIARCH); \
+ dwz=usr/lib/debug/.dwz/$(DEB_HOST_MULTIARCH)/$(strip $1).debug; \
+ if [ $$nfiles -gt 1 ]; then \
+ dwz -m $(strip $2)-dbg/$$dwz -M /$$dwz $$files; \
+ $(CROSS)objcopy --compress-debug-sections $(strip $2)-dbg/$$dwz; \
+ else \
+ dwz $$files; \
+ fi; \
+ for i in $$files; do \
+ b_id=$$(LC_ALL=C $(CROSS)readelf -n $$i | sed -n 's/ *Build ID: *\([0-9a-f][0-9a-f]*\)/\1/p'); \
+ if [ -z "$$b_id" ]; then \
+ id=$$(echo $$i | sed -r 's,debian/[^/]+,$2-dbg/usr/lib/debug,'); \
+ echo strip $$i; \
+ mkdir -p $$(dirname $$id); \
+ $(CROSS)objcopy --only-keep-debug $$i $$id; \
+ chmod 644 $$id; \
+ $(STRIP) $$i; \
+ $(CROSS)objcopy --add-gnu-debuglink $$id $$i; \
+ else \
+ echo "ID: $${b_id} -> $$(echo $$i | sed 's,$(strip $2),,')"; \
+ d=usr/lib/debug/.build-id/$${b_id:0:2}; \
+ f=$${b_id:2}.debug; \
+ mkdir -p $(strip $2)-dbg/$$d; \
+ $(CROSS)objcopy --only-keep-debug --compress-debug-sections $$i $(strip $2)-dbg/$$d/$$f; \
+ chmod 644 $(strip $2)-dbg/$$d/$$f; \
+ $(STRIP) $$i; \
+ fi; \
+ done
+endef
+else
+define strip_package
+ $(install_dir) $(strip $2)-dbg/usr/share/doc/
+ ln -sf $(strip $1) $(strip $2)-dbg/usr/share/doc/$(strip $1)-dbg
+endef
+endif
+
+remove-gfdl-files:
+ rm -rf .git* .cvs* gdb* libdecnumber readline sim
+ifeq ($(GFDL_INVARIANT_FREE),yes)
+ for i in $(gfdl_toplevel_texinfo_files); do \
+ if [ -f $$i ]; then \
+ sed "s/@name@/$$(basename $$i)/g" debian/gfdl.texi > $$i; \
+ fi; \
+ done
+ rm -f $(gfdl_generated_files)
+ rm -f zlib/contrib/dotzlib/DotZLib.chm
+endif
+
+# Below here is fairly generic really
+
+binary: binary-indep binary-arch
+
+checkroot:
+ $(checkdir)
+ifeq ($(require_root),yes)
+ test root = "`whoami`"
+endif
+
+.PHONY: binary binary-arch binary-indep clean checkroot
+
+.PRECIOUS: stamps/configure.% stamps/build.% stamps/install.%
--- /dev/null
+# handled via diversions
+binutils source: binaries-have-file-conflict
+
+# wrong positive
+binutils source: license-problem-gfdl-invariants
+
+# yes, we know what we are doing
+debian-rules-sets-dpkg-architecture-variable
+
+# test data
+binutils source: source-is-missing binutils/testsuite/binutils-all/nfp/test1_nfp6000.nffw
+binutils source: source-is-missing binutils/testsuite/binutils-all/nfp/test2_nfp6000.nffw
--- /dev/null
+3.0 (quilt)
--- /dev/null
+#!/usr/bin/python3
+
+# Quick'n'dirty regression check for dejagnu testsuites
+# Copyright (C) 2003, 2004, 2005, 2006, 2007 James Troup <james@nocrew.org>
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU;5B General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+################################################################################
+
+import optparse
+import os
+import sys
+
+################################################################################
+
+def fubar(msg, exit_code=1):
+ sys.stderr.write("E: %s\n" % (msg))
+ sys.exit(exit_code)
+
+def warn(msg):
+ sys.stderr.write("W: %s\n" % (msg))
+
+def info(msg):
+ sys.stderr.write("I: %s\n" % (msg))
+
+################################################################################
+
+def read_testsummary(filename):
+ results = {}
+ file = open(filename)
+ for line in file.readlines():
+ if not line:
+ continue
+ if line.startswith("Running"):
+ s = line.split()
+ if "/" in s[1]:
+ x = s[1]
+ if x.find("/testsuite/") == -1:
+ fubar("Can't find /testsuite/ in '%s'." % (x))
+ # 'Running /home/james/debian/packages/binutils/binutils-2.14.90.0.7/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...' -> 'gas/hppa/unsorted/unsorted.exp'
+ # ... since using basename() isn't dupe safe.
+ section = x[x.find("/testsuite/"):].replace("/testsuite/","").split()[0]
+
+ # Tests can be duplicated, e.g. hppa/basic/basic.exp
+ # is run twice, once for hppa-linux and once for
+ # hppa64-linux. This is of course a horrible bodge,
+ # but I can't think of anything trivial and better off
+ # hand.
+
+ if section in results:
+ extra = 1
+ too_many = 10
+ while section in results and extra < too_many:
+ section = "%s.%s" % (section, extra)
+ extra += 1
+ if extra >= too_many:
+ fubar("gave up trying to unduplicate %s." % (section))
+
+ results[section] = {}
+ continue
+
+ got_state = 0
+ for state in [ "PASS", "XPASS", "FAIL", "XFAIL", "UNRESOLVED",
+ "UNTESTED", "UNSUPPORTED" ]:
+ if line.startswith(state):
+ s = line.split(':')
+ state = s[0]
+ test = ':'.join(s[1:]).strip()
+ if test in results:
+ warn("%s/%s is duplicated." % (section, test))
+ results[section][test] = state
+ got_state = 1
+ break
+
+ if got_state:
+ continue
+
+ return results
+
+################################################################################
+
+def compare_results(old, new):
+ total_num = 0
+ pass_count = 0
+ fail_count = 0
+ xfail_count = 0
+ untested_count = 0
+ regression_count = 0
+ progression_count = 0
+ change_count = 0
+
+ for section in list(new.keys()):
+ for test in list(new[section].keys()):
+ state = new[section][test]
+
+ # Stats pr0n
+ total_num += 1
+ if state == "PASS" or state == "XPASS":
+ pass_count += 1
+ elif state == "FAIL" or state == "UNRESOLVED":
+ fail_count += 1
+ elif state == "XFAIL":
+ xfail_count += 1
+ elif state == "UNTESTED":
+ untested_count += 1
+
+ # Compare to old
+ if section not in old:
+ continue
+ if test not in old[section]:
+ continue
+ old_state = old[section][test]
+ if state == "PASS":
+ if old_state != "PASS":
+ progression_count += 1
+ info("[%s] progression (%s -> %s): %s" % (section, old_state, state, test))
+ elif state == "XPASS":
+ if old_state != "XPASS" and old_state != "PASS":
+ progression_count += 1
+ warn("[%s] %s: %s" % (section, state, test))
+ elif state == "FAIL":
+ if old_state != "FAIL":
+ regression_count += 1
+ warn("[%s] REGRESSION (%s -> %s): %s" % (section, old_state, state, test))
+ elif state == "XFAIL":
+ if old_state != "XFAIL":
+ change_count += 1
+ info("[%s] change (%s -> %s): %s" % (section, old_state, state, test))
+ elif state == "UNRESOLVED":
+ if old_state != "UNRESOLVED" and old_state != "FAIL":
+ regression_count += 1
+ warn("[%s] REGRESSION (%s -> %s): %s" % (section, old_state, state, test))
+ if old_state == "FAIL":
+ change_count += 1
+ info("[%s] change (%s -> %s): %s" % (section, old_state, state, test))
+ elif state == "UNTESTED":
+ if old_state != "UNTESTED":
+ change_count += 1
+ warn("[%s] REGRESSION (%s -> %s): %s" % (section, old_state, state, test))
+
+ if regression_count:
+ print("%d REGRESSIONS (%.2f%%)." % (regression_count, (float(regression_count)/total_num)*100))
+ if progression_count:
+ print("%d progressions (%.2f%%)." % (progression_count, (float(progression_count)/total_num)*100))
+
+ if change_count:
+ print("%d changes (%.2f%%)." % (change_count, (float(change_count)/total_num)*100))
+
+ print("%d tests: %d pass (%.2f%%), %d fail (%.2f%%), %d xfail (%.2f%%) %d untested (%.2f%%)." \
+ % (total_num, pass_count, (float(pass_count)/total_num)*100,
+ fail_count, (float(fail_count)/total_num)*100,
+ xfail_count, (float(xfail_count)/total_num)*100,
+ untested_count, (float(untested_count)/total_num)*100))
+
+ if regression_count:
+ sys.exit(1)
+
+################################################################################
+
+def compare_multiple(directory, first_version, second_version):
+ architectures = [ "alpha", "arm", "hppa", "i386", "ia64", "mips",
+ "m68k", "mipsel", "powerpc", "s390", "sparc" ]
+
+ for arch in architectures:
+ print("*********************************** %s ******************************" % (arch))
+ second_filename = "%s/%s_%s" % (directory, second_version, arch)
+ if not os.path.exists(second_filename):
+ print(" -- NOT AVAILABLE --")
+ continue
+
+ new = read_testsummary(second_filename)
+ first_filename = "%s/%s_%s" % (directory, first_version, arch)
+ old = read_testsummary(first_filename)
+ compare_results(old, new)
+
+################################################################################
+
+def init():
+ """Initalization, including parsing of options."""
+
+ usage = """usage: %prog [OPTIONS] <OLD> <NEW>
+compare (binutils) dejagnu testsuite results.
+
+Example usage:
+
+ test-suite-compare.py binutils-2.17/test-summary binutils-2.18/test-summary
+
+Or to compare across all architectures (with test results stored in a
+'test-summary' directory):
+
+ test-suite-compare.py -mtest-summary 2.17-3 2.18-1"""
+ parser = optparse.OptionParser(usage)
+ parser.add_option("-m", "--multiple", dest="multiple",
+ nargs=1, type="string",
+ help="compare multiple architectures")
+ (options, args) = parser.parse_args()
+
+ if len(args) > 2 or len(args) < 2:
+ parser.error("takes 2 arguments (old and new)")
+ (old_version, new_version) = args
+
+ return options, old_version, new_version
+
+################################################################################
+
+def main():
+ (options, old_version, new_version) = init()
+ if options.multiple:
+ compare_multiple(options.multiple, old_version, new_version)
+ else:
+ old = read_testsummary(old_version)
+ new = read_testsummary(new_version)
+ compare_results(old, new)
+
+################################################################################
+
+if __name__ == '__main__':
+ main()
--- /dev/null
+#!/bin/sh
+
+set -e
+
+CPUS=$(getconf _NPROCESSORS_ONLN)
+case "$CPUS" in
+ [0-9]|[0-9][0-9]|[0-9][0-9][0-9]) ;;
+ *) CPUS=1
+esac
+
+if [ -n "${DEB_HOST_ARCH:-}" ]; then
+ CROSS="-a$DEB_HOST_ARCH"
+else
+ CROSS=
+fi
+
+echo "Memory on this machine:"
+egrep '^(Mem|Swap)' /proc/meminfo || true
+
+set -x
+DEB_BUILD_OPTIONS="parallel=$CPUS nohppa nomult nocross" dpkg-buildpackage -d -B --no-sign $CROSS
--- /dev/null
+Tests: build
+# this doesn't work well, without building -hppa, -multiarch and -cross packages
+#Depends: build-essential
+#Restrictions: build-needed
+Depends: build-essential,
+ fakeroot,
+ autoconf (>= 2.64),
+ bison, flex, gettext, texinfo, dejagnu, quilt, chrpath, dwz, debugedit (>= 4.16),
+ python3:any, file, xz-utils, lsb-release, zlib1g-dev, procps, libstdc++-dev
+# build process emits warnings on stderr
+Restrictions: allow-stderr
+
+Tests: libc-link
+Depends: build-essential
+
+Tests: shlib-build
+Depends: build-essential
--- /dev/null
+#!/bin/sh
+# autopkgtest check: Build and run a simple program against libc, to verify
+# basic binutils compile-time and run-time linking functionality.
+#
+# (C) 2012 Canonical Ltd.
+# Author: Martin Pitt <martin.pitt@ubuntu.com>
+
+set -e
+
+WORKDIR=$(mktemp -d)
+trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM
+cd $WORKDIR
+cat <<EOF > libctest.c
+#include <string.h>
+#include <assert.h>
+
+int main()
+{
+ assert (1 > 0);
+ assert (strcmp ("hello", "hello") == 0);
+ return 0;
+}
+EOF
+
+gcc -o libctest libctest.c
+echo "build: OK"
+[ -x libctest ]
+./libctest
+echo "run: OK"
--- /dev/null
+#!/bin/sh
+# autopkgtest check: Build and link against a simple shared library, to test
+# basic binutils compile-time and run-time linking functionality.
+#
+# (C) 2012 Canonical Ltd.
+# Author: Martin Pitt <martin.pitt@ubuntu.com>
+
+set -e
+
+WORKDIR=$(mktemp -d)
+trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM
+cd $WORKDIR
+cat <<EOF > testlib.c
+
+int ultimate_answer()
+{
+ return 42;
+}
+EOF
+
+gcc -Wall -Werror -shared -o libultimate.so testlib.c
+echo "library build: OK"
+
+# should export the symbol
+nm -D libultimate.so | grep -q 'T ultimate_answer'
+
+# link it against a program
+cat <<EOF > testprog.c
+#include <assert.h>
+
+int ultimate_answer();
+
+int main()
+{
+ assert (ultimate_answer() == 42);
+ return 0;
+}
+EOF
+
+gcc -Wall -Werror -L . -o testprog testprog.c -lultimate
+echo "program build: OK"
+[ -x testprog ]
+LD_LIBRARY_PATH=. ./testprog
+echo "run: OK"
--- /dev/null
+version=2
+http://ftp.gnu.org/gnu/binutils/binutils-([\d\.]*).tar.gz