aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorArsen Arsenovi? <arsen@aarsen.me>2023-11-15 12:53:04 +0000
committerNick Clifton <nickc@redhat.com>2023-11-15 12:53:04 +0000
commit862776f26a59516467c98091994c3dac90383159 (patch)
treeb48da9bda94c09314c1a19ee0309126d380762f2 /ld
parent42fb2f0b0978305e218a9493cde92447583771f1 (diff)
downloadfsf-binutils-gdb-862776f26a59516467c98091994c3dac90383159.zip
fsf-binutils-gdb-862776f26a59516467c98091994c3dac90383159.tar.gz
fsf-binutils-gdb-862776f26a59516467c98091994c3dac90383159.tar.bz2
Finalized intl-update patches
* intl: Remove directory. Replaced with out-of-tree GNU gettext. * .gitignore: Add '/gettext*'. * configure.ac (host_libs): Replace intl with gettext. (hbaseargs, bbaseargs, baseargs): Split baseargs into {h,b}baseargs. (skip_barg): New flag. Skips appending current flag to bbaseargs. <library exemptions>: Exempt --with-libintl-{type,prefix} from target and build machine argument passing. * configure: Regenerate. * Makefile.def (host_modules): Replace intl module with gettext module. (configure-ld): Depend on configure-gettext. * Makefile.in: Regenerate. * src-release.sh: Remove references to the intl/ directory.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog7
-rw-r--r--ld/Makefile.in11
-rw-r--r--ld/aclocal.m46
-rw-r--r--ld/config.in18
-rwxr-xr-xld/configure2107
-rw-r--r--ld/po/ld.pot4556
6 files changed, 4471 insertions, 2234 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 287e2cf..a30d3ad 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,10 @@
+2023-11-15 Arsen Arsenović <arsen@aarsen.me>
+
+ * aclocal.m4: Regenerate.
+ * configure: Regenerate.
+ * po/Make-in ($(srcdir)/$(PACKAGE).pot): Output to a .pot
+ temporary file, to suppress xgettext checking charset names.
+
2023-11-14 Nick Clifton <nickc@redhat.com>
PR 28910
diff --git a/ld/Makefile.in b/ld/Makefile.in
index afd22d4..d025227 100644
--- a/ld/Makefile.in
+++ b/ld/Makefile.in
@@ -116,10 +116,16 @@ am__aclocal_m4_deps = $(top_srcdir)/../bfd/acinclude.m4 \
$(top_srcdir)/../config/depstand.m4 \
$(top_srcdir)/../config/enable.m4 \
$(top_srcdir)/../config/gettext-sister.m4 \
+ $(top_srcdir)/../config/gettext.m4 \
+ $(top_srcdir)/../config/iconv.m4 \
+ $(top_srcdir)/../config/intlmacosx.m4 \
$(top_srcdir)/../config/jobserver.m4 \
$(top_srcdir)/../config/largefile.m4 \
$(top_srcdir)/../config/lcmessage.m4 \
$(top_srcdir)/../config/lead-dot.m4 \
+ $(top_srcdir)/../config/lib-ld.m4 \
+ $(top_srcdir)/../config/lib-link.m4 \
+ $(top_srcdir)/../config/lib-prefix.m4 \
$(top_srcdir)/../config/nls.m4 \
$(top_srcdir)/../config/override.m4 \
$(top_srcdir)/../config/pkg.m4 \
@@ -407,6 +413,8 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
+INTLLIBS = @INTLLIBS@
+INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
JANSSON_CFLAGS = @JANSSON_CFLAGS@
JANSSON_LIBS = @JANSSON_LIBS@
LARGEFILE_CPPFLAGS = @LARGEFILE_CPPFLAGS@
@@ -415,6 +423,7 @@ LDFLAGS = @LDFLAGS@
LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
LEXLIB = @LEXLIB@
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
+LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LIBINTL_DEP = @LIBINTL_DEP@
LIBOBJS = @LIBOBJS@
@@ -431,6 +440,8 @@ LIBTOOL = @LIBTOOL@
LIB_PATH = @LIB_PATH@
LIPO = @LIPO@
LN_S = @LN_S@
+LTLIBICONV = @LTLIBICONV@
+LTLIBINTL = @LTLIBINTL@
LTLIBOBJS = @LTLIBOBJS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
diff --git a/ld/aclocal.m4 b/ld/aclocal.m4
index 893e973..d9feb98 100644
--- a/ld/aclocal.m4
+++ b/ld/aclocal.m4
@@ -1192,10 +1192,16 @@ m4_include([../config/bfd64.m4])
m4_include([../config/depstand.m4])
m4_include([../config/enable.m4])
m4_include([../config/gettext-sister.m4])
+m4_include([../config/gettext.m4])
+m4_include([../config/iconv.m4])
+m4_include([../config/intlmacosx.m4])
m4_include([../config/jobserver.m4])
m4_include([../config/largefile.m4])
m4_include([../config/lcmessage.m4])
m4_include([../config/lead-dot.m4])
+m4_include([../config/lib-ld.m4])
+m4_include([../config/lib-link.m4])
+m4_include([../config/lib-prefix.m4])
m4_include([../config/nls.m4])
m4_include([../config/override.m4])
m4_include([../config/pkg.m4])
diff --git a/ld/config.in b/ld/config.in
index e3a983f..86d90d5 100644
--- a/ld/config.in
+++ b/ld/config.in
@@ -72,9 +72,21 @@
/* Define to choose default GOT handling scheme */
#undef GOT_HANDLING_DEFAULT
+/* Define to 1 if you have the Mac OS X function
+ CFLocaleCopyPreferredLanguages in the CoreFoundation framework. */
+#undef HAVE_CFLOCALECOPYPREFERREDLANGUAGES
+
+/* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in
+ the CoreFoundation framework. */
+#undef HAVE_CFPREFERENCESCOPYAPPVALUE
+
/* Define to 1 if you have the `close' function. */
#undef HAVE_CLOSE
+/* Define if the GNU dcgettext() function is already present or preinstalled.
+ */
+#undef HAVE_DCGETTEXT
+
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
don't. */
#undef HAVE_DECL_ASPRINTF
@@ -102,9 +114,15 @@
/* Define to 1 if you have the `getpagesize' function. */
#undef HAVE_GETPAGESIZE
+/* Define if the GNU gettext() function is already present or preinstalled. */
+#undef HAVE_GETTEXT
+
/* Define to 1 if you have the `glob' function. */
#undef HAVE_GLOB
+/* Define if you have the iconv() function and it works. */
+#undef HAVE_ICONV
+
/* Define .init_array/.fini_array sections are available and working. */
#undef HAVE_INITFINI_ARRAY
diff --git a/ld/configure b/ld/configure
index 46d9f3c..07eb669 100755
--- a/ld/configure
+++ b/ld/configure
@@ -629,6 +629,7 @@ ac_includes_default="\
# include <unistd.h>
#endif"
+gt_needs=
ac_header_list=
ac_subst_vars='am__EXEEXT_FALSE
am__EXEEXT_TRUE
@@ -660,21 +661,26 @@ LEX_OUTPUT_ROOT
LEX
YFLAGS
YACC
-MSGMERGE
-MSGFMT
-MKINSTALLDIRS
CATOBJEXT
GENCAT
INSTOBJEXT
DATADIRNAME
CATALOGS
-POSUB
-GMSGFMT
-XGETTEXT
INCINTL
LIBINTL_DEP
+POSUB
+LTLIBINTL
LIBINTL
+INTLLIBS
+LTLIBICONV
+LIBICONV
+INTL_MACOSX_LIBS
+MSGMERGE
+XGETTEXT
+GMSGFMT
+MSGFMT
USE_NLS
+MKINSTALLDIRS
WARN_WRITE_STRINGS
NO_WERROR
WARN_CFLAGS_FOR_BUILD
@@ -859,6 +865,11 @@ enable_jansson
enable_werror
enable_build_warnings
enable_nls
+enable_rpath
+with_libiconv_prefix
+with_libiconv_type
+with_libintl_prefix
+with_libintl_type
with_system_zlib
with_zstd
'
@@ -1557,6 +1568,7 @@ Optional Features:
--enable-werror treat compile warnings as errors
--enable-build-warnings enable build-time compiler warnings
--disable-nls do not use Native Language Support
+ --disable-rpath do not hardcode runtime library paths
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
@@ -1566,6 +1578,13 @@ Optional Packages:
--with-gnu-ld assume the C compiler uses GNU ld [default=no]
--with-lib-path=dir1:dir2... set default LIB_PATH
--with-sysroot=DIR Search for usr/lib et al within DIR.
+ --with-gnu-ld assume the C compiler uses GNU ld default=no
+ --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib
+ --without-libiconv-prefix don't search for libiconv in includedir and libdir
+ --with-libiconv-type=TYPE type of library to search for (auto/static/shared)
+ --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib
+ --without-libintl-prefix don't search for libintl in includedir and libdir
+ --with-libintl-type=TYPE type of library to search for (auto/static/shared)
--with-system-zlib use installed libz
--with-zstd support zstd compressed debug sections
(default=auto)
@@ -2661,6 +2680,7 @@ $as_echo "$as_me: creating cache $cache_file" >&6;}
>$cache_file
fi
+gt_needs="$gt_needs "
as_fn_append ac_header_list " stdlib.h"
as_fn_append ac_header_list " unistd.h"
as_fn_append ac_header_list " sys/param.h"
@@ -11661,7 +11681,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11664 "configure"
+#line 11684 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11767,7 +11787,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11770 "configure"
+#line 11790 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -16135,19 +16155,1928 @@ fi
# host-specific stuff:
ALL_LINGUAS="bg da de es fi fr ga id it ja pt_BR ru sr sv tr uk vi zh_CN zh_TW"
-# If we haven't got the data from the intl directory,
-# assume NLS is disabled.
-USE_NLS=no
-LIBINTL=
-LIBINTL_DEP=
-INCINTL=
-XGETTEXT=
-GMSGFMT=
-POSUB=
-
-if test -f ../intl/config.intl; then
- . ../intl/config.intl
+
+ MKINSTALLDIRS=
+ if test -n "$ac_aux_dir"; then
+ case "$ac_aux_dir" in
+ /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;;
+ *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;;
+ esac
+ fi
+ if test -z "$MKINSTALLDIRS"; then
+ MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
+ fi
+
+
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5
+$as_echo_n "checking whether NLS is requested... " >&6; }
+ # Check whether --enable-nls was given.
+if test "${enable_nls+set}" = set; then :
+ enableval=$enable_nls; USE_NLS=$enableval
+else
+ USE_NLS=yes
+fi
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5
+$as_echo "$USE_NLS" >&6; }
+
+
+
+
+
+
+# Prepare PATH_SEPARATOR.
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conf$$.sh
+ echo "exit 0" >>conf$$.sh
+ chmod +x conf$$.sh
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
+ fi
+ rm -f conf$$.sh
+fi
+
+# Find out how to test for executable files. Don't use a zero-byte file,
+# as systems may use methods other than mode bits to determine executability.
+cat >conf$$.file <<_ASEOF
+#! /bin/sh
+exit 0
+_ASEOF
+chmod +x conf$$.file
+if test -x conf$$.file >/dev/null 2>&1; then
+ ac_executable_p="test -x"
+else
+ ac_executable_p="test -f"
+fi
+rm -f conf$$.file
+
+# Extract the first word of "msgfmt", so it can be a program name with args.
+set dummy msgfmt; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_MSGFMT+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case "$MSGFMT" in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
+ ;;
+ *)
+ ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
+ for ac_dir in $PATH; do
+ IFS="$ac_save_IFS"
+ test -z "$ac_dir" && ac_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
+ if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 &&
+ (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
+ ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext"
+ break 2
+ fi
+ fi
+ done
+ done
+ IFS="$ac_save_IFS"
+ test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":"
+ ;;
+esac
+fi
+MSGFMT="$ac_cv_path_MSGFMT"
+if test "$MSGFMT" != ":"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5
+$as_echo "$MSGFMT" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+ # Extract the first word of "gmsgfmt", so it can be a program name with args.
+set dummy gmsgfmt; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_GMSGFMT+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $GMSGFMT in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
+
+ test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
+ ;;
+esac
+fi
+GMSGFMT=$ac_cv_path_GMSGFMT
+if test -n "$GMSGFMT"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5
+$as_echo "$GMSGFMT" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+
+
+# Prepare PATH_SEPARATOR.
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conf$$.sh
+ echo "exit 0" >>conf$$.sh
+ chmod +x conf$$.sh
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
+ fi
+ rm -f conf$$.sh
+fi
+
+# Find out how to test for executable files. Don't use a zero-byte file,
+# as systems may use methods other than mode bits to determine executability.
+cat >conf$$.file <<_ASEOF
+#! /bin/sh
+exit 0
+_ASEOF
+chmod +x conf$$.file
+if test -x conf$$.file >/dev/null 2>&1; then
+ ac_executable_p="test -x"
+else
+ ac_executable_p="test -f"
+fi
+rm -f conf$$.file
+
+# Extract the first word of "xgettext", so it can be a program name with args.
+set dummy xgettext; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_XGETTEXT+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case "$XGETTEXT" in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
+ ;;
+ *)
+ ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
+ for ac_dir in $PATH; do
+ IFS="$ac_save_IFS"
+ test -z "$ac_dir" && ac_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
+ if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 &&
+ (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
+ ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext"
+ break 2
+ fi
+ fi
+ done
+ done
+ IFS="$ac_save_IFS"
+ test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
+ ;;
+esac
+fi
+XGETTEXT="$ac_cv_path_XGETTEXT"
+if test "$XGETTEXT" != ":"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5
+$as_echo "$XGETTEXT" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+ rm -f messages.po
+
+
+# Prepare PATH_SEPARATOR.
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conf$$.sh
+ echo "exit 0" >>conf$$.sh
+ chmod +x conf$$.sh
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
+ fi
+ rm -f conf$$.sh
+fi
+
+# Find out how to test for executable files. Don't use a zero-byte file,
+# as systems may use methods other than mode bits to determine executability.
+cat >conf$$.file <<_ASEOF
+#! /bin/sh
+exit 0
+_ASEOF
+chmod +x conf$$.file
+if test -x conf$$.file >/dev/null 2>&1; then
+ ac_executable_p="test -x"
+else
+ ac_executable_p="test -f"
fi
+rm -f conf$$.file
+
+# Extract the first word of "msgmerge", so it can be a program name with args.
+set dummy msgmerge; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_MSGMERGE+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case "$MSGMERGE" in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path.
+ ;;
+ *)
+ ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
+ for ac_dir in $PATH; do
+ IFS="$ac_save_IFS"
+ test -z "$ac_dir" && ac_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
+ if $ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1; then
+ ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext"
+ break 2
+ fi
+ fi
+ done
+ done
+ IFS="$ac_save_IFS"
+ test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":"
+ ;;
+esac
+fi
+MSGMERGE="$ac_cv_path_MSGMERGE"
+if test "$MSGMERGE" != ":"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5
+$as_echo "$MSGMERGE" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
+ if test "$GMSGFMT" != ":"; then
+ if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 &&
+ (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
+ : ;
+ else
+ GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'`
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5
+$as_echo "found $GMSGFMT program is not GNU msgfmt; ignore it" >&6; }
+ GMSGFMT=":"
+ fi
+ fi
+
+ if test "$XGETTEXT" != ":"; then
+ if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 &&
+ (if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
+ : ;
+ else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5
+$as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; }
+ XGETTEXT=":"
+ fi
+ rm -f messages.po
+ fi
+
+ ac_config_commands="$ac_config_commands default-1"
+
+
+
+ if test "X$prefix" = "XNONE"; then
+ acl_final_prefix="$ac_default_prefix"
+ else
+ acl_final_prefix="$prefix"
+ fi
+ if test "X$exec_prefix" = "XNONE"; then
+ acl_final_exec_prefix='${prefix}'
+ else
+ acl_final_exec_prefix="$exec_prefix"
+ fi
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ eval acl_final_exec_prefix=\"$acl_final_exec_prefix\"
+ prefix="$acl_save_prefix"
+
+
+# Check whether --with-gnu-ld was given.
+if test "${with_gnu_ld+set}" = set; then :
+ withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
+else
+ with_gnu_ld=no
+fi
+
+# Prepare PATH_SEPARATOR.
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conf$$.sh
+ echo "exit 0" >>conf$$.sh
+ chmod +x conf$$.sh
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
+ fi
+ rm -f conf$$.sh
+fi
+ac_prog=ld
+if test "$GCC" = yes; then
+ # Check if gcc -print-prog-name=ld gives a path.
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by GCC" >&5
+$as_echo_n "checking for ld used by GCC... " >&6; }
+ case $host in
+ *-*-mingw*)
+ # gcc leaves a trailing carriage return which upsets mingw
+ ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
+ *)
+ ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
+ esac
+ case $ac_prog in
+ # Accept absolute paths.
+ [\\/]* | [A-Za-z]:[\\/]*)
+ re_direlt='/[^/][^/]*/\.\./'
+ # Canonicalize the path of ld
+ ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
+ while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
+ ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
+ done
+ test -z "$LD" && LD="$ac_prog"
+ ;;
+ "")
+ # If it fails, then pretend we aren't using GCC.
+ ac_prog=ld
+ ;;
+ *)
+ # If it is relative, then search for the first ld in PATH.
+ with_gnu_ld=unknown
+ ;;
+ esac
+elif test "$with_gnu_ld" = yes; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5
+$as_echo_n "checking for GNU ld... " >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
+$as_echo_n "checking for non-GNU ld... " >&6; }
+fi
+if ${acl_cv_path_LD+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ if test -z "$LD"; then
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
+ for ac_dir in $PATH; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
+ acl_cv_path_LD="$ac_dir/$ac_prog"
+ # Check to see if the program is GNU ld. I'd rather use --version,
+ # but apparently some GNU ld's only accept -v.
+ # Break only if it was the GNU/non-GNU ld that we prefer.
+ if "$acl_cv_path_LD" -v 2>&1 < /dev/null | $EGREP '(GNU|with BFD)' > /dev/null; then
+ test "$with_gnu_ld" != no && break
+ else
+ test "$with_gnu_ld" != yes && break
+ fi
+ fi
+ done
+ IFS="$ac_save_ifs"
+else
+ acl_cv_path_LD="$LD" # Let the user override the test with a path.
+fi
+fi
+
+LD="$acl_cv_path_LD"
+if test -n "$LD"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5
+$as_echo "$LD" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
+$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
+if ${acl_cv_prog_gnu_ld+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ # I'd rather use --version here, but apparently some GNU ld's only accept -v.
+if $LD -v 2>&1 </dev/null | $EGREP '(GNU|with BFD)' 1>&5; then
+ acl_cv_prog_gnu_ld=yes
+else
+ acl_cv_prog_gnu_ld=no
+fi
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_prog_gnu_ld" >&5
+$as_echo "$acl_cv_prog_gnu_ld" >&6; }
+with_gnu_ld=$acl_cv_prog_gnu_ld
+
+
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5
+$as_echo_n "checking for shared library run path origin... " >&6; }
+if ${acl_cv_rpath+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+
+ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \
+ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh
+ . ./conftest.sh
+ rm -f ./conftest.sh
+ acl_cv_rpath=done
+
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5
+$as_echo "$acl_cv_rpath" >&6; }
+ wl="$acl_cv_wl"
+ libext="$acl_cv_libext"
+ shlibext="$acl_cv_shlibext"
+ hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec"
+ hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator"
+ hardcode_direct="$acl_cv_hardcode_direct"
+ hardcode_minus_L="$acl_cv_hardcode_minus_L"
+ # Check whether --enable-rpath was given.
+if test "${enable_rpath+set}" = set; then :
+ enableval=$enable_rpath; :
+else
+ enable_rpath=yes
+fi
+
+
+
+
+
+
+
+
+ use_additional=yes
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
+
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+
+# Check whether --with-libiconv-prefix was given.
+if test "${with_libiconv_prefix+set}" = set; then :
+ withval=$with_libiconv_prefix;
+ if test "X$withval" = "Xno"; then
+ use_additional=no
+ else
+ if test "X$withval" = "X"; then
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
+
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ else
+ additional_includedir="$withval/include"
+ additional_libdir="$withval/lib"
+ fi
+ fi
+
+fi
+
+
+# Check whether --with-libiconv-type was given.
+if test "${with_libiconv_type+set}" = set; then :
+ withval=$with_libiconv_type; with_libiconv_type=$withval
+else
+ with_libiconv_type=auto
+fi
+
+ lib_type=`eval echo \$with_libiconv_type`
+
+ LIBICONV=
+ LTLIBICONV=
+ INCICONV=
+ rpathdirs=
+ ltrpathdirs=
+ names_already_handled=
+ names_next_round='iconv '
+ while test -n "$names_next_round"; do
+ names_this_round="$names_next_round"
+ names_next_round=
+ for name in $names_this_round; do
+ already_handled=
+ for n in $names_already_handled; do
+ if test "$n" = "$name"; then
+ already_handled=yes
+ break
+ fi
+ done
+ if test -z "$already_handled"; then
+ names_already_handled="$names_already_handled $name"
+ uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
+ eval value=\"\$HAVE_LIB$uppername\"
+ if test -n "$value"; then
+ if test "$value" = yes; then
+ eval value=\"\$LIB$uppername\"
+ test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value"
+ eval value=\"\$LTLIB$uppername\"
+ test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value"
+ else
+ :
+ fi
+ else
+ found_dir=
+ found_la=
+ found_so=
+ found_a=
+ if test $use_additional = yes; then
+ if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext" && test x$lib_type != xstatic; then
+ found_dir="$additional_libdir"
+ found_so="$additional_libdir/lib$name.$shlibext"
+ if test -f "$additional_libdir/lib$name.la"; then
+ found_la="$additional_libdir/lib$name.la"
+ fi
+ elif test x$lib_type != xshared; then
+ if test -f "$additional_libdir/lib$name.$libext"; then
+ found_dir="$additional_libdir"
+ found_a="$additional_libdir/lib$name.$libext"
+ if test -f "$additional_libdir/lib$name.la"; then
+ found_la="$additional_libdir/lib$name.la"
+ fi
+ fi
+ fi
+ fi
+ if test "X$found_dir" = "X"; then
+ for x in $LDFLAGS $LTLIBICONV; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ case "$x" in
+ -L*)
+ dir=`echo "X$x" | sed -e 's/^X-L//'`
+ if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext" && test x$lib_type != xstatic; then
+ found_dir="$dir"
+ found_so="$dir/lib$name.$shlibext"
+ if test -f "$dir/lib$name.la"; then
+ found_la="$dir/lib$name.la"
+ fi
+ elif test x$lib_type != xshared; then
+ if test -f "$dir/lib$name.$libext"; then
+ found_dir="$dir"
+ found_a="$dir/lib$name.$libext"
+ if test -f "$dir/lib$name.la"; then
+ found_la="$dir/lib$name.la"
+ fi
+ fi
+ fi
+ ;;
+ esac
+ if test "X$found_dir" != "X"; then
+ break
+ fi
+ done
+ fi
+ if test "X$found_dir" != "X"; then
+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name"
+ if test "X$found_so" != "X"; then
+ if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
+ else
+ haveit=
+ for x in $ltrpathdirs; do
+ if test "X$x" = "X$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ ltrpathdirs="$ltrpathdirs $found_dir"
+ fi
+ if test "$hardcode_direct" = yes; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
+ else
+ if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
+ haveit=
+ for x in $rpathdirs; do
+ if test "X$x" = "X$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ rpathdirs="$rpathdirs $found_dir"
+ fi
+ else
+ haveit=
+ for x in $LDFLAGS $LIBICONV; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir"
+ fi
+ if test "$hardcode_minus_L" != no; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so"
+ else
+ LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name"
+ fi
+ fi
+ fi
+ fi
+ else
+ if test "X$found_a" != "X"; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a"
+ else
+ LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name"
+ fi
+ fi
+ additional_includedir=
+ case "$found_dir" in
+ */lib | */lib/)
+ basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'`
+ additional_includedir="$basedir/include"
+ ;;
+ esac
+ if test "X$additional_includedir" != "X"; then
+ if test "X$additional_includedir" != "X/usr/include"; then
+ haveit=
+ if test "X$additional_includedir" = "X/usr/local/include"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux*) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ for x in $CPPFLAGS $INCICONV; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-I$additional_includedir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_includedir"; then
+ INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir"
+ fi
+ fi
+ fi
+ fi
+ fi
+ if test -n "$found_la"; then
+ save_libdir="$libdir"
+ case "$found_la" in
+ */* | *\\*) . "$found_la" ;;
+ *) . "./$found_la" ;;
+ esac
+ libdir="$save_libdir"
+ for dep in $dependency_libs; do
+ case "$dep" in
+ -L*)
+ additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
+ if test "X$additional_libdir" != "X/usr/lib"; then
+ haveit=
+ if test "X$additional_libdir" = "X/usr/local/lib"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux*) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ haveit=
+ for x in $LDFLAGS $LIBICONV; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$additional_libdir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_libdir"; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir"
+ fi
+ fi
+ haveit=
+ for x in $LDFLAGS $LTLIBICONV; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$additional_libdir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_libdir"; then
+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir"
+ fi
+ fi
+ fi
+ fi
+ ;;
+ -R*)
+ dir=`echo "X$dep" | sed -e 's/^X-R//'`
+ if test "$enable_rpath" != no; then
+ haveit=
+ for x in $rpathdirs; do
+ if test "X$x" = "X$dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ rpathdirs="$rpathdirs $dir"
+ fi
+ haveit=
+ for x in $ltrpathdirs; do
+ if test "X$x" = "X$dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ ltrpathdirs="$ltrpathdirs $dir"
+ fi
+ fi
+ ;;
+ -l*)
+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
+ ;;
+ *.la)
+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
+ ;;
+ *)
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$dep"
+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep"
+ ;;
+ esac
+ done
+ fi
+ else
+ if test "x$lib_type" = "xauto" || test "x$lib_type" = "xshared"; then
+ LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name"
+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name"
+ else
+ LIBICONV="${LIBICONV}${LIBICONV:+ }-l:lib$name.$libext"
+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l:lib$name.$libext"
+ fi
+ fi
+ fi
+ fi
+ done
+ done
+ if test "X$rpathdirs" != "X"; then
+ if test -n "$hardcode_libdir_separator"; then
+ alldirs=
+ for found_dir in $rpathdirs; do
+ alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir"
+ done
+ acl_save_libdir="$libdir"
+ libdir="$alldirs"
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$flag"
+ else
+ for found_dir in $rpathdirs; do
+ acl_save_libdir="$libdir"
+ libdir="$found_dir"
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ LIBICONV="${LIBICONV}${LIBICONV:+ }$flag"
+ done
+ fi
+ fi
+ if test "X$ltrpathdirs" != "X"; then
+ for found_dir in $ltrpathdirs; do
+ LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir"
+ done
+ fi
+
+
+
+
+
+if test -f ../gettext/uninstalled-config.sh; then
+ relative_builddir='$(top_builddir)/../gettext'
+ . ../gettext/uninstalled-config.sh
+else
+ # The sister gettext directory doesn't exist and won't collect information on
+ # using gettext for us. Call a bundled AM_GNU_GETTEXT.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5
+$as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; }
+if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ gt_save_LIBS="$LIBS"
+ LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <CoreFoundation/CFPreferences.h>
+int
+main ()
+{
+CFPreferencesCopyAppValue(NULL, NULL)
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ gt_cv_func_CFPreferencesCopyAppValue=yes
+else
+ gt_cv_func_CFPreferencesCopyAppValue=no
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ LIBS="$gt_save_LIBS"
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5
+$as_echo "$gt_cv_func_CFPreferencesCopyAppValue" >&6; }
+ if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then
+
+$as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h
+
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyPreferredLanguages" >&5
+$as_echo_n "checking for CFLocaleCopyPreferredLanguages... " >&6; }
+if ${gt_cv_func_CFLocaleCopyPreferredLanguages+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ gt_save_LIBS="$LIBS"
+ LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <CoreFoundation/CFLocale.h>
+int
+main ()
+{
+CFLocaleCopyPreferredLanguages();
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ gt_cv_func_CFLocaleCopyPreferredLanguages=yes
+else
+ gt_cv_func_CFLocaleCopyPreferredLanguages=no
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ LIBS="$gt_save_LIBS"
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyPreferredLanguages" >&5
+$as_echo "$gt_cv_func_CFLocaleCopyPreferredLanguages" >&6; }
+ if test $gt_cv_func_CFLocaleCopyPreferredLanguages = yes; then
+
+$as_echo "#define HAVE_CFLOCALECOPYPREFERREDLANGUAGES 1" >>confdefs.h
+
+ fi
+ INTL_MACOSX_LIBS=
+ if test $gt_cv_func_CFPreferencesCopyAppValue = yes \
+ || test $gt_cv_func_CFLocaleCopyPreferredLanguages = yes; then
+ INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation -Wl,-framework -Wl,CoreServices"
+ fi
+
+
+
+
+
+
+ LIBINTL=
+ LTLIBINTL=
+ POSUB=
+
+ case " $gt_needs " in
+ *" need-formatstring-macros "*) gt_api_version=3 ;;
+ *" need-ngettext "*) gt_api_version=2 ;;
+ *) gt_api_version=1 ;;
+ esac
+ gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc"
+ gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl"
+
+ if test "$USE_NLS" = "yes"; then
+ gt_use_preinstalled_gnugettext=no
+
+
+ if test $gt_api_version -ge 3; then
+ gt_revision_test_code='
+#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
+#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
+#endif
+typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
+'
+ else
+ gt_revision_test_code=
+ fi
+ if test $gt_api_version -ge 2; then
+ gt_expression_test_code=' + * ngettext ("", "", 0)'
+ else
+ gt_expression_test_code=
+ fi
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5
+$as_echo_n "checking for GNU gettext in libc... " >&6; }
+if eval \${$gt_func_gnugettext_libc+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+#include <libintl.h>
+#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
+extern int _nl_msg_cat_cntr;
+extern int *_nl_domain_bindings;
+#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_domain_bindings)
+#else
+#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0
+#endif
+$gt_revision_test_code
+
+int
+main ()
+{
+
+bindtextdomain ("", "");
+return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION
+
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ eval "$gt_func_gnugettext_libc=yes"
+else
+ eval "$gt_func_gnugettext_libc=no"
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+fi
+eval ac_res=\$$gt_func_gnugettext_libc
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+
+ if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then
+
+
+
+
+
+ am_save_CPPFLAGS="$CPPFLAGS"
+
+ for element in $INCICONV; do
+ haveit=
+ for x in $CPPFLAGS; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X$element"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element"
+ fi
+ done
+
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5
+$as_echo_n "checking for iconv... " >&6; }
+if ${am_cv_func_iconv+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+
+ am_cv_func_iconv="no, consider installing GNU libiconv"
+ am_cv_lib_iconv=no
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+#include <stdlib.h>
+#include <iconv.h>
+
+int
+main ()
+{
+iconv_t cd = iconv_open("","");
+ iconv(cd,NULL,NULL,NULL,NULL);
+ iconv_close(cd);
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ am_cv_func_iconv=yes
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ if test "$am_cv_func_iconv" != yes; then
+ am_save_LIBS="$LIBS"
+ LIBS="$LIBS $LIBICONV"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+#include <stdlib.h>
+#include <iconv.h>
+
+int
+main ()
+{
+iconv_t cd = iconv_open("","");
+ iconv(cd,NULL,NULL,NULL,NULL);
+ iconv_close(cd);
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ am_cv_lib_iconv=yes
+ am_cv_func_iconv=yes
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ LIBS="$am_save_LIBS"
+ fi
+
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5
+$as_echo "$am_cv_func_iconv" >&6; }
+ if test "$am_cv_func_iconv" = yes; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5
+$as_echo_n "checking for working iconv... " >&6; }
+if ${am_cv_func_iconv_works+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+
+ am_save_LIBS="$LIBS"
+ if test $am_cv_lib_iconv = yes; then
+ LIBS="$LIBS $LIBICONV"
+ fi
+ am_cv_func_iconv_works=no
+ for ac_iconv_const in '' 'const'; do
+ if test "$cross_compiling" = yes; then :
+ case "$host_os" in
+ aix* | hpux*) am_cv_func_iconv_works="guessing no" ;;
+ *) am_cv_func_iconv_works="guessing yes" ;;
+ esac
+else
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+#include <iconv.h>
+#include <string.h>
+
+#ifndef ICONV_CONST
+# define ICONV_CONST $ac_iconv_const
+#endif
+
+int
+main ()
+{
+int result = 0;
+ /* Test against AIX 5.1...7.2 bug: Failures are not distinguishable from
+ successful returns. This is even documented in
+ <https://www.ibm.com/support/knowledgecenter/ssw_aix_72/i_bostechref/iconv.html> */
+ {
+ iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8");
+ if (cd_utf8_to_88591 != (iconv_t)(-1))
+ {
+ static ICONV_CONST char input[] = "\342\202\254"; /* EURO SIGN */
+ char buf[10];
+ ICONV_CONST char *inptr = input;
+ size_t inbytesleft = strlen (input);
+ char *outptr = buf;
+ size_t outbytesleft = sizeof (buf);
+ size_t res = iconv (cd_utf8_to_88591,
+ &inptr, &inbytesleft,
+ &outptr, &outbytesleft);
+ if (res == 0)
+ result |= 1;
+ iconv_close (cd_utf8_to_88591);
+ }
+ }
+ /* Test against Solaris 10 bug: Failures are not distinguishable from
+ successful returns. */
+ {
+ iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646");
+ if (cd_ascii_to_88591 != (iconv_t)(-1))
+ {
+ static ICONV_CONST char input[] = "\263";
+ char buf[10];
+ ICONV_CONST char *inptr = input;
+ size_t inbytesleft = strlen (input);
+ char *outptr = buf;
+ size_t outbytesleft = sizeof (buf);
+ size_t res = iconv (cd_ascii_to_88591,
+ &inptr, &inbytesleft,
+ &outptr, &outbytesleft);
+ if (res == 0)
+ result |= 2;
+ iconv_close (cd_ascii_to_88591);
+ }
+ }
+ /* Test against AIX 6.1..7.1 bug: Buffer overrun. */
+ {
+ iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1");
+ if (cd_88591_to_utf8 != (iconv_t)(-1))
+ {
+ static ICONV_CONST char input[] = "\304";
+ static char buf[2] = { (char)0xDE, (char)0xAD };
+ ICONV_CONST char *inptr = input;
+ size_t inbytesleft = 1;
+ char *outptr = buf;
+ size_t outbytesleft = 1;
+ size_t res = iconv (cd_88591_to_utf8,
+ &inptr, &inbytesleft,
+ &outptr, &outbytesleft);
+ if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD)
+ result |= 4;
+ iconv_close (cd_88591_to_utf8);
+ }
+ }
+#if 0 /* This bug could be worked around by the caller. */
+ /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */
+ {
+ iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591");
+ if (cd_88591_to_utf8 != (iconv_t)(-1))
+ {
+ static ICONV_CONST char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337";
+ char buf[50];
+ ICONV_CONST char *inptr = input;
+ size_t inbytesleft = strlen (input);
+ char *outptr = buf;
+ size_t outbytesleft = sizeof (buf);
+ size_t res = iconv (cd_88591_to_utf8,
+ &inptr, &inbytesleft,
+ &outptr, &outbytesleft);
+ if ((int)res > 0)
+ result |= 8;
+ iconv_close (cd_88591_to_utf8);
+ }
+ }
+#endif
+ /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is
+ provided. */
+ {
+ /* Try standardized names. */
+ iconv_t cd1 = iconv_open ("UTF-8", "EUC-JP");
+ /* Try IRIX, OSF/1 names. */
+ iconv_t cd2 = iconv_open ("UTF-8", "eucJP");
+ /* Try AIX names. */
+ iconv_t cd3 = iconv_open ("UTF-8", "IBM-eucJP");
+ /* Try HP-UX names. */
+ iconv_t cd4 = iconv_open ("utf8", "eucJP");
+ if (cd1 == (iconv_t)(-1) && cd2 == (iconv_t)(-1)
+ && cd3 == (iconv_t)(-1) && cd4 == (iconv_t)(-1))
+ result |= 16;
+ if (cd1 != (iconv_t)(-1))
+ iconv_close (cd1);
+ if (cd2 != (iconv_t)(-1))
+ iconv_close (cd2);
+ if (cd3 != (iconv_t)(-1))
+ iconv_close (cd3);
+ if (cd4 != (iconv_t)(-1))
+ iconv_close (cd4);
+ }
+ return result;
+
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_run "$LINENO"; then :
+ am_cv_func_iconv_works=yes
+fi
+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
+ conftest.$ac_objext conftest.beam conftest.$ac_ext
+fi
+
+ test "$am_cv_func_iconv_works" = no || break
+ done
+ LIBS="$am_save_LIBS"
+
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5
+$as_echo "$am_cv_func_iconv_works" >&6; }
+ case "$am_cv_func_iconv_works" in
+ *no) am_func_iconv=no am_cv_lib_iconv=no ;;
+ *) am_func_iconv=yes ;;
+ esac
+ else
+ am_func_iconv=no am_cv_lib_iconv=no
+ fi
+ if test "$am_func_iconv" = yes; then
+
+$as_echo "#define HAVE_ICONV 1" >>confdefs.h
+
+ fi
+ if test "$am_cv_lib_iconv" = yes; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5
+$as_echo_n "checking how to link with libiconv... " >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5
+$as_echo "$LIBICONV" >&6; }
+ else
+ CPPFLAGS="$am_save_CPPFLAGS"
+ LIBICONV=
+ LTLIBICONV=
+ fi
+
+
+
+
+
+
+ use_additional=yes
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
+
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+
+# Check whether --with-libintl-prefix was given.
+if test "${with_libintl_prefix+set}" = set; then :
+ withval=$with_libintl_prefix;
+ if test "X$withval" = "Xno"; then
+ use_additional=no
+ else
+ if test "X$withval" = "X"; then
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+
+ eval additional_includedir=\"$includedir\"
+ eval additional_libdir=\"$libdir\"
+
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ else
+ additional_includedir="$withval/include"
+ additional_libdir="$withval/lib"
+ fi
+ fi
+
+fi
+
+
+# Check whether --with-libintl-type was given.
+if test "${with_libintl_type+set}" = set; then :
+ withval=$with_libintl_type; with_libintl_type=$withval
+else
+ with_libintl_type=auto
+fi
+
+ lib_type=`eval echo \$with_libintl_type`
+
+ LIBINTL=
+ LTLIBINTL=
+ INCINTL=
+ rpathdirs=
+ ltrpathdirs=
+ names_already_handled=
+ names_next_round='intl '
+ while test -n "$names_next_round"; do
+ names_this_round="$names_next_round"
+ names_next_round=
+ for name in $names_this_round; do
+ already_handled=
+ for n in $names_already_handled; do
+ if test "$n" = "$name"; then
+ already_handled=yes
+ break
+ fi
+ done
+ if test -z "$already_handled"; then
+ names_already_handled="$names_already_handled $name"
+ uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
+ eval value=\"\$HAVE_LIB$uppername\"
+ if test -n "$value"; then
+ if test "$value" = yes; then
+ eval value=\"\$LIB$uppername\"
+ test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value"
+ eval value=\"\$LTLIB$uppername\"
+ test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value"
+ else
+ :
+ fi
+ else
+ found_dir=
+ found_la=
+ found_so=
+ found_a=
+ if test $use_additional = yes; then
+ if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext" && test x$lib_type != xstatic; then
+ found_dir="$additional_libdir"
+ found_so="$additional_libdir/lib$name.$shlibext"
+ if test -f "$additional_libdir/lib$name.la"; then
+ found_la="$additional_libdir/lib$name.la"
+ fi
+ elif test x$lib_type != xshared; then
+ if test -f "$additional_libdir/lib$name.$libext"; then
+ found_dir="$additional_libdir"
+ found_a="$additional_libdir/lib$name.$libext"
+ if test -f "$additional_libdir/lib$name.la"; then
+ found_la="$additional_libdir/lib$name.la"
+ fi
+ fi
+ fi
+ fi
+ if test "X$found_dir" = "X"; then
+ for x in $LDFLAGS $LTLIBINTL; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ case "$x" in
+ -L*)
+ dir=`echo "X$x" | sed -e 's/^X-L//'`
+ if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext" && test x$lib_type != xstatic; then
+ found_dir="$dir"
+ found_so="$dir/lib$name.$shlibext"
+ if test -f "$dir/lib$name.la"; then
+ found_la="$dir/lib$name.la"
+ fi
+ elif test x$lib_type != xshared; then
+ if test -f "$dir/lib$name.$libext"; then
+ found_dir="$dir"
+ found_a="$dir/lib$name.$libext"
+ if test -f "$dir/lib$name.la"; then
+ found_la="$dir/lib$name.la"
+ fi
+ fi
+ fi
+ ;;
+ esac
+ if test "X$found_dir" != "X"; then
+ break
+ fi
+ done
+ fi
+ if test "X$found_dir" != "X"; then
+ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name"
+ if test "X$found_so" != "X"; then
+ if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
+ else
+ haveit=
+ for x in $ltrpathdirs; do
+ if test "X$x" = "X$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ ltrpathdirs="$ltrpathdirs $found_dir"
+ fi
+ if test "$hardcode_direct" = yes; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
+ else
+ if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
+ haveit=
+ for x in $rpathdirs; do
+ if test "X$x" = "X$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ rpathdirs="$rpathdirs $found_dir"
+ fi
+ else
+ haveit=
+ for x in $LDFLAGS $LIBINTL; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$found_dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir"
+ fi
+ if test "$hardcode_minus_L" != no; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so"
+ else
+ LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name"
+ fi
+ fi
+ fi
+ fi
+ else
+ if test "X$found_a" != "X"; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a"
+ else
+ LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name"
+ fi
+ fi
+ additional_includedir=
+ case "$found_dir" in
+ */lib | */lib/)
+ basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'`
+ additional_includedir="$basedir/include"
+ ;;
+ esac
+ if test "X$additional_includedir" != "X"; then
+ if test "X$additional_includedir" != "X/usr/include"; then
+ haveit=
+ if test "X$additional_includedir" = "X/usr/local/include"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux*) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ for x in $CPPFLAGS $INCINTL; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-I$additional_includedir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_includedir"; then
+ INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir"
+ fi
+ fi
+ fi
+ fi
+ fi
+ if test -n "$found_la"; then
+ save_libdir="$libdir"
+ case "$found_la" in
+ */* | *\\*) . "$found_la" ;;
+ *) . "./$found_la" ;;
+ esac
+ libdir="$save_libdir"
+ for dep in $dependency_libs; do
+ case "$dep" in
+ -L*)
+ additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
+ if test "X$additional_libdir" != "X/usr/lib"; then
+ haveit=
+ if test "X$additional_libdir" = "X/usr/local/lib"; then
+ if test -n "$GCC"; then
+ case $host_os in
+ linux*) haveit=yes;;
+ esac
+ fi
+ fi
+ if test -z "$haveit"; then
+ haveit=
+ for x in $LDFLAGS $LIBINTL; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$additional_libdir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_libdir"; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir"
+ fi
+ fi
+ haveit=
+ for x in $LDFLAGS $LTLIBINTL; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X-L$additional_libdir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ if test -d "$additional_libdir"; then
+ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir"
+ fi
+ fi
+ fi
+ fi
+ ;;
+ -R*)
+ dir=`echo "X$dep" | sed -e 's/^X-R//'`
+ if test "$enable_rpath" != no; then
+ haveit=
+ for x in $rpathdirs; do
+ if test "X$x" = "X$dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ rpathdirs="$rpathdirs $dir"
+ fi
+ haveit=
+ for x in $ltrpathdirs; do
+ if test "X$x" = "X$dir"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ ltrpathdirs="$ltrpathdirs $dir"
+ fi
+ fi
+ ;;
+ -l*)
+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
+ ;;
+ *.la)
+ names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
+ ;;
+ *)
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$dep"
+ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep"
+ ;;
+ esac
+ done
+ fi
+ else
+ if test "x$lib_type" = "xauto" || test "x$lib_type" = "xshared"; then
+ LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name"
+ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name"
+ else
+ LIBINTL="${LIBINTL}${LIBINTL:+ }-l:lib$name.$libext"
+ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l:lib$name.$libext"
+ fi
+ fi
+ fi
+ fi
+ done
+ done
+ if test "X$rpathdirs" != "X"; then
+ if test -n "$hardcode_libdir_separator"; then
+ alldirs=
+ for found_dir in $rpathdirs; do
+ alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir"
+ done
+ acl_save_libdir="$libdir"
+ libdir="$alldirs"
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$flag"
+ else
+ for found_dir in $rpathdirs; do
+ acl_save_libdir="$libdir"
+ libdir="$found_dir"
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ libdir="$acl_save_libdir"
+ LIBINTL="${LIBINTL}${LIBINTL:+ }$flag"
+ done
+ fi
+ fi
+ if test "X$ltrpathdirs" != "X"; then
+ for found_dir in $ltrpathdirs; do
+ LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir"
+ done
+ fi
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5
+$as_echo_n "checking for GNU gettext in libintl... " >&6; }
+if eval \${$gt_func_gnugettext_libintl+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ gt_save_CPPFLAGS="$CPPFLAGS"
+ CPPFLAGS="$CPPFLAGS $INCINTL"
+ gt_save_LIBS="$LIBS"
+ LIBS="$LIBS $LIBINTL"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+#include <libintl.h>
+#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
+extern int _nl_msg_cat_cntr;
+extern
+#ifdef __cplusplus
+"C"
+#endif
+const char *_nl_expand_alias (const char *);
+#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias (""))
+#else
+#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0
+#endif
+$gt_revision_test_code
+
+int
+main ()
+{
+
+bindtextdomain ("", "");
+return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION
+
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ eval "$gt_func_gnugettext_libintl=yes"
+else
+ eval "$gt_func_gnugettext_libintl=no"
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then
+ LIBS="$LIBS $LIBICONV"
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+#include <libintl.h>
+#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
+extern int _nl_msg_cat_cntr;
+extern
+#ifdef __cplusplus
+"C"
+#endif
+const char *_nl_expand_alias (const char *);
+#define __GNU_GETTEXT_SYMBOL_EXPRESSION (_nl_msg_cat_cntr + *_nl_expand_alias (""))
+#else
+#define __GNU_GETTEXT_SYMBOL_EXPRESSION 0
+#endif
+$gt_revision_test_code
+
+int
+main ()
+{
+
+bindtextdomain ("", "");
+return * gettext ("")$gt_expression_test_code + __GNU_GETTEXT_SYMBOL_EXPRESSION
+
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_link "$LINENO"; then :
+ LIBINTL="$LIBINTL $LIBICONV"
+ LTLIBINTL="$LTLIBINTL $LTLIBICONV"
+ eval "$gt_func_gnugettext_libintl=yes"
+
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ fi
+ CPPFLAGS="$gt_save_CPPFLAGS"
+ LIBS="$gt_save_LIBS"
+fi
+eval ac_res=\$$gt_func_gnugettext_libintl
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+$as_echo "$ac_res" >&6; }
+ fi
+
+ if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \
+ || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \
+ && test "$PACKAGE" != gettext-runtime \
+ && test "$PACKAGE" != gettext-tools; }; then
+ gt_use_preinstalled_gnugettext=yes
+ else
+ LIBINTL=
+ LTLIBINTL=
+ INCINTL=
+ fi
+
+
+
+ if test -n "$INTL_MACOSX_LIBS"; then
+ if test "$gt_use_preinstalled_gnugettext" = "yes" \
+ || test "$nls_cv_use_gnu_gettext" = "yes"; then
+ LIBINTL="$LIBINTL $INTL_MACOSX_LIBS"
+ LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS"
+ fi
+ fi
+
+ if test "$gt_use_preinstalled_gnugettext" = "yes" \
+ || test "$nls_cv_use_gnu_gettext" = "yes"; then
+
+$as_echo "#define ENABLE_NLS 1" >>confdefs.h
+
+ else
+ USE_NLS=no
+ fi
+ fi
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5
+$as_echo_n "checking whether to use NLS... " >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5
+$as_echo "$USE_NLS" >&6; }
+ if test "$USE_NLS" = "yes"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5
+$as_echo_n "checking where the gettext function comes from... " >&6; }
+ if test "$gt_use_preinstalled_gnugettext" = "yes"; then
+ if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then
+ gt_source="external libintl"
+ else
+ gt_source="libc"
+ fi
+ else
+ gt_source="included intl directory"
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5
+$as_echo "$gt_source" >&6; }
+ fi
+
+ if test "$USE_NLS" = "yes"; then
+
+ if test "$gt_use_preinstalled_gnugettext" = "yes"; then
+ if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5
+$as_echo_n "checking how to link with libintl... " >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5
+$as_echo "$LIBINTL" >&6; }
+
+ for element in $INCINTL; do
+ haveit=
+ for x in $CPPFLAGS; do
+
+ acl_save_prefix="$prefix"
+ prefix="$acl_final_prefix"
+ acl_save_exec_prefix="$exec_prefix"
+ exec_prefix="$acl_final_exec_prefix"
+ eval x=\"$x\"
+ exec_prefix="$acl_save_exec_prefix"
+ prefix="$acl_save_prefix"
+
+ if test "X$x" = "X$element"; then
+ haveit=yes
+ break
+ fi
+ done
+ if test -z "$haveit"; then
+ CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element"
+ fi
+ done
+
+ fi
+
+
+$as_echo "#define HAVE_GETTEXT 1" >>confdefs.h
+
+
+$as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h
+
+ fi
+
+ POSUB=po
+ fi
+
+
+
+ INTLLIBS="$LIBINTL"
+
+
+
+
+
+
+fi
+
+
+
+
+
+
+
+
+
+
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5
$as_echo_n "checking whether NLS is requested... " >&6; }
if test x"$USE_NLS" != xyes; then
@@ -16206,33 +18135,6 @@ $as_echo "$LINGUAS" >&6; }
fi
- MKINSTALLDIRS=
- if test -n "$ac_aux_dir"; then
- case "$ac_aux_dir" in
- /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;;
- *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;;
- esac
- fi
- if test -z "$MKINSTALLDIRS"; then
- MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
- fi
-
-
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5
-$as_echo_n "checking whether NLS is requested... " >&6; }
- # Check whether --enable-nls was given.
-if test "${enable_nls+set}" = set; then :
- enableval=$enable_nls; USE_NLS=$enableval
-else
- USE_NLS=yes
-fi
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5
-$as_echo "$USE_NLS" >&6; }
-
-
-
@@ -16510,7 +18412,7 @@ $as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; }
rm -f messages.po
fi
- ac_config_commands="$ac_config_commands default-1"
+ ac_config_commands="$ac_config_commands default-2"
@@ -18700,6 +20602,13 @@ fi
# Capture the value of LINGUAS because we need it to compute CATALOGS.
LINGUAS="${LINGUAS-%UNSET%}"
+# Capture the value of obsolete ALL_LINGUAS because we need it to compute
+ # POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it
+ # from automake.
+ eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"'
+ # Capture the value of LINGUAS because we need it to compute CATALOGS.
+ LINGUAS="${LINGUAS-%UNSET%}"
+
_ACEOF
@@ -18714,6 +20623,7 @@ do
"libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
"config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.in" ;;
"default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
+ "default-2") CONFIG_COMMANDS="$CONFIG_COMMANDS default-2" ;;
"default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
"po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in:po/Make-in" ;;
@@ -20316,6 +22226,107 @@ _LT_EOF
;;
esac
done ;;
+ "default-2":C)
+ for ac_file in $CONFIG_FILES; do
+ # Support "outfile[:infile[:infile...]]"
+ case "$ac_file" in
+ *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
+ esac
+ # PO directories have a Makefile.in generated from Makefile.in.in.
+ case "$ac_file" in */Makefile.in)
+ # Adjust a relative srcdir.
+ ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
+ ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'`
+ ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
+ # In autoconf-2.13 it is called $ac_given_srcdir.
+ # In autoconf-2.50 it is called $srcdir.
+ test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
+ case "$ac_given_srcdir" in
+ .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
+ /*) top_srcdir="$ac_given_srcdir" ;;
+ *) top_srcdir="$ac_dots$ac_given_srcdir" ;;
+ esac
+ if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
+ rm -f "$ac_dir/POTFILES"
+ test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
+ cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
+ POMAKEFILEDEPS="POTFILES.in"
+ # ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend
+ # on $ac_dir but don't depend on user-specified configuration
+ # parameters.
+ if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
+ # The LINGUAS file contains the set of available languages.
+ if test -n "$OBSOLETE_ALL_LINGUAS"; then
+ test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.ac is obsolete" || echo "setting ALL_LINGUAS in configure.ac is obsolete"
+ fi
+ ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"`
+ # Hide the ALL_LINGUAS assigment from automake.
+ eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
+ POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
+ else
+ # The set of available languages was given in configure.ac.
+ eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
+ fi
+ case "$ac_given_srcdir" in
+ .) srcdirpre= ;;
+ *) srcdirpre='$(srcdir)/' ;;
+ esac
+ POFILES=
+ GMOFILES=
+ UPDATEPOFILES=
+ DUMMYPOFILES=
+ for lang in $ALL_LINGUAS; do
+ POFILES="$POFILES $srcdirpre$lang.po"
+ GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
+ UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
+ DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
+ done
+ # CATALOGS depends on both $ac_dir and the user's LINGUAS
+ # environment variable.
+ INST_LINGUAS=
+ if test -n "$ALL_LINGUAS"; then
+ for presentlang in $ALL_LINGUAS; do
+ useit=no
+ if test "%UNSET%" != "$LINGUAS"; then
+ desiredlanguages="$LINGUAS"
+ else
+ desiredlanguages="$ALL_LINGUAS"
+ fi
+ for desiredlang in $desiredlanguages; do
+ # Use the presentlang catalog if desiredlang is
+ # a. equal to presentlang, or
+ # b. a variant of presentlang (because in this case,
+ # presentlang can be used as a fallback for messages
+ # which are not translated in the desiredlang catalog).
+ case "$desiredlang" in
+ "$presentlang"*) useit=yes;;
+ esac
+ done
+ if test $useit = yes; then
+ INST_LINGUAS="$INST_LINGUAS $presentlang"
+ fi
+ done
+ fi
+ CATALOGS=
+ if test -n "$INST_LINGUAS"; then
+ for lang in $INST_LINGUAS; do
+ CATALOGS="$CATALOGS $lang.gmo"
+ done
+ fi
+ test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
+ sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
+ for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
+ if test -f "$f"; then
+ case "$f" in
+ *.orig | *.bak | *~) ;;
+ *) cat "$f" >> "$ac_dir/Makefile" ;;
+ esac
+ fi
+ done
+ fi
+ ;;
+ esac
+ done ;;
"default":C)
case "$srcdir" in
.) srcdirpre= ;;
diff --git a/ld/po/ld.pot b/ld/po/ld.pot
index 0bef157..eb7d69d 100644
--- a/ld/po/ld.pot
+++ b/ld/po/ld.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://sourceware.org/bugzilla/\n"
-"POT-Creation-Date: 2023-01-05 10:57+0000\n"
+"POT-Creation-Date: 2023-11-15 11:18+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -55,15 +55,15 @@ msgstr ""
msgid "%P: symbol `%pT' missing from main hash table\n"
msgstr ""
-#: ldcref.c:517 ldcref.c:628 ldmain.c:1311 ldmisc.c:324 pe-dll.c:758
-#: pe-dll.c:1324 pe-dll.c:1445 pe-dll.c:1569 eaarch64pe.c:1573 earm64pe.c:1573
-#: earm_wince_pe.c:1575 earm_wince_pe.c:1747 earmpe.c:1575 earmpe.c:1747
-#: ei386pe.c:1575 ei386pe.c:1747 ei386pe_posix.c:1575 ei386pe_posix.c:1747
-#: ei386pep.c:1573 emcorepe.c:1575 emcorepe.c:1747 eshpe.c:1575 eshpe.c:1747
+#: ldcref.c:517 ldcref.c:628 ldmain.c:1315 ldmisc.c:327 pe-dll.c:759
+#: pe-dll.c:1329 pe-dll.c:1450 pe-dll.c:1552 eaarch64pe.c:1653 earm64pe.c:1653
+#: earm_wince_pe.c:1661 earm_wince_pe.c:1833 earmpe.c:1661 earmpe.c:1833
+#: ei386pe.c:1661 ei386pe.c:1833 ei386pe_posix.c:1661 ei386pe_posix.c:1833
+#: ei386pep.c:1653 emcorepe.c:1661 emcorepe.c:1833 eshpe.c:1661 eshpe.c:1833
msgid "%F%P: %pB: could not read symbols: %E\n"
msgstr ""
-#: ldcref.c:690 ldcref.c:697 ldmain.c:1373 ldmain.c:1380
+#: ldcref.c:690 ldcref.c:697 ldmain.c:1377 ldmain.c:1384
msgid "%F%P: %pB: could not read relocs: %E\n"
msgstr ""
@@ -72,30 +72,30 @@ msgstr ""
#. mapped into a section from which references to OUTSECNAME
#. are prohibited. We must report an error.
#: ldcref.c:724
-msgid "%X%P: %C: prohibited cross reference from %s to `%pT' in %s\n"
+msgid "%X%P: %H: prohibited cross reference from %s to `%pT' in %s\n"
msgstr ""
-#: ldctor.c:84
+#: ldctor.c:85
msgid "%X%P: different relocs used in set %s\n"
msgstr ""
-#: ldctor.c:102
+#: ldctor.c:103
msgid "%X%P: different object file formats composing set %s\n"
msgstr ""
-#: ldctor.c:278 ldctor.c:299
+#: ldctor.c:279 ldctor.c:300
msgid "%X%P: %s does not support reloc %s for set %s\n"
msgstr ""
-#: ldctor.c:294
+#: ldctor.c:295
msgid "%X%P: special section %s does not support reloc %s for set %s\n"
msgstr ""
-#: ldctor.c:320
+#: ldctor.c:321
msgid "%X%P: unsupported size %d for set %s\n"
msgstr ""
-#: ldctor.c:343
+#: ldctor.c:344
msgid ""
"\n"
"Set Symbol\n"
@@ -122,7 +122,7 @@ msgstr ""
msgid "%P: warning: %s, needed by %pB, may conflict with %s\n"
msgstr ""
-#: ldelf.c:286 ldfile.c:133
+#: ldelf.c:286 ldfile.c:343
#, c-format
msgid "attempt to open %s failed\n"
msgstr ""
@@ -140,134 +140,134 @@ msgstr ""
msgid "found %s at %s\n"
msgstr ""
-#: ldelf.c:410 ldlang.c:3013 ldlang.c:3027
+#: ldelf.c:410 ldlang.c:3118 ldlang.c:3132
msgid "%F%P: %pB: error adding symbols: %E\n"
msgstr ""
#. 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:597
+#: ldelf.c:600
#, c-format
msgid "unrecognised or unsupported token '%s' in search path\n"
msgstr ""
-#: ldelf.c:1077
+#: ldelf.c:1080
#, c-format
msgid "%s needed by %pB\n"
msgstr ""
-#: ldelf.c:1186
+#: ldelf.c:1189
msgid ""
"%P: warning: %s, needed by %pB, not found (try using -rpath or -rpath-link)\n"
msgstr ""
-#: ldelf.c:1202
+#: ldelf.c:1205
msgid "%F%P: failed to add DT_NEEDED dynamic tag\n"
msgstr ""
-#: ldelf.c:1253
+#: ldelf.c:1257
msgid "%F%P: %s: can't open for writing: %E\n"
msgstr ""
-#: ldelf.c:1309
+#: ldelf.c:1313
msgid "%F%P: cannot use executable file '%pB' as input to a link\n"
msgstr ""
-#: ldelf.c:1363
+#: ldelf.c:1367
msgid ""
"%F%P: compact frame descriptions incompatible with DWARF2 .eh_frame from %"
"pB\n"
msgstr ""
-#: ldelf.c:1399
+#: ldelf.c:1403
msgid ""
"%P: warning: cannot create .eh_frame_hdr section, --eh-frame-hdr ignored\n"
msgstr ""
-#: ldelf.c:1405
+#: ldelf.c:1409
msgid "%F%P: failed to parse EH frame entries\n"
msgstr ""
-#: ldelf.c:1447
+#: ldelf.c:1451
msgid "%P: warning: .note.gnu.build-id section discarded, --build-id ignored\n"
msgstr ""
-#: ldelf.c:1496 eaarch64pe.c:1357 earm64pe.c:1357 earm_wince_pe.c:1341
-#: earmpe.c:1341 ei386pe.c:1341 ei386pe_posix.c:1341 ei386pep.c:1357
-#: emcorepe.c:1341 eshpe.c:1341
+#: ldelf.c:1500 eaarch64pe.c:1427 earm64pe.c:1427 earm_wince_pe.c:1417
+#: earmpe.c:1417 ei386pe.c:1417 ei386pe_posix.c:1417 ei386pep.c:1427
+#: emcorepe.c:1417 eshpe.c:1417
msgid "%P: warning: unrecognized --build-id style ignored\n"
msgstr ""
-#: ldelf.c:1515
+#: ldelf.c:1519
msgid ""
"%P: warning: cannot create .note.gnu.build-id section, --build-id ignored\n"
msgstr ""
-#: ldelf.c:1536
+#: ldelf.c:1540
msgid ""
"%P: warning: .note.package section discarded, --package-metadata ignored\n"
msgstr ""
-#: ldelf.c:1591
+#: ldelf.c:1595
msgid "%P: warning: --package-metadata is empty, ignoring\n"
msgstr ""
-#: ldelf.c:1601
+#: ldelf.c:1605
msgid ""
"%P: warning: --package-metadata=%s does not contain valid JSON, ignoring: %"
"s\n"
msgstr ""
-#: ldelf.c:1630
+#: ldelf.c:1634
msgid ""
"%P: warning: cannot create .note.package section, --package-metadata "
"ignored\n"
msgstr ""
-#: ldelf.c:1662 eaix5ppc.c:1574 eaix5rs6.c:1574 eaixppc.c:1574 eaixrs6.c:1574
+#: ldelf.c:1666 eaix5ppc.c:1574 eaix5rs6.c:1574 eaixppc.c:1574 eaixrs6.c:1574
#: eppcmacos.c:1574
msgid "%F%P: failed to record assignment to %s: %E\n"
msgstr ""
-#: ldelf.c:1840 ldelf.c:1905 eaix5ppc.c:844 eaix5rs6.c:844 eaixppc.c:844
-#: eaixrs6.c:844 eelf64_ia64_vms.c:209 eppcmacos.c:844
+#: ldelf.c:1844 ldelf.c:1909 eaix5ppc.c:844 eaix5rs6.c:844 eaixppc.c:844
+#: eaixrs6.c:844 eelf64_ia64_vms.c:210 eppcmacos.c:844
msgid "%F%P: failed to set dynamic section sizes: %E\n"
msgstr ""
-#: ldelf.c:1877
+#: ldelf.c:1881
msgid "%F%P: %pB: can't read contents of section .gnu.warning: %E\n"
msgstr ""
-#: ldelfgen.c:284
+#: ldelfgen.c:285
msgid "%F%P: %pA has both ordered and unordered sections\n"
msgstr ""
-#: ldelfgen.c:309
+#: ldelfgen.c:310
msgid "%F%P: map sections to segments failed: %E\n"
msgstr ""
-#: ldelfgen.c:329
+#: ldelfgen.c:330
msgid "%F%P: looping in map_segments\n"
msgstr ""
-#: ldelfgen.c:341
+#: ldelfgen.c:342
msgid "%F%P: failed to strip zero-sized dynamic sections\n"
msgstr ""
-#: ldelfgen.c:419
+#: ldelfgen.c:420
msgid ""
"%F%P: warning: CTF strtab association failed; strings will not be shared: %"
"s\n"
msgstr ""
-#: ldelfgen.c:446
+#: ldelfgen.c:447
msgid ""
"%F%P: warning: CTF symbol addition failed; CTF will not be tied to symbols: %"
"s\n"
msgstr ""
-#: ldelfgen.c:456
+#: ldelfgen.c:457
msgid ""
"%F%P: warning: CTF symbol shuffling failed; CTF will not be tied to symbols: "
"%s\n"
@@ -296,848 +296,890 @@ msgstr ""
msgid " no emulation specific options.\n"
msgstr ""
-#: ldexp.c:284
+#: ldexp.c:285
msgid "%F%P: bfd_hash_allocate failed creating symbol %s\n"
msgstr ""
-#: ldexp.c:315
+#: ldexp.c:316
msgid "%F%P: bfd_hash_lookup failed creating symbol %s\n"
msgstr ""
-#: ldexp.c:561
+#: ldexp.c:562
msgid "%P: warning: address of `%s' isn't multiple of maximum page size\n"
msgstr ""
-#: ldexp.c:640
+#: ldexp.c:641
msgid "%F%P:%pS %% by zero\n"
msgstr ""
-#: ldexp.c:649
+#: ldexp.c:650
msgid "%F%P:%pS / by zero\n"
msgstr ""
-#: ldexp.c:745 ldlang.c:3864 ldmain.c:1278 eaarch64pe.c:1762 earm64pe.c:1762
-#: earm_wince_pe.c:1858 earmpe.c:1858 ei386pe.c:1858 ei386pe_posix.c:1858
-#: ei386pep.c:1762 emcorepe.c:1858 eshpe.c:1858
+#: ldexp.c:764 ldlang.c:3976 ldmain.c:1282 eaarch64pe.c:1241 eaarch64pe.c:1842
+#: earm64pe.c:1241 earm64pe.c:1842 earm_wince_pe.c:1232 earm_wince_pe.c:1944
+#: earmpe.c:1232 earmpe.c:1944 ei386pe.c:1232 ei386pe.c:1944
+#: ei386pe_posix.c:1232 ei386pe_posix.c:1944 ei386pep.c:1241 ei386pep.c:1842
+#: emcorepe.c:1232 emcorepe.c:1944 eshpe.c:1232 eshpe.c:1944
msgid "%F%P: bfd_link_hash_lookup failed: %E\n"
msgstr ""
-#: ldexp.c:758
+#: ldexp.c:777
msgid "%X%P:%pS: unresolvable symbol `%s' referenced in expression\n"
msgstr ""
-#: ldexp.c:773
+#: ldexp.c:792
msgid "%F%P:%pS: undefined symbol `%s' referenced in expression\n"
msgstr ""
-#: ldexp.c:811 ldexp.c:829 ldexp.c:857
+#: ldexp.c:830 ldexp.c:848 ldexp.c:876
msgid "%F%P:%pS: undefined section `%s' referenced in expression\n"
msgstr ""
-#: ldexp.c:896 ldexp.c:910
+#: ldexp.c:915 ldexp.c:929
msgid "%F%P:%pS: undefined MEMORY region `%s' referenced in expression\n"
msgstr ""
-#: ldexp.c:922
+#: ldexp.c:941
msgid "%F%P:%pS: unknown constant `%s' referenced in expression\n"
msgstr ""
-#: ldexp.c:1070
+#: ldexp.c:1089
msgid "%F%P:%pS can not PROVIDE assignment to location counter\n"
msgstr ""
-#: ldexp.c:1103
+#: ldexp.c:1122
msgid "%F%P:%pS invalid assignment to location counter\n"
msgstr ""
-#: ldexp.c:1107
+#: ldexp.c:1126
msgid "%F%P:%pS assignment to location counter invalid outside of SECTIONS\n"
msgstr ""
-#: ldexp.c:1126
+#: ldexp.c:1145
msgid "%F%P:%pS cannot move location counter backwards (from %V to %V)\n"
msgstr ""
-#: ldexp.c:1186
+#: ldexp.c:1205
msgid "%F%P:%s: hash creation failed\n"
msgstr ""
-#: ldexp.c:1558 ldexp.c:1600 ldexp.c:1660
+#: ldexp.c:1581 ldexp.c:1624 ldexp.c:1684
msgid "%F%P:%pS: nonconstant expression for %s\n"
msgstr ""
-#: ldexp.c:1686 ldlang.c:1272 ldlang.c:3346 ldlang.c:7906
+#: ldexp.c:1710 ldlang.c:1328 ldlang.c:3451 ldlang.c:8146
msgid "%F%P: can not create hash table: %E\n"
msgstr ""
-#: ldfile.c:135
+#: ldfile.c:238
+#, c-format
+msgid "remap input file '%s' to '%s' based upon pattern '%s'\n"
+msgstr ""
+
+#: ldfile.c:241
+#, c-format
+msgid "remove input file '%s' based upon pattern '%s'\n"
+msgstr ""
+
+#: ldfile.c:247
+#, c-format
+msgid "remap input file '%s' to '%s'\n"
+msgstr ""
+
+#: ldfile.c:250
+#, c-format
+msgid "remove input file '%s'\n"
+msgstr ""
+
+#: ldfile.c:268
+msgid ""
+"\n"
+"Input File Remapping\n"
+"\n"
+msgstr ""
+
+#: ldfile.c:273
+#, c-format
+msgid " Pattern: %s\tMaps To: %s\n"
+msgstr ""
+
+#: ldfile.c:274
+msgid "<discard>"
+msgstr ""
+
+#: ldfile.c:345
#, c-format
msgid "attempt to open %s succeeded\n"
msgstr ""
-#: ldfile.c:141
+#: ldfile.c:351
msgid "%F%P: invalid BFD target `%s'\n"
msgstr ""
-#: ldfile.c:267 ldfile.c:297
+#: ldfile.c:481 ldfile.c:511
msgid "%P: skipping incompatible %s when searching for %s\n"
msgstr ""
-#: ldfile.c:280
+#: ldfile.c:494
msgid "%F%P: attempted static link of dynamic object `%s'\n"
msgstr ""
-#: ldfile.c:407
+#: ldfile.c:621
msgid "%P: cannot find %s (%s): %E\n"
msgstr ""
#. We ignore the return status of the script
#. and always print the error message.
-#: ldfile.c:410 ldfile.c:494 ldfile.c:498
+#: ldfile.c:624 ldfile.c:708 ldfile.c:712
msgid "%P: cannot find %s: %E\n"
msgstr ""
-#: ldfile.c:462
+#: ldfile.c:676
msgid "%P: cannot find %s inside %s\n"
msgstr ""
-#: ldfile.c:477 ldmain.c:1458
+#: ldfile.c:691 ldmain.c:1462
msgid "%P: About to run error handling script '%s' with arguments: '%s' '%s'\n"
msgstr ""
-#: ldfile.c:481 ldmain.c:1462
+#: ldfile.c:695 ldmain.c:1466
msgid "error handling script"
msgstr ""
-#: ldfile.c:487 ldmain.c:1468
+#: ldfile.c:701 ldmain.c:1472
msgid "%P: Failed to run error handling script '%s', reason: "
msgstr ""
-#: ldfile.c:508
+#: ldfile.c:722
msgid "%P: note to link with %s use -l:%s or rename it to lib%s\n"
msgstr ""
-#: ldfile.c:537
+#: ldfile.c:754
#, c-format
msgid "cannot find script file %s\n"
msgstr ""
-#: ldfile.c:539
+#: ldfile.c:756
#, c-format
msgid "opened script file %s\n"
msgstr ""
-#: ldfile.c:688
+#: ldfile.c:905
msgid "%F%P: error: linker script file '%s' appears multiple times\n"
msgstr ""
-#: ldfile.c:710
+#: ldfile.c:927
msgid "%F%P: cannot open linker script file %s: %E\n"
msgstr ""
-#: ldfile.c:783
+#: ldfile.c:998
msgid "%F%P: cannot represent machine `%s'\n"
msgstr ""
-#: ldlang.c:1357
+#: ldlang.c:1414
msgid "%P:%pS: warning: redeclaration of memory region `%s'\n"
msgstr ""
-#: ldlang.c:1363
+#: ldlang.c:1420
msgid "%P:%pS: warning: memory region `%s' not declared\n"
msgstr ""
-#: ldlang.c:1399
+#: ldlang.c:1456
msgid "%F%P:%pS: error: alias for default memory region\n"
msgstr ""
-#: ldlang.c:1410
+#: ldlang.c:1467
msgid "%F%P:%pS: error: redefinition of memory region alias `%s'\n"
msgstr ""
-#: ldlang.c:1417
+#: ldlang.c:1474
msgid "%F%P:%pS: error: memory region `%s' for alias `%s' does not exist\n"
msgstr ""
-#: ldlang.c:1478 ldlang.c:1513
+#: ldlang.c:1535 ldlang.c:1570
msgid "%F%P: failed creating section `%s': %E\n"
msgstr ""
-#: ldlang.c:2215
+#: ldlang.c:2275
msgid ""
"\n"
"As-needed library included to satisfy reference by file (symbol)\n"
"\n"
msgstr ""
-#: ldlang.c:2278
-#, c-format
+#: ldlang.c:2340
msgid ""
"\n"
"Discarded input sections\n"
"\n"
msgstr ""
-#: ldlang.c:2286
+#: ldlang.c:2348
+msgid ""
+"\n"
+"There are no discarded input sections\n"
+msgstr ""
+
+#: ldlang.c:2350
msgid ""
"\n"
"Memory Configuration\n"
"\n"
msgstr ""
-#: ldlang.c:2288
+#: ldlang.c:2352
msgid "Name"
msgstr ""
-#: ldlang.c:2288
+#: ldlang.c:2352
msgid "Origin"
msgstr ""
-#: ldlang.c:2288
+#: ldlang.c:2352
msgid "Length"
msgstr ""
-#: ldlang.c:2288
+#: ldlang.c:2352
msgid "Attributes"
msgstr ""
-#: ldlang.c:2312
-#, c-format
+#: ldlang.c:2376
msgid ""
"\n"
"Linker script and memory map\n"
"\n"
msgstr ""
-#: ldlang.c:2365
+#: ldlang.c:2429
msgid "%F%P: illegal use of `%s' section\n"
msgstr ""
-#: ldlang.c:2374
+#: ldlang.c:2438
msgid "%F%P: output format %s cannot represent section called %s: %E\n"
msgstr ""
-#: ldlang.c:2541
+#: ldlang.c:2619
msgid ""
"%P:%pS: warning: --enable-non-contiguous-regions makes section `%pA' from `%"
"pB' match /DISCARD/ clause.\n"
msgstr ""
-#: ldlang.c:2574
+#: ldlang.c:2643
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 ""
-#: ldlang.c:2916
+#: ldlang.c:3021
msgid "%P: %pB: file not recognized: %E; matching formats:"
msgstr ""
-#: ldlang.c:2925
+#: ldlang.c:3030
msgid "%F%P: %pB: file not recognized: %E\n"
msgstr ""
-#: ldlang.c:2998
+#: ldlang.c:3103
msgid "%F%P: %pB: member %pB in archive is not an object\n"
msgstr ""
-#: ldlang.c:3268
+#: ldlang.c:3373
msgid "%F%P: input file '%s' is the same as output file\n"
msgstr ""
-#: ldlang.c:3316
+#: ldlang.c:3421
msgid ""
"%P: warning: could not find any targets that match endianness requirement\n"
msgstr ""
-#: ldlang.c:3330
+#: ldlang.c:3435
msgid "%F%P: target %s not found\n"
msgstr ""
-#: ldlang.c:3332
+#: ldlang.c:3437
msgid "%F%P: cannot open output file %s: %E\n"
msgstr ""
-#: ldlang.c:3338
+#: ldlang.c:3443
msgid "%F%P: %s: can not make object file: %E\n"
msgstr ""
-#: ldlang.c:3342
+#: ldlang.c:3447
msgid "%F%P: %s: can not set architecture: %E\n"
msgstr ""
-#: ldlang.c:3522
+#: ldlang.c:3634
msgid "%P: warning: %s contains output sections; did you forget -T?\n"
msgstr ""
-#: ldlang.c:3569
+#: ldlang.c:3681
#, c-format
msgid "%s: %s\n"
msgstr ""
-#: ldlang.c:3569
+#: ldlang.c:3681
msgid "CTF warning"
msgstr ""
-#: ldlang.c:3569
+#: ldlang.c:3681
msgid "CTF error"
msgstr ""
-#: ldlang.c:3575
+#: ldlang.c:3687
#, c-format
msgid "CTF error: cannot get CTF errors: `%s'\n"
msgstr ""
-#: ldlang.c:3609
+#: ldlang.c:3721
msgid ""
"%P: warning: CTF section in %pB not loaded; its types will be discarded: %s\n"
msgstr ""
-#: ldlang.c:3638
+#: ldlang.c:3750
msgid "%P: warning: CTF output not created: `%s'\n"
msgstr ""
-#: ldlang.c:3681
+#: ldlang.c:3793
msgid "%P: warning: CTF section in %pB cannot be linked: `%s'\n"
msgstr ""
-#: ldlang.c:3701
+#: ldlang.c:3813
msgid "%P: warning: CTF linking failed; output will have no CTF section: %s\n"
msgstr ""
-#: ldlang.c:3772
+#: ldlang.c:3884
msgid ""
"%P: warning: CTF section emission failed; output will have no CTF section: %"
"s\n"
msgstr ""
-#: ldlang.c:3811
+#: ldlang.c:3923
msgid ""
"%P: warning: CTF section in %pB not linkable: %P was built without support "
"for CTF\n"
msgstr ""
-#: ldlang.c:3949
+#: ldlang.c:4061
msgid "%X%P: required symbol `%s' not defined\n"
msgstr ""
-#: ldlang.c:4147 ldlang.c:4156
+#: ldlang.c:4262 ldlang.c:4271
msgid "%F%P: invalid type for output section `%s'\n"
msgstr ""
-#: ldlang.c:4290
+#: ldlang.c:4407
msgid ""
"warning: INSERT statement in linker script is incompatible with --enable-non-"
"contiguous-regions.\n"
msgstr ""
-#: ldlang.c:4303
+#: ldlang.c:4420
msgid "%F%P: %s not found for insert\n"
msgstr ""
-#: ldlang.c:4539
+#: ldlang.c:4692
msgid " load address 0x%V"
msgstr ""
-#: ldlang.c:4759
+#: ldlang.c:4957
msgid "%W (size before relaxing)\n"
msgstr ""
-#: ldlang.c:4850
+#: ldlang.c:5086
#, c-format
msgid "Address of section %s set to "
msgstr ""
-#: ldlang.c:5042
+#: ldlang.c:5288
#, c-format
msgid "Fail with %d\n"
msgstr ""
-#: ldlang.c:5255
+#: ldlang.c:5502
msgid ""
"%F%P: Output section `%pA' not large enough for the linker-created stubs "
"section `%pA'.\n"
msgstr ""
-#: ldlang.c:5260
+#: ldlang.c:5507
msgid ""
"%F%P: Relaxation not supported with --enable-non-contiguous-regions (section "
"`%pA' would overflow `%pA' after it changed size).\n"
msgstr ""
-#: ldlang.c:5369
+#: ldlang.c:5616
msgid "%X%P: section %s VMA wraps around address space\n"
msgstr ""
-#: ldlang.c:5375
+#: ldlang.c:5622
msgid "%X%P: section %s LMA wraps around address space\n"
msgstr ""
-#: ldlang.c:5427
+#: ldlang.c:5674
msgid "%X%P: section %s LMA [%V,%V] overlaps section %s LMA [%V,%V]\n"
msgstr ""
-#: ldlang.c:5471
+#: ldlang.c:5718
msgid "%X%P: section %s VMA [%V,%V] overlaps section %s VMA [%V,%V]\n"
msgstr ""
-#: ldlang.c:5494
+#: ldlang.c:5741
msgid "%X%P: region `%s' overflowed by %lu byte\n"
msgid_plural "%X%P: region `%s' overflowed by %lu bytes\n"
msgstr[0] ""
msgstr[1] ""
-#: ldlang.c:5519
+#: ldlang.c:5766
msgid "%X%P: address 0x%v of %pB section `%s' is not within region `%s'\n"
msgstr ""
-#: ldlang.c:5530
+#: ldlang.c:5777
msgid "%X%P: %pB section `%s' will not fit in region `%s'\n"
msgstr ""
-#: ldlang.c:5616
+#: ldlang.c:5863
msgid ""
"%F%P:%pS: non constant or forward reference address expression for section %"
"s\n"
msgstr ""
-#: ldlang.c:5641
+#: ldlang.c:5888
msgid "%X%P: internal error on COFF shared library section %s\n"
msgstr ""
-#: ldlang.c:5699
+#: ldlang.c:5946
msgid "%F%P: error: no memory region specified for loadable section `%s'\n"
msgstr ""
-#: ldlang.c:5703
+#: ldlang.c:5950
msgid "%P: warning: no memory region specified for loadable section `%s'\n"
msgstr ""
-#: ldlang.c:5737
+#: ldlang.c:5984
msgid "%P: warning: start of section %s changed by %ld\n"
msgstr ""
-#: ldlang.c:5829
+#: ldlang.c:6077
msgid "%P: warning: dot moved backwards before `%s'\n"
msgstr ""
-#: ldlang.c:6010
+#: ldlang.c:6253
msgid "%F%P: can't relax section: %E\n"
msgstr ""
-#: ldlang.c:6422
+#: ldlang.c:6662
msgid "%F%P: invalid data statement\n"
msgstr ""
-#: ldlang.c:6455
+#: ldlang.c:6695
msgid "%F%P: invalid reloc statement\n"
msgstr ""
-#: ldlang.c:6873
+#: ldlang.c:7113
msgid ""
"%F%P: --gc-sections requires a defined symbol root specified by -e or -u\n"
msgstr ""
-#: ldlang.c:6898
+#: ldlang.c:7138
msgid "%F%P: %s: can't set start address\n"
msgstr ""
-#: ldlang.c:6911 ldlang.c:6930
+#: ldlang.c:7151 ldlang.c:7170
msgid "%F%P: can't set start address\n"
msgstr ""
-#: ldlang.c:6924
+#: ldlang.c:7164
msgid "%P: warning: cannot find entry symbol %s; defaulting to %V\n"
msgstr ""
-#: ldlang.c:6935 ldlang.c:6943
+#: ldlang.c:7175 ldlang.c:7183
msgid "%P: warning: cannot find entry symbol %s; not setting start address\n"
msgstr ""
-#: ldlang.c:6999
+#: ldlang.c:7239
msgid ""
"%F%P: relocatable linking with relocations from format %s (%pB) to format %s "
"(%pB) is not supported\n"
msgstr ""
-#: ldlang.c:7009
+#: ldlang.c:7249
msgid ""
"%X%P: %s architecture of input file `%pB' is incompatible with %s output\n"
msgstr ""
-#: ldlang.c:7033
+#: ldlang.c:7273
msgid "%X%P: failed to merge target specific data of file %pB\n"
msgstr ""
-#: ldlang.c:7104
+#: ldlang.c:7344
msgid "%F%P: could not define common symbol `%pT': %E\n"
msgstr ""
-#: ldlang.c:7116
+#: ldlang.c:7356
msgid ""
"\n"
"Allocating common symbols\n"
msgstr ""
-#: ldlang.c:7117
+#: ldlang.c:7357
msgid ""
"Common symbol size file\n"
"\n"
msgstr ""
-#: ldlang.c:7174
+#: ldlang.c:7414
msgid "%X%P: error: unplaced orphan section `%pA' from `%pB'\n"
msgstr ""
-#: ldlang.c:7192
+#: ldlang.c:7432
msgid ""
"%P: warning: orphan section `%pA' from `%pB' being placed in section `%s'\n"
msgstr ""
-#: ldlang.c:7282
+#: ldlang.c:7522
msgid "%F%P: invalid character %c (%d) in flags\n"
msgstr ""
-#: ldlang.c:7394
+#: ldlang.c:7634
msgid "%F%P:%pS: error: align with input and explicit align specified\n"
msgstr ""
-#: ldlang.c:7865
+#: ldlang.c:8105
msgid ""
"%P: warning: --enable-non-contiguous-regions discards section `%pA' from `%"
"pB'\n"
msgstr ""
-#: ldlang.c:7944
+#: ldlang.c:8184
msgid "%F%P: %s: plugin reported error after all symbols read\n"
msgstr ""
-#: ldlang.c:8409
+#: ldlang.c:8762
msgid "%F%P: multiple STARTUP files\n"
msgstr ""
-#: ldlang.c:8455
+#: ldlang.c:8808
msgid "%X%P:%pS: section has both a load address and a load region\n"
msgstr ""
-#: ldlang.c:8561
+#: ldlang.c:8914
msgid ""
"%X%P:%pS: PHDRS and FILEHDR are not supported when prior PT_LOAD headers "
"lack them\n"
msgstr ""
-#: ldlang.c:8634
+#: ldlang.c:8987
msgid "%F%P: no sections assigned to phdrs\n"
msgstr ""
-#: ldlang.c:8672
+#: ldlang.c:9025
msgid "%F%P: bfd_record_phdr failed: %E\n"
msgstr ""
-#: ldlang.c:8692
+#: ldlang.c:9045
msgid "%X%P: section `%s' assigned to non-existent phdr `%s'\n"
msgstr ""
-#: ldlang.c:9115
+#: ldlang.c:9468
msgid "%X%P: unknown language `%s' in version information\n"
msgstr ""
-#: ldlang.c:9260
+#: ldlang.c:9613
msgid ""
"%X%P: anonymous version tag cannot be combined with other version tags\n"
msgstr ""
-#: ldlang.c:9269
+#: ldlang.c:9622
msgid "%X%P: duplicate version tag `%s'\n"
msgstr ""
-#: ldlang.c:9290 ldlang.c:9299 ldlang.c:9317 ldlang.c:9327
+#: ldlang.c:9643 ldlang.c:9652 ldlang.c:9670 ldlang.c:9680
msgid "%X%P: duplicate expression `%s' in version information\n"
msgstr ""
-#: ldlang.c:9367
+#: ldlang.c:9720
msgid "%X%P: unable to find version dependency `%s'\n"
msgstr ""
-#: ldlang.c:9390
+#: ldlang.c:9743
msgid "%X%P: unable to read .exports section contents\n"
msgstr ""
-#: ldlang.c:9436
+#: ldlang.c:9789
msgid "%P: invalid origin for memory region %s\n"
msgstr ""
-#: ldlang.c:9448
+#: ldlang.c:9801
msgid "%P: invalid length for memory region %s\n"
msgstr ""
-#: ldlang.c:9560
+#: ldlang.c:9913
msgid "%X%P: unknown feature `%s'\n"
msgstr ""
-#: ldmain.c:196
+#: ldmain.c:195
msgid "%F%P: cannot open dependency file %s: %E\n"
msgstr ""
-#: ldmain.c:264
+#: ldmain.c:268
msgid "%F%P: fatal error: libbfd ABI mismatch\n"
msgstr ""
-#: ldmain.c:300
+#: ldmain.c:304
msgid "%X%P: can't set BFD default target to `%s': %E\n"
msgstr ""
-#: ldmain.c:405
+#: ldmain.c:409
msgid "built in linker script"
msgstr ""
-#: ldmain.c:415
+#: ldmain.c:419
msgid "using external linker script:"
msgstr ""
-#: ldmain.c:417
+#: ldmain.c:421
msgid "using internal linker script:"
msgstr ""
-#: ldmain.c:464
+#: ldmain.c:468
msgid "%F%P: --no-define-common may not be used without -shared\n"
msgstr ""
-#: ldmain.c:470
+#: ldmain.c:474
msgid "%F%P: no input files\n"
msgstr ""
-#: ldmain.c:474
+#: ldmain.c:478
msgid "%P: mode %s\n"
msgstr ""
-#: ldmain.c:490 ends32belf.c:455 ends32belf16m.c:455 ends32belf_linux.c:588
-#: ends32elf.c:455 ends32elf16m.c:455 ends32elf_linux.c:588
+#: ldmain.c:494 ends32belf.c:461 ends32belf16m.c:461 ends32belf_linux.c:594
+#: ends32elf.c:461 ends32elf16m.c:461 ends32elf_linux.c:594
msgid "%F%P: cannot open map file %s: %E\n"
msgstr ""
-#: ldmain.c:554
+#: ldmain.c:558
msgid "%P: link errors found, deleting executable `%s'\n"
msgstr ""
-#: ldmain.c:563
+#: ldmain.c:569
msgid "%F%P: %s: final close failed: %E\n"
msgstr ""
-#: ldmain.c:590
+#: ldmain.c:596
msgid "%F%P: unable to open for source of copy `%s'\n"
msgstr ""
-#: ldmain.c:593
+#: ldmain.c:599
msgid "%F%P: unable to open for destination of copy `%s'\n"
msgstr ""
-#: ldmain.c:600
+#: ldmain.c:606
msgid "%P: error writing file `%s'\n"
msgstr ""
-#: ldmain.c:605 pe-dll.c:1968
+#: ldmain.c:611 pe-dll.c:1985
#, c-format
msgid "%P: error closing file `%s'\n"
msgstr ""
-#: ldmain.c:619
+#: ldmain.c:623
#, c-format
msgid "%s: total time in link: %ld.%06ld\n"
msgstr ""
-#: ldmain.c:706
+#: ldmain.c:710
msgid "%F%P: missing argument to -m\n"
msgstr ""
-#: ldmain.c:760 ldmain.c:777 ldmain.c:797 ldmain.c:829 pe-dll.c:1405
+#: ldmain.c:764 ldmain.c:781 ldmain.c:801 ldmain.c:833 pe-dll.c:1410
msgid "%F%P: bfd_hash_table_init failed: %E\n"
msgstr ""
-#: ldmain.c:764 ldmain.c:781 ldmain.c:801
+#: ldmain.c:768 ldmain.c:785 ldmain.c:805
msgid "%F%P: bfd_hash_lookup failed: %E\n"
msgstr ""
-#: ldmain.c:815
+#: ldmain.c:819
msgid "%X%P: error: duplicate retain-symbols-file\n"
msgstr ""
-#: ldmain.c:859
+#: ldmain.c:863
msgid "%F%P: bfd_hash_lookup for insertion failed: %E\n"
msgstr ""
-#: ldmain.c:864
+#: ldmain.c:868
msgid "%P: `-retain-symbols-file' overrides `-s' and `-S'\n"
msgstr ""
-#: ldmain.c:980
+#: ldmain.c:984
msgid ""
"Archive member included to satisfy reference by file (symbol)\n"
"\n"
msgstr ""
-#: ldmain.c:1086
+#: ldmain.c:1090
msgid "%P: %C: warning: multiple definition of `%pT'"
msgstr ""
-#: ldmain.c:1089
+#: ldmain.c:1093
msgid "%X%P: %C: multiple definition of `%pT'"
msgstr ""
-#: ldmain.c:1092
+#: ldmain.c:1096
msgid "; %D: first defined here"
msgstr ""
-#: ldmain.c:1097
+#: ldmain.c:1101
msgid "%P: disabling relaxation; it will not work with multiple definitions\n"
msgstr ""
-#: ldmain.c:1150
+#: ldmain.c:1154
msgid "%P: %pB: warning: definition of `%pT' overriding common from %pB\n"
msgstr ""
-#: ldmain.c:1154
+#: ldmain.c:1158
msgid "%P: %pB: warning: definition of `%pT' overriding common\n"
msgstr ""
-#: ldmain.c:1163
+#: ldmain.c:1167
msgid "%P: %pB: warning: common of `%pT' overridden by definition from %pB\n"
msgstr ""
-#: ldmain.c:1167
+#: ldmain.c:1171
msgid "%P: %pB: warning: common of `%pT' overridden by definition\n"
msgstr ""
-#: ldmain.c:1176
+#: ldmain.c:1180
msgid ""
"%P: %pB: warning: common of `%pT' overridden by larger common from %pB\n"
msgstr ""
-#: ldmain.c:1180
+#: ldmain.c:1184
msgid "%P: %pB: warning: common of `%pT' overridden by larger common\n"
msgstr ""
-#: ldmain.c:1187
+#: ldmain.c:1191
msgid "%P: %pB: warning: common of `%pT' overriding smaller common from %pB\n"
msgstr ""
-#: ldmain.c:1191
+#: ldmain.c:1195
msgid "%P: %pB: warning: common of `%pT' overriding smaller common\n"
msgstr ""
-#: ldmain.c:1198
+#: ldmain.c:1202
msgid "%P: %pB and %pB: warning: multiple common of `%pT'\n"
msgstr ""
-#: ldmain.c:1201
+#: ldmain.c:1205
msgid "%P: %pB: warning: multiple common of `%pT'\n"
msgstr ""
-#: ldmain.c:1220 ldmain.c:1256
+#: ldmain.c:1224 ldmain.c:1260
msgid "%P: warning: global constructor %s used\n"
msgstr ""
-#: ldmain.c:1266
+#: ldmain.c:1270
msgid "%F%P: BFD backend error: BFD_RELOC_CTOR unsupported\n"
msgstr ""
#. We found a reloc for the symbol we are looking for.
-#: ldmain.c:1338 ldmain.c:1340 ldmain.c:1342 ldmain.c:1350 ldmain.c:1393
+#: ldmain.c:1342 ldmain.c:1344 ldmain.c:1346 ldmain.c:1354 ldmain.c:1397
msgid "warning: "
msgstr ""
-#: ldmain.c:1483
-msgid "%X%P: %C: undefined reference to `%pT'\n"
+#: ldmain.c:1487
+msgid "%X%P: %H: undefined reference to `%pT'\n"
msgstr ""
-#: ldmain.c:1486
-msgid "%P: %C: warning: undefined reference to `%pT'\n"
+#: ldmain.c:1490
+msgid "%P: %H: warning: undefined reference to `%pT'\n"
msgstr ""
-#: ldmain.c:1492
+#: ldmain.c:1496
msgid "%X%P: %D: more undefined references to `%pT' follow\n"
msgstr ""
-#: ldmain.c:1495
+#: ldmain.c:1499
msgid "%P: %D: warning: more undefined references to `%pT' follow\n"
msgstr ""
-#: ldmain.c:1506
+#: ldmain.c:1510
msgid "%X%P: %pB: undefined reference to `%pT'\n"
msgstr ""
-#: ldmain.c:1509
+#: ldmain.c:1513
msgid "%P: %pB: warning: undefined reference to `%pT'\n"
msgstr ""
-#: ldmain.c:1515
+#: ldmain.c:1519
msgid "%X%P: %pB: more undefined references to `%pT' follow\n"
msgstr ""
-#: ldmain.c:1518
+#: ldmain.c:1522
msgid "%P: %pB: warning: more undefined references to `%pT' follow\n"
msgstr ""
-#: ldmain.c:1555
+#: ldmain.c:1559
msgid " additional relocation overflows omitted from the output\n"
msgstr ""
-#: ldmain.c:1568
+#: ldmain.c:1572
#, c-format
msgid " relocation truncated to fit: %s against undefined symbol `%pT'"
msgstr ""
-#: ldmain.c:1574
+#: ldmain.c:1578
#, c-format
msgid ""
" relocation truncated to fit: %s against symbol `%pT' defined in %pA section "
"in %pB"
msgstr ""
-#: ldmain.c:1587
+#: ldmain.c:1591
#, c-format
msgid " relocation truncated to fit: %s against `%pT'"
msgstr ""
-#: ldmain.c:1603
+#: ldmain.c:1607
msgid "%X%H: dangerous relocation: %s\n"
msgstr ""
-#: ldmain.c:1617
+#: ldmain.c:1621
msgid "%X%H: reloc refers to symbol `%pT' which is not being output\n"
msgstr ""
-#: ldmain.c:1651
+#: ldmain.c:1655
msgid "%P: %pB: reference to %s\n"
msgstr ""
-#: ldmain.c:1653
+#: ldmain.c:1657
msgid "%P: %pB: definition of %s\n"
msgstr ""
-#: ldmisc.c:363
+#: ldmisc.c:366
#, c-format
msgid "%pB: in function `%pT':\n"
msgstr ""
-#: ldmisc.c:503
+#: ldmisc.c:506
#, c-format
msgid "no symbol"
msgstr ""
-#: ldmisc.c:610
+#: ldmisc.c:626
msgid "%F%P: internal error %s %d\n"
msgstr ""
-#: ldmisc.c:674
+#: ldmisc.c:690
msgid "%P: internal error: aborting at %s:%d in %s\n"
msgstr ""
-#: ldmisc.c:677
+#: ldmisc.c:693
msgid "%P: internal error: aborting at %s:%d\n"
msgstr ""
-#: ldmisc.c:679
+#: ldmisc.c:695
msgid "%F%P: please report this bug\n"
msgstr ""
@@ -1187,7 +1229,7 @@ msgstr ""
msgid "%F%P: final link failed: %E\n"
msgstr ""
-#: lexsup.c:105 lexsup.c:290
+#: lexsup.c:105 lexsup.c:300
msgid "KEYWORD"
msgstr ""
@@ -1203,7 +1245,7 @@ msgstr ""
msgid "Set architecture"
msgstr ""
-#: lexsup.c:110 lexsup.c:430
+#: lexsup.c:110 lexsup.c:440
msgid "TARGET"
msgstr ""
@@ -1211,9 +1253,9 @@ msgstr ""
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:452 lexsup.c:521 lexsup.c:534
-#: lexsup.c:538
+#: lexsup.c:113 lexsup.c:119 lexsup.c:180 lexsup.c:184 lexsup.c:220
+#: lexsup.c:224 lexsup.c:239 lexsup.c:241 lexsup.c:462 lexsup.c:531
+#: lexsup.c:544 lexsup.c:548
msgid "FILE"
msgstr ""
@@ -1233,8 +1275,8 @@ msgstr ""
msgid "Force group members out of groups"
msgstr ""
-#: lexsup.c:124 lexsup.c:498 lexsup.c:500 lexsup.c:502 lexsup.c:504
-#: lexsup.c:506 lexsup.c:508
+#: lexsup.c:124 lexsup.c:508 lexsup.c:510 lexsup.c:512 lexsup.c:514
+#: lexsup.c:516 lexsup.c:518
msgid "ADDRESS"
msgstr ""
@@ -1261,621 +1303,633 @@ msgid ""
msgstr ""
#: lexsup.c:134
-msgid "Link big-endian objects"
+msgid "Disable the LINKER_VERSION linker script directive"
msgstr ""
#: lexsup.c:136
+msgid "Enable the LINKER_VERSION linker script directive"
+msgstr ""
+
+#: lexsup.c:138
+msgid "Link big-endian objects"
+msgstr ""
+
+#: lexsup.c:140
msgid "Link little-endian objects"
msgstr ""
-#: lexsup.c:138 lexsup.c:141
+#: lexsup.c:142 lexsup.c:145
msgid "SHLIB"
msgstr ""
-#: lexsup.c:138
+#: lexsup.c:142
msgid "Auxiliary filter for shared object symbol table"
msgstr ""
-#: lexsup.c:141
+#: lexsup.c:145
msgid "Filter for shared object symbol table"
msgstr ""
-#: lexsup.c:144
+#: lexsup.c:148
msgid "Ignored"
msgstr ""
-#: lexsup.c:146
+#: lexsup.c:150
msgid "SIZE"
msgstr ""
-#: lexsup.c:146
+#: lexsup.c:150
msgid "Small data size (if no size, same as --shared)"
msgstr ""
-#: lexsup.c:149
+#: lexsup.c:153
msgid "FILENAME"
msgstr ""
-#: lexsup.c:149
+#: lexsup.c:153
msgid "Set internal name of shared library"
msgstr ""
-#: lexsup.c:151
+#: lexsup.c:155
msgid "PROGRAM"
msgstr ""
-#: lexsup.c:151
+#: lexsup.c:155
msgid "Set PROGRAM as the dynamic linker to use"
msgstr ""
-#: lexsup.c:154
+#: lexsup.c:158
msgid "Produce an executable with no program interpreter header"
msgstr ""
-#: lexsup.c:157
+#: lexsup.c:161
msgid "LIBNAME"
msgstr ""
-#: lexsup.c:157
+#: lexsup.c:161
msgid "Search for library LIBNAME"
msgstr ""
-#: lexsup.c:159
+#: lexsup.c:163
msgid "DIRECTORY"
msgstr ""
-#: lexsup.c:159
+#: lexsup.c:163
msgid "Add DIRECTORY to library search path"
msgstr ""
-#: lexsup.c:162
+#: lexsup.c:166
msgid "Override the default sysroot location"
msgstr ""
-#: lexsup.c:164
+#: lexsup.c:168
msgid "EMULATION"
msgstr ""
-#: lexsup.c:164
+#: lexsup.c:168
msgid "Set emulation"
msgstr ""
-#: lexsup.c:166
+#: lexsup.c:170
msgid "Print map file on standard output"
msgstr ""
-#: lexsup.c:168
+#: lexsup.c:172
msgid "Do not page align data"
msgstr ""
-#: lexsup.c:170
+#: lexsup.c:174
msgid "Do not page align data, do not make text readonly"
msgstr ""
-#: lexsup.c:173
+#: lexsup.c:177
msgid "Page align data, make text readonly"
msgstr ""
-#: lexsup.c:176
+#: lexsup.c:180
msgid "Set output file name"
msgstr ""
-#: lexsup.c:178
+#: lexsup.c:182
msgid "Optimize output file"
msgstr ""
-#: lexsup.c:180
+#: lexsup.c:184
msgid "Generate import library"
msgstr ""
-#: lexsup.c:183 lexsup.c:194
+#: lexsup.c:187 lexsup.c:198
msgid "PLUGIN"
msgstr ""
-#: lexsup.c:183
+#: lexsup.c:187
msgid "Load named plugin"
msgstr ""
-#: lexsup.c:185 lexsup.c:196
+#: lexsup.c:189 lexsup.c:200
msgid "ARG"
msgstr ""
-#: lexsup.c:185
+#: lexsup.c:189
msgid "Send arg to last-loaded plugin"
msgstr ""
-#: lexsup.c:187 lexsup.c:190
+#: lexsup.c:191 lexsup.c:194
msgid "Ignored for GCC LTO option compatibility"
msgstr ""
-#: lexsup.c:194
+#: lexsup.c:198
msgid "Load named plugin (ignored)"
msgstr ""
-#: lexsup.c:196
+#: lexsup.c:200
msgid "Send arg to last-loaded plugin (ignored)"
msgstr ""
-#: lexsup.c:199
+#: lexsup.c:203
msgid "Ignored for GCC linker option compatibility"
msgstr ""
-#: lexsup.c:202 lexsup.c:205
+#: lexsup.c:206 lexsup.c:209
msgid "Ignored for gold option compatibility"
msgstr ""
-#: lexsup.c:208
+#: lexsup.c:212
msgid "Ignored for SVR4 compatibility"
msgstr ""
-#: lexsup.c:212
+#: lexsup.c:216
msgid "Generate relocatable output"
msgstr ""
-#: lexsup.c:216
+#: lexsup.c:220
msgid "Just link symbols (if directory, same as --rpath)"
msgstr ""
-#: lexsup.c:219
+#: lexsup.c:226
+msgid "PATTERN=FILE"
+msgstr ""
+
+#: lexsup.c:229
msgid "Strip all symbols"
msgstr ""
-#: lexsup.c:221
+#: lexsup.c:231
msgid "Strip debugging symbols"
msgstr ""
-#: lexsup.c:223
+#: lexsup.c:233
msgid "Strip symbols in discarded sections"
msgstr ""
-#: lexsup.c:225
+#: lexsup.c:235
msgid "Do not strip symbols in discarded sections"
msgstr ""
-#: lexsup.c:227
+#: lexsup.c:237
msgid "Trace file opens"
msgstr ""
-#: lexsup.c:229
+#: lexsup.c:239
msgid "Read linker script"
msgstr ""
-#: lexsup.c:231
+#: lexsup.c:241
msgid "Read default linker script"
msgstr ""
-#: lexsup.c:235 lexsup.c:238 lexsup.c:256 lexsup.c:348 lexsup.c:372
-#: lexsup.c:491 lexsup.c:524 lexsup.c:536 lexsup.c:582 lexsup.c:585
+#: lexsup.c:245 lexsup.c:248 lexsup.c:266 lexsup.c:358 lexsup.c:382
+#: lexsup.c:501 lexsup.c:534 lexsup.c:546 lexsup.c:605 lexsup.c:608
msgid "SYMBOL"
msgstr ""
-#: lexsup.c:235
+#: lexsup.c:245
msgid "Start with undefined reference to SYMBOL"
msgstr ""
-#: lexsup.c:238
+#: lexsup.c:248
msgid "Require SYMBOL be defined in the final output"
msgstr ""
-#: lexsup.c:241
+#: lexsup.c:251
msgid "[=SECTION]"
msgstr ""
-#: lexsup.c:242
+#: lexsup.c:252
msgid "Don't merge input [SECTION | orphan] sections"
msgstr ""
-#: lexsup.c:244
+#: lexsup.c:254
msgid "Build global constructor/destructor tables"
msgstr ""
-#: lexsup.c:246
+#: lexsup.c:256
msgid "Print version information"
msgstr ""
-#: lexsup.c:248
+#: lexsup.c:258
msgid "Print version and emulation information"
msgstr ""
-#: lexsup.c:250
+#: lexsup.c:260
msgid "Discard all local symbols"
msgstr ""
-#: lexsup.c:252
+#: lexsup.c:262
msgid "Discard temporary local symbols (default)"
msgstr ""
-#: lexsup.c:254
+#: lexsup.c:264
msgid "Don't discard any local symbols"
msgstr ""
-#: lexsup.c:256
+#: lexsup.c:266
msgid "Trace mentions of SYMBOL"
msgstr ""
-#: lexsup.c:258 lexsup.c:454 lexsup.c:456
+#: lexsup.c:268 lexsup.c:464 lexsup.c:466
msgid "PATH"
msgstr ""
-#: lexsup.c:258
+#: lexsup.c:268
msgid "Default search path for Solaris compatibility"
msgstr ""
-#: lexsup.c:261
+#: lexsup.c:271
msgid "Start a group"
msgstr ""
-#: lexsup.c:263
+#: lexsup.c:273
msgid "End a group"
msgstr ""
-#: lexsup.c:267
+#: lexsup.c:277
msgid "Accept input files whose architecture cannot be determined"
msgstr ""
-#: lexsup.c:271
+#: lexsup.c:281
msgid "Reject input files whose architecture is unknown"
msgstr ""
-#: lexsup.c:283
+#: lexsup.c:293
msgid "Only set DT_NEEDED for following dynamic libs if used"
msgstr ""
-#: lexsup.c:286
+#: lexsup.c:296
msgid ""
"Always set DT_NEEDED for dynamic libraries mentioned on\n"
" the command line"
msgstr ""
-#: lexsup.c:290
+#: lexsup.c:300
msgid "Ignored for SunOS compatibility"
msgstr ""
-#: lexsup.c:292
+#: lexsup.c:302
msgid "Link against shared libraries"
msgstr ""
-#: lexsup.c:298
+#: lexsup.c:308
msgid "Do not link against shared libraries"
msgstr ""
-#: lexsup.c:306
+#: lexsup.c:316
msgid "Don't bind global references locally"
msgstr ""
-#: lexsup.c:308
+#: lexsup.c:318
msgid "Bind global references locally"
msgstr ""
-#: lexsup.c:310
+#: lexsup.c:320
msgid "Bind global function references locally"
msgstr ""
-#: lexsup.c:312
+#: lexsup.c:322
msgid "Check section addresses for overlaps (default)"
msgstr ""
-#: lexsup.c:315
+#: lexsup.c:325
msgid "Do not check section addresses for overlaps"
msgstr ""
-#: lexsup.c:319
+#: lexsup.c:329
msgid "Copy DT_NEEDED links mentioned inside DSOs that follow"
msgstr ""
-#: lexsup.c:323
+#: lexsup.c:333
msgid "Do not copy DT_NEEDED links mentioned inside DSOs that follow"
msgstr ""
-#: lexsup.c:327
+#: lexsup.c:337
msgid "Output cross reference table"
msgstr ""
-#: lexsup.c:329
+#: lexsup.c:339
msgid "SYMBOL=EXPRESSION"
msgstr ""
-#: lexsup.c:329
+#: lexsup.c:339
msgid "Define a symbol"
msgstr ""
-#: lexsup.c:331
+#: lexsup.c:341
msgid "[=STYLE]"
msgstr ""
-#: lexsup.c:331
+#: lexsup.c:341
msgid "Demangle symbol names [using STYLE]"
msgstr ""
-#: lexsup.c:335
+#: lexsup.c:345
msgid ""
"Do not allow multiple definitions with symbols included\n"
" in filename invoked by -R or --just-symbols"
msgstr ""
-#: lexsup.c:340
+#: lexsup.c:350
msgid "Generate embedded relocs"
msgstr ""
-#: lexsup.c:342
+#: lexsup.c:352
msgid "Treat warnings as errors"
msgstr ""
-#: lexsup.c:345
+#: lexsup.c:355
msgid "Do not treat warnings as errors (default)"
msgstr ""
-#: lexsup.c:348
+#: lexsup.c:358
msgid "Call SYMBOL at unload-time"
msgstr ""
-#: lexsup.c:350
+#: lexsup.c:360
msgid "Force generation of file with .exe suffix"
msgstr ""
-#: lexsup.c:352
+#: lexsup.c:362
msgid "Remove unused sections (on some targets)"
msgstr ""
-#: lexsup.c:355
+#: lexsup.c:365
msgid "Don't remove unused sections (default)"
msgstr ""
-#: lexsup.c:358
+#: lexsup.c:368
msgid "List removed unused sections on stderr"
msgstr ""
-#: lexsup.c:361
+#: lexsup.c:371
msgid "Do not list removed unused sections"
msgstr ""
-#: lexsup.c:364
+#: lexsup.c:374
msgid "Keep exported symbols when removing unused sections"
msgstr ""
-#: lexsup.c:367
+#: lexsup.c:377
msgid "Set default hash table size close to <NUMBER>"
msgstr ""
-#: lexsup.c:370
+#: lexsup.c:380
msgid "Print option help"
msgstr ""
-#: lexsup.c:372
+#: lexsup.c:382
msgid "Call SYMBOL at load-time"
msgstr ""
-#: lexsup.c:374
+#: lexsup.c:384
msgid "FILE/DIR"
msgstr ""
-#: lexsup.c:374
+#: lexsup.c:384
msgid "Write a linker map to FILE or DIR/<outputname>.map"
msgstr ""
-#: lexsup.c:376
+#: lexsup.c:386
msgid "Do not define Common storage"
msgstr ""
-#: lexsup.c:378
+#: lexsup.c:388
msgid "Do not demangle symbol names"
msgstr ""
-#: lexsup.c:380
+#: lexsup.c:390
msgid "Use less memory and more disk I/O"
msgstr ""
-#: lexsup.c:382
+#: lexsup.c:392
msgid "Do not allow unresolved references in object files"
msgstr ""
-#: lexsup.c:385
+#: lexsup.c:395
msgid "Do not display any warning or error messages"
msgstr ""
-#: lexsup.c:388
+#: lexsup.c:398
msgid "Allow unresolved references in shared libraries"
msgstr ""
-#: lexsup.c:392
+#: lexsup.c:402
msgid "Do not allow unresolved references in shared libs"
msgstr ""
-#: lexsup.c:396
+#: lexsup.c:406
msgid "Allow multiple definitions"
msgstr ""
-#: lexsup.c:400
+#: lexsup.c:410
msgid "SCRIPT"
msgstr ""
-#: lexsup.c:400
+#: lexsup.c:410
msgid "Provide a script to help with undefined symbol errors"
msgstr ""
-#: lexsup.c:403
+#: lexsup.c:413
msgid "Allow undefined version"
msgstr ""
-#: lexsup.c:405
+#: lexsup.c:415
msgid "Disallow undefined version"
msgstr ""
-#: lexsup.c:407
+#: lexsup.c:417
msgid "Create default symbol version"
msgstr ""
-#: lexsup.c:410
+#: lexsup.c:420
msgid "Create default symbol version for imported symbols"
msgstr ""
-#: lexsup.c:413
+#: lexsup.c:423
msgid "Don't warn about mismatched input files"
msgstr ""
-#: lexsup.c:416
+#: lexsup.c:426
msgid "Don't warn on finding an incompatible library"
msgstr ""
-#: lexsup.c:419
+#: lexsup.c:429
msgid "Turn off --whole-archive"
msgstr ""
-#: lexsup.c:421
+#: lexsup.c:431
msgid "Create an output file even if errors occur"
msgstr ""
-#: lexsup.c:426
+#: lexsup.c:436
msgid ""
"Only use library directories specified on\n"
" the command line"
msgstr ""
-#: lexsup.c:430
+#: lexsup.c:440
msgid "Specify target of output file"
msgstr ""
-#: lexsup.c:433
+#: lexsup.c:443
msgid "Print default output format"
msgstr ""
-#: lexsup.c:435
+#: lexsup.c:445
msgid "Print current sysroot"
msgstr ""
-#: lexsup.c:437
+#: lexsup.c:447
msgid "Ignored for Linux compatibility"
msgstr ""
-#: lexsup.c:440
+#: lexsup.c:450
msgid "Reduce memory overheads, possibly taking much longer"
msgstr ""
-#: lexsup.c:444
+#: lexsup.c:454
msgid "Set the maximum cache size to SIZE bytes"
msgstr ""
-#: lexsup.c:447
+#: lexsup.c:457
msgid "Reduce code size by using target specific optimizations"
msgstr ""
-#: lexsup.c:449
+#: lexsup.c:459
msgid "Do not use relaxation techniques to reduce code size"
msgstr ""
-#: lexsup.c:452
+#: lexsup.c:462
msgid "Keep only symbols listed in FILE"
msgstr ""
-#: lexsup.c:454
+#: lexsup.c:464
msgid "Set runtime shared library search path"
msgstr ""
-#: lexsup.c:456
+#: lexsup.c:466
msgid "Set link time shared library search path"
msgstr ""
-#: lexsup.c:459
+#: lexsup.c:469
msgid "Create a shared library"
msgstr ""
-#: lexsup.c:463
+#: lexsup.c:473
msgid "Create a position independent executable"
msgstr ""
-#: lexsup.c:467
+#: lexsup.c:477
msgid "Create a position dependent executable (default)"
msgstr ""
-#: lexsup.c:469
+#: lexsup.c:479
msgid "[=ascending|descending]"
msgstr ""
-#: lexsup.c:470
+#: lexsup.c:480
msgid "Sort common symbols by alignment [in specified order]"
msgstr ""
-#: lexsup.c:475
+#: lexsup.c:485
msgid "name|alignment"
msgstr ""
-#: lexsup.c:476
+#: lexsup.c:486
msgid "Sort sections by name or maximum alignment"
msgstr ""
-#: lexsup.c:478
+#: lexsup.c:488
msgid "COUNT"
msgstr ""
-#: lexsup.c:478
+#: lexsup.c:488
msgid "How many tags to reserve in .dynamic section"
msgstr ""
-#: lexsup.c:481
+#: lexsup.c:491
msgid "[=SIZE]"
msgstr ""
-#: lexsup.c:481
+#: lexsup.c:491
msgid "Split output sections every SIZE octets"
msgstr ""
-#: lexsup.c:484
+#: lexsup.c:494
msgid "[=COUNT]"
msgstr ""
-#: lexsup.c:484
+#: lexsup.c:494
msgid "Split output sections every COUNT relocs"
msgstr ""
-#: lexsup.c:487
+#: lexsup.c:497
msgid "Print memory usage statistics"
msgstr ""
-#: lexsup.c:489
+#: lexsup.c:499
msgid "Display target specific options"
msgstr ""
-#: lexsup.c:491
+#: lexsup.c:501
msgid "Do task level linking"
msgstr ""
-#: lexsup.c:493
+#: lexsup.c:503
msgid "Use same format as native linker"
msgstr ""
-#: lexsup.c:495
+#: lexsup.c:505
msgid "SECTION=ADDRESS"
msgstr ""
-#: lexsup.c:495
+#: lexsup.c:505
msgid "Set address of named section"
msgstr ""
-#: lexsup.c:498
+#: lexsup.c:508
msgid "Set address of .bss section"
msgstr ""
-#: lexsup.c:500
+#: lexsup.c:510
msgid "Set address of .data section"
msgstr ""
-#: lexsup.c:502
+#: lexsup.c:512
msgid "Set address of .text section"
msgstr ""
-#: lexsup.c:504
+#: lexsup.c:514
msgid "Set address of text segment"
msgstr ""
-#: lexsup.c:506
+#: lexsup.c:516
msgid "Set address of rodata segment"
msgstr ""
-#: lexsup.c:508
+#: lexsup.c:518
msgid "Set address of ldata segment"
msgstr ""
-#: lexsup.c:511
+#: lexsup.c:521
msgid ""
"How to handle unresolved symbols. <method> is:\n"
" ignore-all, report-all, ignore-in-object-"
@@ -1883,214 +1937,206 @@ msgid ""
" ignore-in-shared-libs"
msgstr ""
-#: lexsup.c:516
+#: lexsup.c:526
msgid "[=NUMBER]"
msgstr ""
-#: lexsup.c:517
+#: lexsup.c:527
msgid "Output lots of information during link"
msgstr ""
-#: lexsup.c:521
+#: lexsup.c:531
msgid "Read version information script"
msgstr ""
-#: lexsup.c:524
+#: lexsup.c:534
msgid ""
"Take export symbols list from .exports, using\n"
" SYMBOL as the version."
msgstr ""
-#: lexsup.c:528
+#: lexsup.c:538
msgid "Add data symbols to dynamic list"
msgstr ""
-#: lexsup.c:530
+#: lexsup.c:540
msgid "Use C++ operator new/delete dynamic list"
msgstr ""
-#: lexsup.c:532
+#: lexsup.c:542
msgid "Use C++ typeinfo dynamic list"
msgstr ""
-#: lexsup.c:534
+#: lexsup.c:544
msgid "Read dynamic list"
msgstr ""
-#: lexsup.c:536
+#: lexsup.c:546
msgid "Export the specified symbol"
msgstr ""
-#: lexsup.c:538
+#: lexsup.c:548
msgid "Read export dynamic symbol list"
msgstr ""
-#: lexsup.c:540
+#: lexsup.c:550
msgid "Warn about duplicate common symbols"
msgstr ""
-#: lexsup.c:542
+#: lexsup.c:552
msgid "Warn if global constructors/destructors are seen"
msgstr ""
-#: lexsup.c:545
-msgid "Warn when creating an executable stack"
-msgstr ""
-
-#: lexsup.c:547
-msgid "Do not warn when creating an executable stack"
-msgstr ""
-
-#: lexsup.c:549
-msgid "Warn when creating executable segments"
-msgstr ""
-
-#: lexsup.c:551
-msgid "Do not warn when creating executable segments"
-msgstr ""
-
-#: lexsup.c:553
+#: lexsup.c:576
msgid "Warn if the multiple GP values are used"
msgstr ""
-#: lexsup.c:555
+#: lexsup.c:578
msgid "Warn only once per undefined symbol"
msgstr ""
-#: lexsup.c:557
+#: lexsup.c:580
msgid "Warn if start of section changes due to alignment"
msgstr ""
-#: lexsup.c:562
+#: lexsup.c:585
msgid "Warn if output has DT_TEXTREL (default)"
msgstr ""
-#: lexsup.c:564
+#: lexsup.c:587
msgid "Warn if output has DT_TEXTREL"
msgstr ""
-#: lexsup.c:570
+#: lexsup.c:593
msgid "Warn if an object has alternate ELF machine code"
msgstr ""
-#: lexsup.c:574
+#: lexsup.c:597
msgid "Report unresolved symbols as warnings"
msgstr ""
-#: lexsup.c:577
+#: lexsup.c:600
msgid "Report unresolved symbols as errors"
msgstr ""
-#: lexsup.c:579
+#: lexsup.c:602
msgid "Include all objects from following archives"
msgstr ""
-#: lexsup.c:582
+#: lexsup.c:605
msgid "Use wrapper functions for SYMBOL"
msgstr ""
-#: lexsup.c:586
+#: lexsup.c:609
msgid "Unresolved SYMBOL will not cause an error or warning"
msgstr ""
-#: lexsup.c:588
+#: lexsup.c:611
msgid "Push state of flags governing input file handling"
msgstr ""
-#: lexsup.c:591
+#: lexsup.c:614
msgid "Pop state of flags governing input file handling"
msgstr ""
-#: lexsup.c:594
+#: lexsup.c:617
msgid "Report target memory usage"
msgstr ""
-#: lexsup.c:596
+#: lexsup.c:619
msgid "=MODE"
msgstr ""
-#: lexsup.c:596
+#: lexsup.c:619
msgid "Control how orphan sections are handled."
msgstr ""
-#: lexsup.c:599
+#: lexsup.c:622
msgid "Show discarded sections in map file output (default)"
msgstr ""
-#: lexsup.c:602
+#: lexsup.c:625
msgid "Do not show discarded sections in map file output"
msgstr ""
-#: lexsup.c:605
+#: lexsup.c:628
+msgid "Show local symbols in map file output"
+msgstr ""
+
+#: lexsup.c:631
+msgid "Do not show local symbols in map file output (default)"
+msgstr ""
+
+#: lexsup.c:634
msgid "Emit names and types of static variables in CTF"
msgstr ""
-#: lexsup.c:608
+#: lexsup.c:637
msgid "Do not emit names and types of static variables in CTF"
msgstr ""
-#: lexsup.c:612
+#: lexsup.c:641
msgid ""
"How to share CTF types between translation units.\n"
" <method> is: share-unconflicted (default),\n"
" share-duplicated"
msgstr ""
-#: lexsup.c:776
+#: lexsup.c:805
msgid "%F%P: Error: unable to disambiguate: %s (did you mean -%s ?)\n"
msgstr ""
-#: lexsup.c:779
+#: lexsup.c:808
msgid "%P: Warning: grouped short command line options are deprecated: %s\n"
msgstr ""
-#: lexsup.c:806
+#: lexsup.c:835
msgid "%P: %s: missing argument\n"
msgstr ""
-#: lexsup.c:811
+#: lexsup.c:840
msgid "%P: unrecognized option '%s'\n"
msgstr ""
-#: lexsup.c:816
+#: lexsup.c:845
msgid "%F%P: use the --help option for usage information\n"
msgstr ""
-#: lexsup.c:835
+#: lexsup.c:864
msgid "%F%P: unrecognized -a option `%s'\n"
msgstr ""
-#: lexsup.c:848
+#: lexsup.c:877
msgid "%F%P: unrecognized -assert option `%s'\n"
msgstr ""
-#: lexsup.c:892
+#: lexsup.c:921
msgid "%F%P: unknown demangling style `%s'\n"
msgstr ""
-#: lexsup.c:980 lexsup.c:1457 eaarch64cloudabi.c:845 eaarch64cloudabib.c:845
-#: eaarch64elf.c:840 eaarch64elf32.c:840 eaarch64elf32b.c:840
-#: eaarch64elfb.c:840 eaarch64fbsd.c:845 eaarch64fbsdb.c:845
-#: eaarch64haiku.c:845 eaarch64linux.c:845 eaarch64linux32.c:845
-#: eaarch64linux32b.c:845 eaarch64linuxb.c:845 earmelf.c:1103
-#: earmelf_fbsd.c:1103 earmelf_fuchsia.c:1108 earmelf_haiku.c:1108
-#: earmelf_linux.c:1108 earmelf_linux_eabi.c:1108
-#: earmelf_linux_fdpiceabi.c:1108 earmelf_nacl.c:1108 earmelf_nbsd.c:1103
-#: earmelf_phoenix.c:1108 earmelf_vxworks.c:1139 earmelfb.c:1103
-#: earmelfb_fbsd.c:1103 earmelfb_fuchsia.c:1108 earmelfb_linux.c:1108
-#: earmelfb_linux_eabi.c:1108 earmelfb_linux_fdpiceabi.c:1108
-#: earmelfb_nacl.c:1108 earmelfb_nbsd.c:1103 earmnto.c:1078 ecskyelf.c:567
-#: ecskyelf_linux.c:734 eelf32metag.c:731 eelf64lppc.c:1213
-#: eelf64lppc_fbsd.c:1213 eelf64ppc.c:1213 eelf64ppc_fbsd.c:1213
-#: ehppaelf.c:587 ehppalinux.c:769 ehppanbsd.c:769 ehppaobsd.c:769
+#: lexsup.c:1029 lexsup.c:1513 eaarch64cloudabi.c:849 eaarch64cloudabib.c:849
+#: eaarch64elf.c:844 eaarch64elf32.c:844 eaarch64elf32b.c:844
+#: eaarch64elfb.c:844 eaarch64fbsd.c:849 eaarch64fbsdb.c:849
+#: eaarch64haiku.c:849 eaarch64linux.c:849 eaarch64linux32.c:849
+#: eaarch64linux32b.c:849 eaarch64linuxb.c:849 eaarch64nto.c:1017
+#: earmelf.c:1107 earmelf_fbsd.c:1107 earmelf_fuchsia.c:1112
+#: earmelf_haiku.c:1112 earmelf_linux.c:1112 earmelf_linux_eabi.c:1112
+#: earmelf_linux_fdpiceabi.c:1112 earmelf_nacl.c:1112 earmelf_nbsd.c:1107
+#: earmelf_phoenix.c:1112 earmelf_vxworks.c:1143 earmelfb.c:1107
+#: earmelfb_fbsd.c:1107 earmelfb_fuchsia.c:1112 earmelfb_linux.c:1112
+#: earmelfb_linux_eabi.c:1112 earmelfb_linux_fdpiceabi.c:1112
+#: earmelfb_nacl.c:1112 earmelfb_nbsd.c:1107 earmnto.c:1082 ecskyelf.c:573
+#: ecskyelf_linux.c:740 eelf32metag.c:737 eelf64lppc.c:1219
+#: eelf64lppc_fbsd.c:1219 eelf64ppc.c:1219 eelf64ppc_fbsd.c:1219
+#: ehppaelf.c:593 ehppalinux.c:775 ehppanbsd.c:775 ehppaobsd.c:775
msgid "%F%P: invalid number `%s'\n"
msgstr ""
-#: lexsup.c:1076
+#: lexsup.c:1125
msgid "%F%P: bad --unresolved-symbols option: %s\n"
msgstr ""
-#: lexsup.c:1156
+#: lexsup.c:1212
msgid "%F%P: bad -plugin-opt option\n"
msgstr ""
@@ -2102,163 +2148,177 @@ msgstr ""
#. 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:1173
+#: lexsup.c:1229
msgid "%F%P: unrecognised option: %s\n"
msgstr ""
-#: lexsup.c:1176 lexsup.c:1286 lexsup.c:1307 lexsup.c:1426
+#: lexsup.c:1232 lexsup.c:1342 lexsup.c:1363 lexsup.c:1482
msgid "%F%P: -r and %s may not be used together\n"
msgstr ""
-#: lexsup.c:1298
+#: lexsup.c:1354
msgid "%F%P: -shared not supported\n"
msgstr ""
-#: lexsup.c:1312
+#: lexsup.c:1368
msgid "%F%P: -pie not supported\n"
msgstr ""
-#: lexsup.c:1318
+#: lexsup.c:1374
msgid "%P: SONAME must not be empty string; keeping previous one\n"
msgstr ""
-#: lexsup.c:1324
+#: lexsup.c:1380
msgid "descending"
msgstr ""
-#: lexsup.c:1326
+#: lexsup.c:1382
msgid "ascending"
msgstr ""
-#: lexsup.c:1329
+#: lexsup.c:1385
msgid "%F%P: invalid common section sorting option: %s\n"
msgstr ""
-#: lexsup.c:1333
+#: lexsup.c:1389
msgid "name"
msgstr ""
-#: lexsup.c:1335
+#: lexsup.c:1391
msgid "alignment"
msgstr ""
-#: lexsup.c:1338
+#: lexsup.c:1394
msgid "%F%P: invalid section sorting option: %s\n"
msgstr ""
-#: lexsup.c:1375
+#: lexsup.c:1431
msgid "%F%P: invalid argument to option \"--section-start\"\n"
msgstr ""
-#: lexsup.c:1382
+#: lexsup.c:1438
msgid "%F%P: missing argument(s) to option \"--section-start\"\n"
msgstr ""
-#: lexsup.c:1652
+#: lexsup.c:1708
msgid "%F%P: group ended before it began (--help for usage)\n"
msgstr ""
-#: lexsup.c:1677
+#: lexsup.c:1724
+msgid "%F%P: failed to add remap file %s\n"
+msgstr ""
+
+#. FIXME: Should we allow --remap-inputs=@myfile as a synonym
+#. for --remap-inputs-file=myfile ?
+#: lexsup.c:1733
+msgid "%F%P: invalid argument to option --remap-inputs\n"
+msgstr ""
+
+#: lexsup.c:1754
msgid "%F%P: invalid cache memory size: %s\n"
msgstr ""
-#: lexsup.c:1691
+#: lexsup.c:1768
msgid "%X%P: --hash-size needs a numeric argument\n"
msgstr ""
-#: lexsup.c:1703
+#: lexsup.c:1780
msgid "%F%P: no state pushed before popping\n"
msgstr ""
-#: lexsup.c:1726
+#: lexsup.c:1803
msgid "%F%P: invalid argument to option \"--orphan-handling\"\n"
msgstr ""
-#: lexsup.c:1756
+#: lexsup.c:1841
msgid "%F%P: bad --ctf-share-types option: %s\n"
msgstr ""
-#: lexsup.c:1774
+#: lexsup.c:1859
msgid "%P: no file/directory name provided for map output; ignored\n"
msgstr ""
-#: lexsup.c:1802
+#: lexsup.c:1887
msgid "%P: cannot stat linker map file: %E\n"
msgstr ""
-#: lexsup.c:1814
+#: lexsup.c:1899
msgid "%P: linker map file is not a regular file\n"
msgstr ""
#. If the asprintf failed then something is probably very
#. wrong. Better to halt now rather than continue on
#. into more problems.
-#: lexsup.c:1825
+#: lexsup.c:1910
msgid "%P%F: cannot create name for linker map file: %E\n"
msgstr ""
-#: lexsup.c:1836
+#: lexsup.c:1921
msgid "%P: SONAME must not be empty string; ignored\n"
msgstr ""
-#: lexsup.c:1842
+#: lexsup.c:1927
msgid "%P: missing --end-group; added as last command line option\n"
msgstr ""
-#: lexsup.c:1950
+#: lexsup.c:2036
+msgid "%F%P: -r and -z nosectionheader may not be used together\n"
+msgstr ""
+
+#: lexsup.c:2044
msgid "%F%P: -F may not be used without -shared\n"
msgstr ""
-#: lexsup.c:1952
+#: lexsup.c:2046
msgid "%F%P: -f may not be used without -shared\n"
msgstr ""
-#: lexsup.c:1993 lexsup.c:2006
+#: lexsup.c:2087 lexsup.c:2100
msgid "%F%P: invalid hex number `%s'\n"
msgstr ""
-#: lexsup.c:2036
+#: lexsup.c:2130
#, c-format
msgid " --audit=AUDITLIB Specify a library to use for auditing\n"
msgstr ""
-#: lexsup.c:2038
+#: lexsup.c:2132
#, c-format
msgid " -Bgroup Selects group name lookup rules for DSO\n"
msgstr ""
-#: lexsup.c:2040
+#: lexsup.c:2134
#, c-format
msgid " --disable-new-dtags Disable new dynamic tags\n"
msgstr ""
-#: lexsup.c:2042
+#: lexsup.c:2136
#, c-format
msgid " --enable-new-dtags Enable new dynamic tags\n"
msgstr ""
-#: lexsup.c:2044
+#: lexsup.c:2138
#, c-format
msgid " --eh-frame-hdr Create .eh_frame_hdr section\n"
msgstr ""
-#: lexsup.c:2046
+#: lexsup.c:2140
#, c-format
msgid " --no-eh-frame-hdr Do not create .eh_frame_hdr section\n"
msgstr ""
-#: lexsup.c:2048
+#: lexsup.c:2142
#, c-format
msgid " --exclude-libs=LIBS Make all symbols in LIBS hidden\n"
msgstr ""
-#: lexsup.c:2050
+#: lexsup.c:2144
#, c-format
msgid ""
" --hash-style=STYLE Set hash style to sysv/gnu/both. Default: "
msgstr ""
-#: lexsup.c:2069
+#: lexsup.c:2163
#, c-format
msgid ""
" -P AUDITLIB, --depaudit=AUDITLIB\n"
@@ -2266,20 +2326,20 @@ msgid ""
"dependencies\n"
msgstr ""
-#: lexsup.c:2072
+#: lexsup.c:2166
#, c-format
msgid ""
" -z combreloc Merge dynamic relocs into one section and "
"sort\n"
msgstr ""
-#: lexsup.c:2074
+#: lexsup.c:2168
#, c-format
msgid ""
" -z nocombreloc Don't merge dynamic relocs into one section\n"
msgstr ""
-#: lexsup.c:2076
+#: lexsup.c:2170
#, c-format
msgid ""
" -z global Make symbols in DSO available for "
@@ -2287,328 +2347,364 @@ msgid ""
" loaded objects\n"
msgstr ""
-#: lexsup.c:2079
+#: lexsup.c:2173
#, c-format
msgid ""
" -z initfirst Mark DSO to be initialized first at runtime\n"
msgstr ""
-#: lexsup.c:2081
+#: lexsup.c:2175
#, c-format
msgid ""
" -z interpose Mark object to interpose all DSOs but "
"executable\n"
msgstr ""
-#: lexsup.c:2083
+#: lexsup.c:2177
#, c-format
msgid ""
" -z unique Mark DSO to be loaded at most once by default, "
"and only in the main namespace\n"
msgstr ""
-#: lexsup.c:2085
+#: lexsup.c:2179
#, c-format
msgid ""
" -z nounique Don't mark DSO as a loadable at most once\n"
msgstr ""
-#: lexsup.c:2087
+#: lexsup.c:2181
#, c-format
msgid ""
" -z lazy Mark object lazy runtime binding (default)\n"
msgstr ""
-#: lexsup.c:2089
+#: lexsup.c:2183
#, c-format
msgid " -z loadfltr Mark object requiring immediate process\n"
msgstr ""
-#: lexsup.c:2091
+#: lexsup.c:2185
#, c-format
msgid " -z nocopyreloc Don't create copy relocs\n"
msgstr ""
-#: lexsup.c:2093
+#: lexsup.c:2187
#, c-format
msgid ""
" -z nodefaultlib Mark object not to use default search paths\n"
msgstr ""
-#: lexsup.c:2095
+#: lexsup.c:2189
#, c-format
msgid " -z nodelete Mark DSO non-deletable at runtime\n"
msgstr ""
-#: lexsup.c:2097
+#: lexsup.c:2191
#, c-format
msgid " -z nodlopen Mark DSO not available to dlopen\n"
msgstr ""
-#: lexsup.c:2099
+#: lexsup.c:2193
#, c-format
msgid " -z nodump Mark DSO not available to dldump\n"
msgstr ""
-#: lexsup.c:2101
+#: lexsup.c:2195
#, c-format
msgid " -z now Mark object non-lazy runtime binding\n"
msgstr ""
-#: lexsup.c:2103
+#: lexsup.c:2197
#, c-format
msgid ""
" -z origin Mark object requiring immediate $ORIGIN\n"
" processing at runtime\n"
msgstr ""
-#: lexsup.c:2107
+#: lexsup.c:2201
#, c-format
msgid " -z relro Create RELRO program header (default)\n"
msgstr ""
-#: lexsup.c:2109
+#: lexsup.c:2203
#, c-format
msgid " -z norelro Don't create RELRO program header\n"
msgstr ""
-#: lexsup.c:2112
+#: lexsup.c:2206
#, c-format
msgid " -z relro Create RELRO program header\n"
msgstr ""
-#: lexsup.c:2114
+#: lexsup.c:2208
#, c-format
msgid ""
" -z norelro Don't create RELRO program header (default)\n"
msgstr ""
-#: lexsup.c:2118
+#: lexsup.c:2212
#, c-format
msgid ""
" -z separate-code Create separate code program header (default)\n"
msgstr ""
-#: lexsup.c:2120
+#: lexsup.c:2214
#, c-format
msgid ""
" -z noseparate-code Don't create separate code program header\n"
msgstr ""
-#: lexsup.c:2123
+#: lexsup.c:2217
#, c-format
msgid " -z separate-code Create separate code program header\n"
msgstr ""
-#: lexsup.c:2125
+#: lexsup.c:2219
#, c-format
msgid ""
" -z noseparate-code Don't create separate code program header "
"(default)\n"
msgstr ""
-#: lexsup.c:2128
+#: lexsup.c:2222
#, c-format
msgid ""
" -z common Generate common symbols with STT_COMMON type\n"
msgstr ""
-#: lexsup.c:2130
+#: lexsup.c:2224
#, c-format
msgid ""
" -z nocommon Generate common symbols with STT_OBJECT type\n"
msgstr ""
-#: lexsup.c:2133
+#: lexsup.c:2227
#, c-format
msgid ""
" -z text Treat DT_TEXTREL in output as error (default)\n"
msgstr ""
-#: lexsup.c:2136
+#: lexsup.c:2230
#, c-format
msgid " -z text Treat DT_TEXTREL in output as error\n"
msgstr ""
-#: lexsup.c:2140
+#: lexsup.c:2234
#, c-format
msgid ""
" -z notext Don't treat DT_TEXTREL in output as error "
"(default)\n"
msgstr ""
-#: lexsup.c:2142
+#: lexsup.c:2236
#, c-format
msgid ""
" -z textoff Don't treat DT_TEXTREL in output as error "
"(default)\n"
msgstr ""
-#: lexsup.c:2147
+#: lexsup.c:2241
#, c-format
msgid ""
" -z notext Don't treat DT_TEXTREL in output as error\n"
msgstr ""
-#: lexsup.c:2149
+#: lexsup.c:2243
#, c-format
msgid ""
" -z textoff Don't treat DT_TEXTREL in output as error\n"
msgstr ""
-#: lexsup.c:2157
+#: lexsup.c:2251
#, c-format
msgid " --build-id[=STYLE] Generate build ID note\n"
msgstr ""
-#: lexsup.c:2159
+#: lexsup.c:2253
#, c-format
msgid " --package-metadata[=JSON] Generate package metadata note\n"
msgstr ""
-#: lexsup.c:2161
+#: lexsup.c:2255
#, c-format
msgid ""
" --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi|zstd]\n"
"\t\t\t Compress DWARF debug sections\n"
msgstr ""
-#: lexsup.c:2164
+#: lexsup.c:2258
#, c-format
msgid " Default: %s\n"
msgstr ""
-#: lexsup.c:2167
+#: lexsup.c:2261
#, c-format
msgid " -z common-page-size=SIZE Set common page size to SIZE\n"
msgstr ""
-#: lexsup.c:2169
+#: lexsup.c:2263
#, c-format
msgid " -z max-page-size=SIZE Set maximum page size to SIZE\n"
msgstr ""
-#: lexsup.c:2171
+#: lexsup.c:2265
#, c-format
msgid ""
" -z defs Report unresolved symbols in object files\n"
msgstr ""
-#: lexsup.c:2173
+#: lexsup.c:2267
#, c-format
msgid ""
" -z undefs Ignore unresolved symbols in object files\n"
msgstr ""
-#: lexsup.c:2175
+#: lexsup.c:2269
#, c-format
msgid " -z muldefs Allow multiple definitions\n"
msgstr ""
-#: lexsup.c:2177
+#: lexsup.c:2271
#, c-format
msgid " -z stack-size=SIZE Set size of stack segment\n"
msgstr ""
-#: lexsup.c:2179
+#: lexsup.c:2274
#, c-format
msgid ""
" -z execstack Mark executable as requiring executable stack\n"
msgstr ""
-#: lexsup.c:2181
+#: lexsup.c:2276
#, c-format
msgid ""
" -z noexecstack Mark executable as not requiring executable "
"stack\n"
msgstr ""
-#: lexsup.c:2184
+#: lexsup.c:2278
#, c-format
msgid ""
-" --warn-execstack Generate a warning if the stack is executable "
-"(default)\n"
+" --warn-execstack-objects Generate a warning if an object file requests "
+"an executable stack\n"
msgstr ""
-#: lexsup.c:2187
+#: lexsup.c:2281
#, c-format
msgid ""
-" --warn-execstack Generate a warning if the stack is executable\n"
+" --warn-execstack Generate a warning if creating an executable "
+"stack\n"
msgstr ""
-#: lexsup.c:2191
+#: lexsup.c:2284
#, c-format
msgid ""
-" --no-warn-execstack Do not generate a warning if the stack is "
-"executable (default)\n"
+" --warn-execstack Generate a warning if creating an executable "
+"stack (default)\n"
msgstr ""
-#: lexsup.c:2194
+#: lexsup.c:2288
#, c-format
msgid ""
-" --no-warn-execstack Do not generate a warning if the stack is "
-"executable\n"
+" --no-warn-execstack Do not generate a warning if creating an "
+"executable stack (default)\n"
+msgstr ""
+
+#: lexsup.c:2291
+#, c-format
+msgid ""
+" --no-warn-execstack Do not generate a warning if creating an "
+"executable stack\n"
+msgstr ""
+
+#: lexsup.c:2294
+#, c-format
+msgid ""
+" --error-execstack Turn warnings about executable stacks into "
+"errors\n"
msgstr ""
-#: lexsup.c:2198
+#: lexsup.c:2296
+#, c-format
+msgid ""
+" --no-error-execstack Do not turn warnings about executable stacks "
+"into errors\n"
+msgstr ""
+
+#: lexsup.c:2300
#, c-format
msgid ""
" --warn-rwx-segments Generate a warning if a LOAD segment has RWX "
"permissions (default)\n"
msgstr ""
-#: lexsup.c:2200
+#: lexsup.c:2302
#, c-format
msgid ""
" --no-warn-rwx-segments Do not generate a warning if a LOAD segments "
"has RWX permissions\n"
msgstr ""
-#: lexsup.c:2203
+#: lexsup.c:2305
#, c-format
msgid ""
" --warn-rwx-segments Generate a warning if a LOAD segment has RWX "
"permissions\n"
msgstr ""
-#: lexsup.c:2205
+#: lexsup.c:2307
#, c-format
msgid ""
" --no-warn-rwx-segments Do not generate a warning if a LOAD segments "
"has RWX permissions (default)\n"
msgstr ""
-#: lexsup.c:2208
+#: lexsup.c:2310
+#, c-format
+msgid ""
+" --error-rwx-segments Turn warnings about loadable RWX segments into "
+"errors\n"
+msgstr ""
+
+#: lexsup.c:2312
+#, c-format
+msgid ""
+" --no-error-rwx-segments Do not turn warnings about loadable RWX "
+"segments into errors\n"
+msgstr ""
+
+#: lexsup.c:2315
#, c-format
msgid " -z unique-symbol Avoid duplicated local symbol names\n"
msgstr ""
-#: lexsup.c:2210
+#: lexsup.c:2317
#, c-format
msgid ""
" -z nounique-symbol Keep duplicated local symbol names (default)\n"
msgstr ""
-#: lexsup.c:2212
+#: lexsup.c:2319
#, c-format
msgid ""
" -z globalaudit Mark executable requiring global auditing\n"
msgstr ""
-#: lexsup.c:2214
+#: lexsup.c:2321
#, c-format
msgid ""
" -z start-stop-gc Enable garbage collection on __start/__stop\n"
msgstr ""
-#: lexsup.c:2216
+#: lexsup.c:2323
#, c-format
msgid ""
" -z nostart-stop-gc Don't garbage collect __start/__stop "
"(default)\n"
msgstr ""
-#: lexsup.c:2218
+#: lexsup.c:2325
#, c-format
msgid ""
" -z start-stop-visibility=V Set visibility of built-in __start/__stop "
@@ -2616,13 +2712,23 @@ msgid ""
" to DEFAULT, PROTECTED, HIDDEN or INTERNAL\n"
msgstr ""
-#: lexsup.c:2226
+#: lexsup.c:2328
+#, c-format
+msgid " -z sectionheader Generate section header (default)\n"
+msgstr ""
+
+#: lexsup.c:2330
+#, c-format
+msgid " -z nosectionheader Do not generate section header\n"
+msgstr ""
+
+#: lexsup.c:2337
#, c-format
msgid ""
" --ld-generated-unwind-info Generate exception handling info for PLT\n"
msgstr ""
-#: lexsup.c:2228
+#: lexsup.c:2339
#, c-format
msgid ""
" --no-ld-generated-unwind-info\n"
@@ -2630,49 +2736,49 @@ msgid ""
"PLT\n"
msgstr ""
-#: lexsup.c:2238
+#: lexsup.c:2349
#, c-format
msgid "ELF emulations:\n"
msgstr ""
-#: lexsup.c:2256
+#: lexsup.c:2367
#, c-format
msgid "Usage: %s [options] file...\n"
msgstr ""
-#: lexsup.c:2258
+#: lexsup.c:2369
#, c-format
msgid "Options:\n"
msgstr ""
-#: lexsup.c:2336
+#: lexsup.c:2447
#, c-format
msgid " @FILE"
msgstr ""
-#: lexsup.c:2339
+#: lexsup.c:2450
#, c-format
msgid "Read options from FILE\n"
msgstr ""
#. Note: Various tools (such as libtool) depend upon the
#. format of the listings below - do not change them.
-#: lexsup.c:2344
+#: lexsup.c:2455
#, c-format
msgid "%s: supported targets:"
msgstr ""
-#: lexsup.c:2352
+#: lexsup.c:2463
#, c-format
msgid "%s: supported emulations: "
msgstr ""
-#: lexsup.c:2357
+#: lexsup.c:2468
#, c-format
msgid "%s: emulation specific options:\n"
msgstr ""
-#: lexsup.c:2364
+#: lexsup.c:2475
#, c-format
msgid "Report bugs to %s\n"
msgstr ""
@@ -2681,483 +2787,483 @@ msgstr ""
msgid "%F%P: unknown format type %s\n"
msgstr ""
-#: pdb.c:828 pdb.c:1119
+#: pdb.c:842 pdb.c:1133
msgid "%P: CodeView symbol references out of range type %v\n"
msgstr ""
-#: pdb.c:997
+#: pdb.c:1011
msgid ""
"%P: warning: truncated CodeView record S_LDATA32/S_GDATA32/S_LTHREAD32/"
"S_GTHREAD32\n"
msgstr ""
-#: pdb.c:1016
+#: pdb.c:1030
msgid ""
"%P: warning: name for S_LDATA32/S_GDATA32/S_LTHREAD32/S_GTHREAD32 has no "
"terminating zero\n"
msgstr ""
-#: pdb.c:1064 pdb.c:1734
+#: pdb.c:1078 pdb.c:1748
msgid "%P: warning: truncated CodeView record S_GPROC32/S_LPROC32\n"
msgstr ""
-#: pdb.c:1076 pdb.c:1751
+#: pdb.c:1090 pdb.c:1765
msgid "%P: warning: could not find end of S_GPROC32/S_LPROC32 record\n"
msgstr ""
-#: pdb.c:1102
+#: pdb.c:1116
msgid "%P: warning: name for S_GPROC32/S_LPROC32 has no terminating zero\n"
msgstr ""
-#: pdb.c:1158
+#: pdb.c:1172
msgid ""
"%P: CodeView S_GPROC32_ID/S_LPROC32_ID symbol referenced unknown type as ID\n"
msgstr ""
-#: pdb.c:1232
+#: pdb.c:1246
msgid "%P: warning: truncated CodeView record S_UDT\n"
msgstr ""
-#: pdb.c:1243
+#: pdb.c:1257
msgid "%P: warning: name for S_UDT has no terminating zero\n"
msgstr ""
-#: pdb.c:1280
+#: pdb.c:1294
msgid "%P: warning: truncated CodeView record S_CONSTANT\n"
msgstr ""
-#: pdb.c:1297
+#: pdb.c:1311
msgid "%P: warning: unhandled type %v within S_CONSTANT\n"
msgstr ""
-#: pdb.c:1311
+#: pdb.c:1325
msgid "%P: warning: name for S_CONSTANT has no terminating zero\n"
msgstr ""
-#: pdb.c:1371
+#: pdb.c:1385
msgid "%P: warning: unexpected CodeView scope start record %v\n"
msgstr ""
-#: pdb.c:1393
+#: pdb.c:1407
msgid "%P: warning: truncated CodeView record S_BUILDINFO\n"
msgstr ""
-#: pdb.c:1419
+#: pdb.c:1433
msgid "%P: warning: truncated CodeView record S_BLOCK32\n"
msgstr ""
-#: pdb.c:1431
+#: pdb.c:1445
msgid "%P: warning: could not find end of S_BLOCK32 record\n"
msgstr ""
-#: pdb.c:1456
+#: pdb.c:1470
msgid "%P: warning: truncated CodeView record S_BPREL32\n"
msgstr ""
-#: pdb.c:1480
+#: pdb.c:1494
msgid "%P: warning: truncated CodeView record S_REGISTER\n"
msgstr ""
-#: pdb.c:1504
+#: pdb.c:1518
msgid "%P: warning: truncated CodeView record S_REGREL32\n"
msgstr ""
-#: pdb.c:1528
+#: pdb.c:1542
msgid "%P: warning: truncated CodeView record S_LOCAL\n"
msgstr ""
-#: pdb.c:1554
+#: pdb.c:1568
msgid "%P: warning: truncated CodeView record S_INLINESITE\n"
msgstr ""
-#: pdb.c:1566
+#: pdb.c:1580
msgid "%P: warning: could not find end of S_INLINESITE record\n"
msgstr ""
-#: pdb.c:1599
+#: pdb.c:1613
msgid "%P: warning: truncated CodeView record S_THUNK32\n"
msgstr ""
-#: pdb.c:1611
+#: pdb.c:1625
msgid "%P: warning: could not find end of S_THUNK32 record\n"
msgstr ""
-#: pdb.c:1636
+#: pdb.c:1650
msgid "%P: warning: truncated CodeView record S_HEAPALLOCSITE\n"
msgstr ""
-#: pdb.c:1670 pdb.c:1814
+#: pdb.c:1684 pdb.c:1828
msgid "%P: warning: unrecognized CodeView record %v\n"
msgstr ""
-#: pdb.c:1706
+#: pdb.c:1720
msgid "%P: warning: truncated CodeView record S_LDATA32/S_LTHREAD32\n"
msgstr ""
-#: pdb.c:2141
+#: pdb.c:2155
msgid "%P: CodeView type %v references other type %v not yet declared\n"
msgstr ""
-#: pdb.c:2148
+#: pdb.c:2162
msgid "%P: CodeView type %v references out of range type %v\n"
msgstr ""
-#: pdb.c:2208
+#: pdb.c:2222
msgid "%P: warning: truncated CodeView type record LF_UDT_SRC_LINE\n"
msgstr ""
-#: pdb.c:2221
+#: pdb.c:2235
msgid ""
"%P: warning: CodeView type record LF_UDT_SRC_LINE referred to unknown type %"
"v\n"
msgstr ""
-#: pdb.c:2243
+#: pdb.c:2257
msgid ""
"%P: warning: CodeView type record LF_UDT_SRC_LINE referred to unknown string "
"%v\n"
msgstr ""
-#: pdb.c:2252
+#: pdb.c:2266
msgid ""
"%P: warning: CodeView type record LF_UDT_SRC_LINE pointed to unexpected "
"record type\n"
msgstr ""
-#: pdb.c:2301
+#: pdb.c:2315
msgid "%P: warning: duplicate CodeView type record LF_UDT_MOD_SRC_LINE\n"
msgstr ""
-#: pdb.c:2350
+#: pdb.c:2364
msgid "%P: warning: truncated CodeView type record LF_MODIFIER\n"
msgstr ""
-#: pdb.c:2367
+#: pdb.c:2381
msgid "%P: warning: truncated CodeView type record LF_POINTER\n"
msgstr ""
-#: pdb.c:2384
+#: pdb.c:2398
msgid "%P: warning: truncated CodeView type record LF_PROCEDURE\n"
msgstr ""
-#: pdb.c:2404
+#: pdb.c:2418
msgid "%P: warning: truncated CodeView type record LF_MFUNCTION\n"
msgstr ""
-#: pdb.c:2432 pdb.c:2442
+#: pdb.c:2446 pdb.c:2456
msgid "%P: warning: truncated CodeView type record LF_ARGLIST\n"
msgstr ""
-#: pdb.c:2467 pdb.c:2537 pdb.c:2674 pdb.c:2721 pdb.c:2939 pdb.c:2986
+#: pdb.c:2481 pdb.c:2551 pdb.c:2688 pdb.c:2735 pdb.c:2953 pdb.c:3000
msgid "%P: warning: truncated CodeView type record LF_FIELDLIST\n"
msgstr ""
-#: pdb.c:2484 pdb.c:2512
+#: pdb.c:2498 pdb.c:2526
msgid "%P: warning: truncated CodeView type record LF_MEMBER\n"
msgstr ""
-#: pdb.c:2503
+#: pdb.c:2517
msgid "%P: warning: unhandled type %v within LF_MEMBER\n"
msgstr ""
-#: pdb.c:2523
+#: pdb.c:2537
msgid "%P: warning: name for LF_MEMBER has no terminating zero\n"
msgstr ""
-#: pdb.c:2556 pdb.c:2579 pdb.c:2606
+#: pdb.c:2570 pdb.c:2593 pdb.c:2620
msgid "%P: warning: truncated CodeView type record LF_ENUMERATE\n"
msgstr ""
-#: pdb.c:2572
+#: pdb.c:2586
msgid "%P: warning: unhandled type %v within LF_ENUMERATE\n"
msgstr ""
-#: pdb.c:2592
+#: pdb.c:2606
msgid "%P: warning: name for LF_ENUMERATE has no terminating zero\n"
msgstr ""
-#: pdb.c:2623
+#: pdb.c:2637
msgid "%P: warning: truncated CodeView type record LF_INDEX\n"
msgstr ""
-#: pdb.c:2644
+#: pdb.c:2658
msgid "%P: warning: truncated CodeView type record LF_ONEMETHOD\n"
msgstr ""
-#: pdb.c:2659
+#: pdb.c:2673
msgid "%P: warning: name for LF_ONEMETHOD has no terminating zero\n"
msgstr ""
-#: pdb.c:2692
+#: pdb.c:2706
msgid "%P: warning: truncated CodeView type record LF_METHOD\n"
msgstr ""
-#: pdb.c:2707
+#: pdb.c:2721
msgid "%P: warning: name for LF_METHOD has no terminating zero\n"
msgstr ""
-#: pdb.c:2740 pdb.c:2769 pdb.c:2780
+#: pdb.c:2754 pdb.c:2783 pdb.c:2794
msgid "%P: warning: truncated CodeView type record LF_BCLASS\n"
msgstr ""
-#: pdb.c:2760
+#: pdb.c:2774
msgid "%P: warning: unhandled type %v within LF_BCLASS\n"
msgstr ""
-#: pdb.c:2797
+#: pdb.c:2811
msgid "%P: warning: truncated CodeView type record LF_VFUNCTAB\n"
msgstr ""
-#: pdb.c:2820 pdb.c:2854 pdb.c:2879 pdb.c:2890
+#: pdb.c:2834 pdb.c:2868 pdb.c:2893 pdb.c:2904
msgid "%P: warning: truncated CodeView type record LF_VBCLASS/LF_IVBCLASS\n"
msgstr ""
-#: pdb.c:2845 pdb.c:2870
+#: pdb.c:2859 pdb.c:2884
msgid "%P: warning: unhandled type %v within LF_VBCLASS/LF_IVBCLASS\n"
msgstr ""
-#: pdb.c:2909
+#: pdb.c:2923
msgid "%P: warning: truncated CodeView type record LF_STMEMBER\n"
msgstr ""
-#: pdb.c:2924
+#: pdb.c:2938
msgid "%P: warning: name for LF_STMEMBER has no terminating zero\n"
msgstr ""
-#: pdb.c:2957
+#: pdb.c:2971
msgid "%P: warning: truncated CodeView type record LF_NESTTYPE\n"
msgstr ""
-#: pdb.c:2971
+#: pdb.c:2985
msgid "%P: warning: name for LF_NESTTYPE has no terminating zero\n"
msgstr ""
-#: pdb.c:2998
+#: pdb.c:3012
msgid "%P: warning: unrecognized CodeView subtype %v\n"
msgstr ""
-#: pdb.c:3013
+#: pdb.c:3027
msgid "%P: warning: truncated CodeView type record LF_BITFIELD\n"
msgstr ""
-#: pdb.c:3031
+#: pdb.c:3045
msgid "%P: warning: truncated CodeView type record LF_METHODLIST\n"
msgstr ""
-#: pdb.c:3039
+#: pdb.c:3053
msgid "%P: warning: malformed CodeView type record LF_METHODLIST\n"
msgstr ""
-#: pdb.c:3063
+#: pdb.c:3077
msgid "%P: warning: truncated CodeView type record LF_ARRAY\n"
msgstr ""
-#: pdb.c:3086 pdb.c:3120
+#: pdb.c:3100 pdb.c:3134
msgid "%P: warning: truncated CodeView type record LF_CLASS/LF_STRUCTURE\n"
msgstr ""
-#: pdb.c:3111
+#: pdb.c:3125
msgid "%P: warning: unhandled type %v within LF_CLASS/LF_STRUCTURE\n"
msgstr ""
-#: pdb.c:3130
+#: pdb.c:3144
msgid "%P: warning: name for LF_CLASS/LF_STRUCTURE has no terminating zero\n"
msgstr ""
-#: pdb.c:3149
+#: pdb.c:3163
msgid ""
"%P: warning: unique name for LF_CLASS/LF_STRUCTURE has no terminating zero\n"
msgstr ""
-#: pdb.c:3173 pdb.c:3201
+#: pdb.c:3187 pdb.c:3215
msgid "%P: warning: truncated CodeView type record LF_UNION\n"
msgstr ""
-#: pdb.c:3192
+#: pdb.c:3206
msgid "%P: warning: unhandled type %v within LF_UNION\n"
msgstr ""
-#: pdb.c:3211
+#: pdb.c:3225
msgid "%P: warning: name for LF_UNION has no terminating zero\n"
msgstr ""
-#: pdb.c:3230
+#: pdb.c:3244
msgid "%P: warning: unique name for LF_UNION has no terminating zero\n"
msgstr ""
-#: pdb.c:3254
+#: pdb.c:3268
msgid "%P: warning: truncated CodeView type record LF_ENUM\n"
msgstr ""
-#: pdb.c:3269
+#: pdb.c:3283
msgid "%P: warning: name for LF_ENUM has no terminating zero\n"
msgstr ""
-#: pdb.c:3287
+#: pdb.c:3301
msgid "%P: warning: unique name for LF_ENUM has no terminating zero\n"
msgstr ""
-#: pdb.c:3306
+#: pdb.c:3320
msgid "%P: warning: truncated CodeView type record LF_VFTABLE\n"
msgstr ""
-#: pdb.c:3327
+#: pdb.c:3341
msgid "%P: warning: truncated CodeView type record LF_STRING_ID\n"
msgstr ""
-#: pdb.c:3340
+#: pdb.c:3354
msgid "%P: warning: string for LF_STRING_ID has no terminating zero\n"
msgstr ""
-#: pdb.c:3357 pdb.c:3367
+#: pdb.c:3371 pdb.c:3381
msgid "%P: warning: truncated CodeView type record LF_SUBSTR_LIST\n"
msgstr ""
-#: pdb.c:3390 pdb.c:3400
+#: pdb.c:3404 pdb.c:3414
msgid "%P: warning: truncated CodeView type record LF_BUILDINFO\n"
msgstr ""
-#: pdb.c:3423
+#: pdb.c:3437
msgid "%P: warning: truncated CodeView type record LF_FUNC_ID\n"
msgstr ""
-#: pdb.c:3439
+#: pdb.c:3453
msgid "%P: warning: string for LF_FUNC_ID has no terminating zero\n"
msgstr ""
-#: pdb.c:3456
+#: pdb.c:3470
msgid "%P: warning: truncated CodeView type record LF_MFUNC_ID\n"
msgstr ""
-#: pdb.c:3472
+#: pdb.c:3486
msgid "%P: warning: string for LF_MFUNC_ID has no terminating zero\n"
msgstr ""
-#: pdb.c:3487
+#: pdb.c:3501
msgid "%P: warning: unrecognized CodeView type %v\n"
msgstr ""
-#: pdb.c:3654
+#: pdb.c:3675
msgid "%P: warning: unable to get working directory\n"
msgstr ""
-#: pdb.c:3662
+#: pdb.c:3683
msgid "%P: warning: unable to get program name\n"
msgstr ""
-#: pdb.c:3671
+#: pdb.c:3692
msgid "%P: warning: unable to get full path to PDB\n"
msgstr ""
-#: pdb.c:5090
+#: pdb.c:5148
msgid "%P: warning: cannot create PDB file: %E\n"
msgstr ""
-#: pdb.c:5105
+#: pdb.c:5163
msgid "%P: warning: cannot create old directory stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5114
+#: pdb.c:5172
msgid "%P: warning: cannot create info stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5123
+#: pdb.c:5181
msgid "%P: warning: cannot create TPI stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5132
+#: pdb.c:5190
msgid "%P: warning: cannot create DBI stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5141
+#: pdb.c:5199
msgid "%P: warning: cannot create IPI stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5150
+#: pdb.c:5208
msgid "%P: warning: cannot create /names stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5159
+#: pdb.c:5217
msgid "%P: warning: cannot create symbol record stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5168
+#: pdb.c:5226
msgid "%P: warning: cannot create publics stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5175
+#: pdb.c:5233
msgid "%P: warning: cannot create section header stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5194
+#: pdb.c:5252
msgid "%P: warning: cannot populate DBI stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5203
+#: pdb.c:5261
msgid "%P: warning: cannot populate TPI stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5214
+#: pdb.c:5272
msgid "%P: warning: cannot populate IPI stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5226
+#: pdb.c:5284
msgid "%P: warning: cannot populate names stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5233
+#: pdb.c:5291
msgid "%P: warning: cannot populate publics stream in PDB file: %E\n"
msgstr ""
-#: pdb.c:5240
+#: pdb.c:5298
msgid "%P: warning: cannot populate info stream in PDB file: %E\n"
msgstr ""
-#: pe-dll.c:458
+#: pe-dll.c:459
msgid "%X%P: unsupported PEI architecture: %s\n"
msgstr ""
-#: pe-dll.c:847
+#: pe-dll.c:848
msgid "%X%P: cannot export %s: invalid export name\n"
msgstr ""
-#: pe-dll.c:899
+#: pe-dll.c:900
#, c-format
msgid "%X%P: error, duplicate EXPORT with ordinals: %s (%d vs %d)\n"
msgstr ""
-#: pe-dll.c:906
+#: pe-dll.c:907
#, c-format
msgid "%P: warning, duplicate EXPORT: %s\n"
msgstr ""
-#: pe-dll.c:1013
+#: pe-dll.c:1014
#, c-format
msgid "%X%P: cannot export %s: symbol not defined\n"
msgstr ""
-#: pe-dll.c:1019
+#: pe-dll.c:1020
#, c-format
msgid "%X%P: cannot export %s: symbol wrong type (%d vs %d)\n"
msgstr ""
-#: pe-dll.c:1026
+#: pe-dll.c:1027
#, c-format
msgid "%X%P: cannot export %s: symbol not found\n"
msgstr ""
-#: pe-dll.c:1049 eaarch64cloudabi.c:366 eaarch64cloudabib.c:366
+#: pe-dll.c:1051 eaarch64cloudabi.c:366 eaarch64cloudabib.c:366
#: eaarch64elf.c:365 eaarch64elf32.c:365 eaarch64elf32b.c:365
#: eaarch64elfb.c:365 eaarch64fbsd.c:366 eaarch64fbsdb.c:366
#: eaarch64haiku.c:366 eaarch64linux.c:366 eaarch64linux32.c:366
-#: eaarch64linux32b.c:366 eaarch64linuxb.c:366 eaix5ppc.c:1660 eaix5ppc.c:1670
-#: eaix5rs6.c:1660 eaix5rs6.c:1670 eaixppc.c:1660 eaixppc.c:1670
-#: eaixrs6.c:1660 eaixrs6.c:1670 earmelf.c:571 earmelf_fbsd.c:571
-#: earmelf_fuchsia.c:572 earmelf_haiku.c:572 earmelf_linux.c:572
-#: earmelf_linux_eabi.c:572 earmelf_linux_fdpiceabi.c:572 earmelf_nacl.c:572
-#: earmelf_nbsd.c:571 earmelf_phoenix.c:572 earmelf_vxworks.c:571
-#: earmelfb.c:571 earmelfb_fbsd.c:571 earmelfb_fuchsia.c:572
-#: earmelfb_linux.c:572 earmelfb_linux_eabi.c:572
+#: eaarch64linux32b.c:366 eaarch64linuxb.c:366 eaarch64nto.c:366
+#: eaix5ppc.c:1660 eaix5ppc.c:1670 eaix5rs6.c:1660 eaix5rs6.c:1670
+#: eaixppc.c:1660 eaixppc.c:1670 eaixrs6.c:1660 eaixrs6.c:1670 earmelf.c:571
+#: earmelf_fbsd.c:571 earmelf_fuchsia.c:572 earmelf_haiku.c:572
+#: earmelf_linux.c:572 earmelf_linux_eabi.c:572 earmelf_linux_fdpiceabi.c:572
+#: earmelf_nacl.c:572 earmelf_nbsd.c:571 earmelf_phoenix.c:572
+#: earmelf_vxworks.c:571 earmelfb.c:571 earmelfb_fbsd.c:571
+#: earmelfb_fuchsia.c:572 earmelfb_linux.c:572 earmelfb_linux_eabi.c:572
#: earmelfb_linux_fdpiceabi.c:572 earmelfb_nacl.c:572 earmelfb_nbsd.c:571
#: earmnto.c:571 ecskyelf.c:165 ecskyelf_linux.c:165 eelf32b4300.c:174
#: eelf32bmip.c:174 eelf32bmipn32.c:188 eelf32bsmip.c:188 eelf32btsmip.c:174
@@ -3177,180 +3283,180 @@ msgstr ""
msgid "%F%P: can not create BFD: %E\n"
msgstr ""
-#: pe-dll.c:1063
+#: pe-dll.c:1065
msgid "%X%P: can not create .edata section: %E\n"
msgstr ""
-#: pe-dll.c:1077
+#: pe-dll.c:1079
msgid "%X%P: can not create .reloc section: %E\n"
msgstr ""
-#: pe-dll.c:1126
+#: pe-dll.c:1128
#, c-format
msgid "%X%P: error: ordinal used twice: %d (%s vs %s)\n"
msgstr ""
-#: pe-dll.c:1162
+#: pe-dll.c:1164
#, c-format
msgid "%X%P: error: export ordinal too large: %d\n"
msgstr ""
-#: pe-dll.c:1485
+#: pe-dll.c:1490
#, c-format
msgid "Info: resolving %s by linking to %s (auto-import)\n"
msgstr ""
-#: pe-dll.c:1491
+#: pe-dll.c:1496
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 ""
-#: pe-dll.c:1560
-msgid "%P: zero vma section reloc detected: `%s' #%d f=%d\n"
-msgstr ""
-
-#: pe-dll.c:1643
+#: pe-dll.c:1656
msgid "%P: base relocation for section `%s' above .reloc section\n"
msgstr ""
-#: pe-dll.c:1693
+#: pe-dll.c:1706
#, c-format
msgid "%X%P: error: %d-bit reloc in dll\n"
msgstr ""
-#: pe-dll.c:1815
+#: pe-dll.c:1832
#, c-format
msgid "%P: can't open output def file %s\n"
msgstr ""
-#: pe-dll.c:1964
+#: pe-dll.c:1981
#, c-format
msgid "; no contents available\n"
msgstr ""
-#: pe-dll.c:2867
+#: pe-dll.c:2350
+msgid "%P: error: NULL decorated name for %s\n"
+msgstr ""
+
+#: pe-dll.c:2917
msgid ""
-"%X%P: %C: variable '%pT' can't be auto-imported; please read the "
+"%X%P: %H: variable '%pT' can't be auto-imported; please read the "
"documentation for ld's --enable-auto-import for details\n"
msgstr ""
-#: pe-dll.c:2888
+#: pe-dll.c:2938
#, c-format
msgid "%X%P: can't open .lib file: %s\n"
msgstr ""
-#: pe-dll.c:2894
+#: pe-dll.c:2944
#, c-format
msgid "Creating library file: %s\n"
msgstr ""
-#: pe-dll.c:2924
+#: pe-dll.c:2974
msgid "%X%P: bfd_openr %s: %E\n"
msgstr ""
-#: pe-dll.c:2936
+#: pe-dll.c:2986
msgid "%X%P: %s(%s): can't find member in non-archive file"
msgstr ""
-#: pe-dll.c:2950
+#: pe-dll.c:3000
msgid "%X%P: %s(%s): can't find member in archive"
msgstr ""
-#: pe-dll.c:3214
+#: pe-dll.c:3264
msgid "%X%P: add symbols %s: %E\n"
msgstr ""
-#: pe-dll.c:3419
+#: pe-dll.c:3475
msgid "%X%P: open %s: %E\n"
msgstr ""
-#: pe-dll.c:3428
+#: pe-dll.c:3485
msgid "%X%P: %s: this doesn't appear to be a DLL\n"
msgstr ""
-#: pe-dll.c:3633
+#: pe-dll.c:3705
msgid "%X%P: error: can't use long section names on this arch\n"
msgstr ""
-#: plugin.c:238 plugin.c:284
+#: plugin.c:240 plugin.c:286
msgid "<no plugin>"
msgstr ""
-#: plugin.c:253 plugin.c:1116
+#: plugin.c:255 plugin.c:1130
msgid "%F%P: %s: error loading plugin: %s\n"
msgstr ""
-#: plugin.c:260
+#: plugin.c:262
msgid "%P: %s: duplicated plugin\n"
msgstr ""
-#: plugin.c:346
+#: plugin.c:348
msgid "%F%P: could not create dummy IR bfd: %E\n"
msgstr ""
-#: plugin.c:427
+#: plugin.c:429
msgid "%F%P: %s: non-ELF symbol in ELF BFD!\n"
msgstr ""
-#: plugin.c:438
+#: plugin.c:440
msgid "%F%P: unknown ELF symbol visibility: %d!\n"
msgstr ""
-#: plugin.c:547
+#: plugin.c:558
msgid "%F%P: unsupported input file size: %s (%ld bytes)\n"
msgstr ""
-#: plugin.c:692
+#: plugin.c:703
#, c-format
msgid "unknown LTO kind value %x"
msgstr ""
-#: plugin.c:718
+#: plugin.c:729
#, c-format
msgid "unknown LTO resolution value %x"
msgstr ""
-#: plugin.c:738
+#: plugin.c:749
#, c-format
msgid "unknown LTO visibility value %x"
msgstr ""
#. We should not have a new, indirect or warning symbol here.
-#: plugin.c:818
+#: plugin.c:829
msgid "%F%P: %s: plugin symbol table corrupt (sym type %d)\n"
msgstr ""
-#: plugin.c:883
+#: plugin.c:894
msgid "%P: %pB: symbol `%s' definition: %s, visibility: %s, resolution: %s\n"
msgstr ""
-#: plugin.c:960
+#: plugin.c:971
msgid "%P: warning: "
msgstr ""
-#: plugin.c:971
+#: plugin.c:982
msgid "%P: error: "
msgstr ""
-#: plugin.c:1123
+#: plugin.c:1137
msgid "%F%P: %s: plugin error: %d\n"
msgstr ""
-#: plugin.c:1178
+#: plugin.c:1196
msgid "%F%P: plugin_strdup failed to allocate memory: %s\n"
msgstr ""
-#: plugin.c:1215
+#: plugin.c:1233
msgid "%F%P: plugin failed to allocate memory for input: %s\n"
msgstr ""
-#: plugin.c:1243
+#: plugin.c:1261
msgid "%F%P: %s: plugin reported error claiming file\n"
msgstr ""
-#: plugin.c:1354
+#: plugin.c:1372
msgid "%P: %s: error in plugin cleanup: %d (ignored)\n"
msgstr ""
@@ -3358,23 +3464,24 @@ msgstr ""
#: eaarch64elf32.c:228 eaarch64elf32b.c:228 eaarch64elfb.c:228
#: eaarch64fbsd.c:229 eaarch64fbsdb.c:229 eaarch64haiku.c:229
#: eaarch64linux.c:229 eaarch64linux32.c:229 eaarch64linux32b.c:229
-#: eaarch64linuxb.c:229 eaix5ppc.c:1125 eaix5rs6.c:1125 eaixppc.c:1125
-#: eaixrs6.c:1125 earmelf.c:298 earmelf_fbsd.c:298 earmelf_fuchsia.c:299
-#: earmelf_haiku.c:299 earmelf_linux.c:299 earmelf_linux_eabi.c:299
-#: earmelf_linux_fdpiceabi.c:299 earmelf_nacl.c:299 earmelf_nbsd.c:298
-#: earmelf_phoenix.c:299 earmelf_vxworks.c:298 earmelfb.c:298
-#: earmelfb_fbsd.c:298 earmelfb_fuchsia.c:299 earmelfb_linux.c:299
-#: earmelfb_linux_eabi.c:299 earmelfb_linux_fdpiceabi.c:299
-#: earmelfb_nacl.c:299 earmelfb_nbsd.c:298 earmnto.c:298 eavr1.c:181
-#: eavr2.c:181 eavr25.c:181 eavr3.c:181 eavr31.c:181 eavr35.c:181 eavr4.c:181
-#: eavr5.c:181 eavr51.c:181 eavr6.c:181 eavrtiny.c:181 eavrxmega1.c:181
-#: eavrxmega2.c:181 eavrxmega3.c:181 eavrxmega4.c:181 eavrxmega5.c:181
-#: eavrxmega6.c:181 eavrxmega7.c:181 ecskyelf.c:212 ecskyelf_linux.c:212
-#: eelf32b4300.c:207 eelf32bmip.c:207 eelf32bmipn32.c:221 eelf32bsmip.c:221
-#: eelf32btsmip.c:207 eelf32btsmip_fbsd.c:207 eelf32btsmipn32.c:207
-#: eelf32btsmipn32_fbsd.c:207 eelf32ebmip.c:207 eelf32ebmipvxworks.c:207
-#: eelf32elmip.c:207 eelf32elmipvxworks.c:207 eelf32l4300.c:207
-#: eelf32lmip.c:207 eelf32lr5900.c:207 eelf32lr5900n32.c:207 eelf32lsmip.c:207
+#: eaarch64linuxb.c:229 eaarch64nto.c:229 eaix5ppc.c:1125 eaix5rs6.c:1125
+#: eaixppc.c:1125 eaixrs6.c:1125 earmelf.c:298 earmelf_fbsd.c:298
+#: earmelf_fuchsia.c:299 earmelf_haiku.c:299 earmelf_linux.c:299
+#: earmelf_linux_eabi.c:299 earmelf_linux_fdpiceabi.c:299 earmelf_nacl.c:299
+#: earmelf_nbsd.c:298 earmelf_phoenix.c:299 earmelf_vxworks.c:298
+#: earmelfb.c:298 earmelfb_fbsd.c:298 earmelfb_fuchsia.c:299
+#: earmelfb_linux.c:299 earmelfb_linux_eabi.c:299
+#: earmelfb_linux_fdpiceabi.c:299 earmelfb_nacl.c:299 earmelfb_nbsd.c:298
+#: earmnto.c:298 eavr1.c:181 eavr2.c:181 eavr25.c:181 eavr3.c:181 eavr31.c:181
+#: eavr35.c:181 eavr4.c:181 eavr5.c:181 eavr51.c:181 eavr6.c:181
+#: eavrtiny.c:181 eavrxmega1.c:181 eavrxmega2.c:181 eavrxmega3.c:181
+#: eavrxmega4.c:181 eavrxmega5.c:181 eavrxmega6.c:181 eavrxmega7.c:181
+#: ecskyelf.c:212 ecskyelf_linux.c:212 eelf32b4300.c:207 eelf32bmip.c:207
+#: eelf32bmipn32.c:221 eelf32bsmip.c:221 eelf32btsmip.c:207
+#: eelf32btsmip_fbsd.c:207 eelf32btsmipn32.c:207 eelf32btsmipn32_fbsd.c:207
+#: eelf32ebmip.c:207 eelf32ebmipvxworks.c:207 eelf32elmip.c:207
+#: eelf32elmipvxworks.c:207 eelf32l4300.c:207 eelf32lmip.c:207
+#: eelf32lr5900.c:207 eelf32lr5900n32.c:207 eelf32lsmip.c:207
#: eelf32ltsmip.c:207 eelf32ltsmip_fbsd.c:207 eelf32ltsmipn32.c:207
#: eelf32ltsmipn32_fbsd.c:207 eelf32metag.c:208 eelf32mipswindiss.c:207
#: eelf64bmip.c:221 eelf64btsmip.c:207 eelf64btsmip_fbsd.c:207
@@ -3390,76 +3497,76 @@ msgstr ""
#: eaarch64elf32.c:271 eaarch64elf32b.c:271 eaarch64elfb.c:271
#: eaarch64fbsd.c:272 eaarch64fbsdb.c:272 eaarch64haiku.c:272
#: eaarch64linux.c:272 eaarch64linux32.c:272 eaarch64linux32b.c:272
-#: eaarch64linuxb.c:272 earcelf.c:112 earclinux.c:113 earclinux_nps.c:113
-#: earcv2elf.c:112 earcv2elfx.c:112 earmelf.c:410 earmelf_fbsd.c:410
-#: earmelf_fuchsia.c:411 earmelf_haiku.c:411 earmelf_linux.c:411
-#: earmelf_linux_eabi.c:411 earmelf_linux_fdpiceabi.c:411 earmelf_nacl.c:411
-#: earmelf_nbsd.c:410 earmelf_phoenix.c:411 earmelf_vxworks.c:410
-#: earmelfb.c:410 earmelfb_fbsd.c:410 earmelfb_fuchsia.c:411
-#: earmelfb_linux.c:411 earmelfb_linux_eabi.c:411
+#: eaarch64linuxb.c:272 eaarch64nto.c:272 earcelf.c:114 earclinux.c:115
+#: earclinux_nps.c:115 earcv2elf.c:114 earcv2elfx.c:114 earmelf.c:410
+#: earmelf_fbsd.c:410 earmelf_fuchsia.c:411 earmelf_haiku.c:411
+#: earmelf_linux.c:411 earmelf_linux_eabi.c:411 earmelf_linux_fdpiceabi.c:411
+#: earmelf_nacl.c:411 earmelf_nbsd.c:410 earmelf_phoenix.c:411
+#: earmelf_vxworks.c:410 earmelfb.c:410 earmelfb_fbsd.c:410
+#: earmelfb_fuchsia.c:411 earmelfb_linux.c:411 earmelfb_linux_eabi.c:411
#: earmelfb_linux_fdpiceabi.c:411 earmelfb_nacl.c:411 earmelfb_nbsd.c:410
-#: earmnto.c:410 eavr1.c:316 eavr2.c:316 eavr25.c:316 eavr3.c:316 eavr31.c:316
-#: eavr35.c:316 eavr4.c:316 eavr5.c:316 eavr51.c:316 eavr6.c:316
-#: eavrtiny.c:316 eavrxmega1.c:316 eavrxmega2.c:316 eavrxmega3.c:316
-#: eavrxmega4.c:316 eavrxmega5.c:316 eavrxmega6.c:316 eavrxmega7.c:316
-#: ecriself.c:112 ecrislinux.c:113 ed10velf.c:112 eelf32_sparc.c:113
-#: eelf32_sparc_sol2.c:245 eelf32_sparc_vxworks.c:142 eelf32_spu.c:782
+#: earmnto.c:410 eavr1.c:318 eavr2.c:318 eavr25.c:318 eavr3.c:318 eavr31.c:318
+#: eavr35.c:318 eavr4.c:318 eavr5.c:318 eavr51.c:318 eavr6.c:318
+#: eavrtiny.c:318 eavrxmega1.c:318 eavrxmega2.c:318 eavrxmega3.c:318
+#: eavrxmega4.c:318 eavrxmega5.c:318 eavrxmega6.c:318 eavrxmega7.c:318
+#: ecriself.c:114 ecrislinux.c:115 ed10velf.c:114 eelf32_sparc.c:115
+#: eelf32_sparc_sol2.c:247 eelf32_sparc_vxworks.c:144 eelf32_spu.c:784
#: eelf32_tic6x_be.c:183 eelf32_tic6x_elf_be.c:183 eelf32_tic6x_elf_le.c:183
#: eelf32_tic6x_le.c:183 eelf32_tic6x_linux_be.c:183
-#: eelf32_tic6x_linux_le.c:183 eelf32_x86_64.c:137 eelf32am33lin.c:112
-#: eelf32b4300.c:309 eelf32bfin.c:122 eelf32bfinfd.c:122 eelf32bmip.c:309
-#: eelf32bmipn32.c:323 eelf32briscv.c:91 eelf32briscv_ilp32.c:91
-#: eelf32briscv_ilp32f.c:91 eelf32bsmip.c:323 eelf32btsmip.c:309
-#: eelf32btsmip_fbsd.c:309 eelf32btsmipn32.c:309 eelf32btsmipn32_fbsd.c:309
-#: eelf32cr16.c:262 eelf32crx.c:149 eelf32ebmip.c:309 eelf32ebmipvxworks.c:338
-#: eelf32elmip.c:309 eelf32elmipvxworks.c:338 eelf32epiphany.c:112
-#: eelf32epiphany_4x4.c:114 eelf32frvfd.c:112 eelf32ip2k.c:112
-#: eelf32l4300.c:309 eelf32lm32.c:112 eelf32lm32fd.c:112 eelf32lmip.c:309
-#: eelf32loongarch.c:90 eelf32lppc.c:333 eelf32lppclinux.c:333
-#: eelf32lppcnto.c:333 eelf32lppcsim.c:333 eelf32lr5900.c:309
-#: eelf32lr5900n32.c:308 eelf32lriscv.c:91 eelf32lriscv_ilp32.c:91
-#: eelf32lriscv_ilp32f.c:91 eelf32lsmip.c:309 eelf32ltsmip.c:309
-#: eelf32ltsmip_fbsd.c:309 eelf32ltsmipn32.c:309 eelf32ltsmipn32_fbsd.c:309
-#: eelf32m32c.c:123 eelf32mb_linux.c:113 eelf32mbel_linux.c:113
-#: eelf32mcore.c:112 eelf32mep.c:112 eelf32metag.c:258 eelf32microblaze.c:112
-#: eelf32microblazeel.c:112 eelf32mipswindiss.c:308 eelf32moxie.c:112
-#: eelf32or1k.c:113 eelf32or1k_linux.c:113 eelf32ppc.c:333
-#: eelf32ppc_fbsd.c:333 eelf32ppchaiku.c:333 eelf32ppclinux.c:333
-#: eelf32ppcnto.c:333 eelf32ppcsim.c:333 eelf32ppcvxworks.c:307
-#: eelf32ppcwindiss.c:333 eelf32rl78.c:112 eelf32rx.c:128 eelf32rx_linux.c:125
-#: eelf32tilegx.c:113 eelf32tilegx_be.c:113 eelf32tilepro.c:113
-#: eelf32vax.c:112 eelf32visium.c:112 eelf32xstormy16.c:123
-#: eelf32xtensa.c:2009 eelf32z80.c:139 eelf64_aix.c:112 eelf64_ia64.c:138
-#: eelf64_ia64_fbsd.c:138 eelf64_ia64_vms.c:220 eelf64_s390.c:128
-#: eelf64_sparc.c:113 eelf64_sparc_fbsd.c:113 eelf64_sparc_sol2.c:245
-#: eelf64alpha.c:196 eelf64alpha_fbsd.c:196 eelf64alpha_nbsd.c:196
-#: eelf64bmip.c:323 eelf64bpf.c:112 eelf64briscv.c:91 eelf64briscv_lp64.c:91
-#: eelf64briscv_lp64f.c:91 eelf64btsmip.c:309 eelf64btsmip_fbsd.c:309
-#: eelf64hppa.c:112 eelf64loongarch.c:90 eelf64lppc.c:594
-#: eelf64lppc_fbsd.c:594 eelf64lriscv.c:91 eelf64lriscv_lp64.c:91
-#: eelf64lriscv_lp64f.c:91 eelf64ltsmip.c:309 eelf64ltsmip_fbsd.c:309
-#: eelf64mmix.c:223 eelf64ppc.c:594 eelf64ppc_fbsd.c:594 eelf64rdos.c:128
-#: eelf64tilegx.c:113 eelf64tilegx_be.c:113 eelf_i386.c:137 eelf_i386_be.c:136
-#: eelf_i386_fbsd.c:137 eelf_i386_haiku.c:137 eelf_i386_ldso.c:137
-#: eelf_i386_sol2.c:269 eelf_i386_vxworks.c:166 eelf_iamcu.c:137
-#: eelf_mipsel_haiku.c:309 eelf_s390.c:113 eelf_x86_64.c:137
-#: eelf_x86_64_cloudabi.c:137 eelf_x86_64_fbsd.c:137 eelf_x86_64_haiku.c:137
-#: eelf_x86_64_sol2.c:269 eh8300elf.c:112 eh8300elf_linux.c:112
-#: eh8300helf.c:112 eh8300helf_linux.c:112 eh8300hnelf.c:112 eh8300self.c:112
-#: eh8300self_linux.c:112 eh8300snelf.c:112 eh8300sxelf.c:112
-#: eh8300sxelf_linux.c:112 eh8300sxnelf.c:112 ehppa64linux.c:112
+#: eelf32_tic6x_linux_le.c:183 eelf32_x86_64.c:139 eelf32am33lin.c:114
+#: eelf32b4300.c:311 eelf32bfin.c:124 eelf32bfinfd.c:124 eelf32bmip.c:311
+#: eelf32bmipn32.c:325 eelf32briscv.c:92 eelf32briscv_ilp32.c:92
+#: eelf32briscv_ilp32f.c:92 eelf32bsmip.c:325 eelf32btsmip.c:311
+#: eelf32btsmip_fbsd.c:311 eelf32btsmipn32.c:311 eelf32btsmipn32_fbsd.c:311
+#: eelf32cr16.c:264 eelf32crx.c:151 eelf32ebmip.c:311 eelf32ebmipvxworks.c:340
+#: eelf32elmip.c:311 eelf32elmipvxworks.c:340 eelf32epiphany.c:114
+#: eelf32epiphany_4x4.c:116 eelf32frvfd.c:114 eelf32ip2k.c:114
+#: eelf32l4300.c:311 eelf32lm32.c:114 eelf32lm32fd.c:114 eelf32lmip.c:311
+#: eelf32loongarch.c:91 eelf32lppc.c:335 eelf32lppclinux.c:335
+#: eelf32lppcnto.c:335 eelf32lppcsim.c:335 eelf32lr5900.c:311
+#: eelf32lr5900n32.c:310 eelf32lriscv.c:92 eelf32lriscv_ilp32.c:92
+#: eelf32lriscv_ilp32f.c:92 eelf32lsmip.c:311 eelf32ltsmip.c:311
+#: eelf32ltsmip_fbsd.c:311 eelf32ltsmipn32.c:311 eelf32ltsmipn32_fbsd.c:311
+#: eelf32m32c.c:125 eelf32mb_linux.c:115 eelf32mbel_linux.c:115
+#: eelf32mcore.c:114 eelf32mep.c:114 eelf32metag.c:258 eelf32microblaze.c:114
+#: eelf32microblazeel.c:114 eelf32mipswindiss.c:310 eelf32moxie.c:114
+#: eelf32or1k.c:115 eelf32or1k_linux.c:115 eelf32ppc.c:335
+#: eelf32ppc_fbsd.c:335 eelf32ppchaiku.c:335 eelf32ppclinux.c:335
+#: eelf32ppcnto.c:335 eelf32ppcsim.c:335 eelf32ppcvxworks.c:309
+#: eelf32ppcwindiss.c:335 eelf32rl78.c:114 eelf32rx.c:130 eelf32rx_linux.c:127
+#: eelf32tilegx.c:115 eelf32tilegx_be.c:115 eelf32tilepro.c:115
+#: eelf32vax.c:114 eelf32visium.c:114 eelf32xstormy16.c:125
+#: eelf32xtensa.c:2009 eelf32z80.c:141 eelf64_aix.c:114 eelf64_ia64.c:140
+#: eelf64_ia64_fbsd.c:140 eelf64_ia64_vms.c:221 eelf64_s390.c:130
+#: eelf64_sparc.c:115 eelf64_sparc_fbsd.c:115 eelf64_sparc_sol2.c:247
+#: eelf64alpha.c:198 eelf64alpha_fbsd.c:198 eelf64alpha_nbsd.c:198
+#: eelf64bmip.c:325 eelf64bpf.c:114 eelf64briscv.c:92 eelf64briscv_lp64.c:92
+#: eelf64briscv_lp64f.c:92 eelf64btsmip.c:311 eelf64btsmip_fbsd.c:311
+#: eelf64hppa.c:114 eelf64loongarch.c:91 eelf64lppc.c:594
+#: eelf64lppc_fbsd.c:594 eelf64lriscv.c:92 eelf64lriscv_lp64.c:92
+#: eelf64lriscv_lp64f.c:92 eelf64ltsmip.c:311 eelf64ltsmip_fbsd.c:311
+#: eelf64mmix.c:225 eelf64ppc.c:594 eelf64ppc_fbsd.c:594 eelf64rdos.c:130
+#: eelf64tilegx.c:115 eelf64tilegx_be.c:115 eelf_i386.c:139 eelf_i386_be.c:138
+#: eelf_i386_fbsd.c:139 eelf_i386_haiku.c:139 eelf_i386_ldso.c:139
+#: eelf_i386_sol2.c:271 eelf_i386_vxworks.c:168 eelf_iamcu.c:139
+#: eelf_mipsel_haiku.c:311 eelf_s390.c:115 eelf_x86_64.c:139
+#: eelf_x86_64_cloudabi.c:139 eelf_x86_64_fbsd.c:139 eelf_x86_64_haiku.c:139
+#: eelf_x86_64_sol2.c:271 eh8300elf.c:114 eh8300elf_linux.c:114
+#: eh8300helf.c:114 eh8300helf_linux.c:114 eh8300hnelf.c:114 eh8300self.c:114
+#: eh8300self_linux.c:114 eh8300snelf.c:114 eh8300sxelf.c:114
+#: eh8300sxelf_linux.c:114 eh8300sxnelf.c:114 ehppa64linux.c:114
#: ehppaelf.c:282 ehppalinux.c:282 ehppanbsd.c:282 ehppaobsd.c:282
-#: ei386lynx.c:127 ei386moss.c:127 ei386nto.c:127 em32relf.c:112
-#: em32relf_linux.c:112 em32rlelf.c:112 em32rlelf_linux.c:112
-#: em68hc11elf.c:389 em68hc11elfb.c:389 em68hc12elf.c:389 em68hc12elfb.c:389
-#: em68kelf.c:264 em68kelfnbsd.c:264 emn10300.c:112 ends32belf.c:220
-#: ends32belf16m.c:220 ends32belf_linux.c:220 ends32elf.c:220
-#: ends32elf16m.c:220 ends32elf_linux.c:220 enios2elf.c:275 enios2linux.c:275
-#: epruelf.c:133 escore3_elf.c:134 escore7_elf.c:134 eshelf.c:112
-#: eshelf_fd.c:113 eshelf_linux.c:113 eshelf_nbsd.c:112 eshelf_nto.c:112
-#: eshelf_uclinux.c:112 eshelf_vxworks.c:141 eshlelf.c:112 eshlelf_fd.c:113
-#: eshlelf_linux.c:113 eshlelf_nbsd.c:112 eshlelf_nto.c:112
-#: eshlelf_vxworks.c:141 ev850.c:159 ev850_rh850.c:159
+#: ei386lynx.c:129 ei386moss.c:129 ei386nto.c:129 em32relf.c:114
+#: em32relf_linux.c:114 em32rlelf.c:114 em32rlelf_linux.c:114
+#: em68hc11elf.c:391 em68hc11elfb.c:391 em68hc12elf.c:391 em68hc12elfb.c:391
+#: em68kelf.c:266 em68kelfnbsd.c:266 emn10300.c:114 ends32belf.c:222
+#: ends32belf16m.c:222 ends32belf_linux.c:222 ends32elf.c:222
+#: ends32elf16m.c:222 ends32elf_linux.c:222 enios2elf.c:275 enios2linux.c:275
+#: epruelf.c:135 escore3_elf.c:134 escore7_elf.c:134 eshelf.c:114
+#: eshelf_fd.c:115 eshelf_linux.c:115 eshelf_nbsd.c:114 eshelf_nto.c:114
+#: eshelf_uclinux.c:114 eshelf_vxworks.c:143 eshlelf.c:114 eshlelf_fd.c:115
+#: eshlelf_linux.c:115 eshlelf_nbsd.c:114 eshlelf_nto.c:114
+#: eshlelf_vxworks.c:143 ev850.c:161 ev850_rh850.c:161
msgid "%X%P: .eh_frame/.stab edit: %E\n"
msgstr ""
@@ -3467,14 +3574,14 @@ msgstr ""
#: eaarch64elf32.c:287 eaarch64elf32b.c:287 eaarch64elfb.c:287
#: eaarch64fbsd.c:288 eaarch64fbsdb.c:288 eaarch64haiku.c:288
#: eaarch64linux.c:288 eaarch64linux32.c:288 eaarch64linux32b.c:288
-#: eaarch64linuxb.c:288 earmelf.c:425 earmelf_fbsd.c:425 earmelf_fuchsia.c:426
-#: earmelf_haiku.c:426 earmelf_linux.c:426 earmelf_linux_eabi.c:426
-#: earmelf_linux_fdpiceabi.c:426 earmelf_nacl.c:426 earmelf_nbsd.c:425
-#: earmelf_phoenix.c:426 earmelf_vxworks.c:425 earmelfb.c:425
-#: earmelfb_fbsd.c:425 earmelfb_fuchsia.c:426 earmelfb_linux.c:426
-#: earmelfb_linux_eabi.c:426 earmelfb_linux_fdpiceabi.c:426
-#: earmelfb_nacl.c:426 earmelfb_nbsd.c:425 earmnto.c:425 ecskyelf.c:262
-#: ecskyelf_linux.c:262
+#: eaarch64linuxb.c:288 eaarch64nto.c:288 earmelf.c:425 earmelf_fbsd.c:425
+#: earmelf_fuchsia.c:426 earmelf_haiku.c:426 earmelf_linux.c:426
+#: earmelf_linux_eabi.c:426 earmelf_linux_fdpiceabi.c:426 earmelf_nacl.c:426
+#: earmelf_nbsd.c:425 earmelf_phoenix.c:426 earmelf_vxworks.c:425
+#: earmelfb.c:425 earmelfb_fbsd.c:425 earmelfb_fuchsia.c:426
+#: earmelfb_linux.c:426 earmelfb_linux_eabi.c:426
+#: earmelfb_linux_fdpiceabi.c:426 earmelfb_nacl.c:426 earmelfb_nbsd.c:425
+#: earmnto.c:425 ecskyelf.c:262 ecskyelf_linux.c:262
msgid "%X%P: could not compute sections lists for stub generation: %E\n"
msgstr ""
@@ -3482,30 +3589,31 @@ msgstr ""
#: eaarch64elf32.c:302 eaarch64elf32b.c:302 eaarch64elfb.c:302
#: eaarch64fbsd.c:303 eaarch64fbsdb.c:303 eaarch64haiku.c:303
#: eaarch64linux.c:303 eaarch64linux32.c:303 eaarch64linux32b.c:303
-#: eaarch64linuxb.c:303 earmelf.c:440 earmelf_fbsd.c:440 earmelf_fuchsia.c:441
-#: earmelf_haiku.c:441 earmelf_linux.c:441 earmelf_linux_eabi.c:441
-#: earmelf_linux_fdpiceabi.c:441 earmelf_nacl.c:441 earmelf_nbsd.c:440
-#: earmelf_phoenix.c:441 earmelf_vxworks.c:440 earmelfb.c:440
-#: earmelfb_fbsd.c:440 earmelfb_fuchsia.c:441 earmelfb_linux.c:441
-#: earmelfb_linux_eabi.c:441 earmelfb_linux_fdpiceabi.c:441
-#: earmelfb_nacl.c:441 earmelfb_nbsd.c:440 earmnto.c:440 eavr1.c:131
-#: eavr1.c:195 eavr2.c:131 eavr2.c:195 eavr25.c:131 eavr25.c:195 eavr3.c:131
-#: eavr3.c:195 eavr31.c:131 eavr31.c:195 eavr35.c:131 eavr35.c:195 eavr4.c:131
-#: eavr4.c:195 eavr5.c:131 eavr5.c:195 eavr51.c:131 eavr51.c:195 eavr6.c:131
-#: eavr6.c:195 eavrtiny.c:131 eavrtiny.c:195 eavrxmega1.c:131 eavrxmega1.c:195
-#: eavrxmega2.c:131 eavrxmega2.c:195 eavrxmega3.c:131 eavrxmega3.c:195
-#: eavrxmega4.c:131 eavrxmega4.c:195 eavrxmega5.c:131 eavrxmega5.c:195
-#: eavrxmega6.c:131 eavrxmega6.c:195 eavrxmega7.c:131 eavrxmega7.c:195
-#: eelf32metag.c:273 eelf32metag.c:287 eelf64lppc.c:537 eelf64lppc.c:556
-#: eelf64lppc.c:583 eelf64lppc_fbsd.c:537 eelf64lppc_fbsd.c:556
-#: eelf64lppc_fbsd.c:583 eelf64ppc.c:537 eelf64ppc.c:556 eelf64ppc.c:583
-#: eelf64ppc_fbsd.c:537 eelf64ppc_fbsd.c:556 eelf64ppc_fbsd.c:583
-#: ehppaelf.c:297 ehppaelf.c:312 ehppalinux.c:297 ehppalinux.c:312
-#: ehppanbsd.c:297 ehppanbsd.c:312 ehppaobsd.c:297 ehppaobsd.c:312
-#: em68hc11elf.c:92 em68hc11elf.c:102 em68hc11elf.c:319 em68hc11elfb.c:92
-#: em68hc11elfb.c:102 em68hc11elfb.c:319 em68hc12elf.c:92 em68hc12elf.c:102
-#: em68hc12elf.c:319 em68hc12elfb.c:92 em68hc12elfb.c:102 em68hc12elfb.c:319
-#: enios2elf.c:292 enios2elf.c:305 enios2linux.c:292 enios2linux.c:305
+#: eaarch64linuxb.c:303 eaarch64nto.c:303 earmelf.c:440 earmelf_fbsd.c:440
+#: earmelf_fuchsia.c:441 earmelf_haiku.c:441 earmelf_linux.c:441
+#: earmelf_linux_eabi.c:441 earmelf_linux_fdpiceabi.c:441 earmelf_nacl.c:441
+#: earmelf_nbsd.c:440 earmelf_phoenix.c:441 earmelf_vxworks.c:440
+#: earmelfb.c:440 earmelfb_fbsd.c:440 earmelfb_fuchsia.c:441
+#: earmelfb_linux.c:441 earmelfb_linux_eabi.c:441
+#: earmelfb_linux_fdpiceabi.c:441 earmelfb_nacl.c:441 earmelfb_nbsd.c:440
+#: earmnto.c:440 eavr1.c:131 eavr1.c:195 eavr2.c:131 eavr2.c:195 eavr25.c:131
+#: eavr25.c:195 eavr3.c:131 eavr3.c:195 eavr31.c:131 eavr31.c:195 eavr35.c:131
+#: eavr35.c:195 eavr4.c:131 eavr4.c:195 eavr5.c:131 eavr5.c:195 eavr51.c:131
+#: eavr51.c:195 eavr6.c:131 eavr6.c:195 eavrtiny.c:131 eavrtiny.c:195
+#: eavrxmega1.c:131 eavrxmega1.c:195 eavrxmega2.c:131 eavrxmega2.c:195
+#: eavrxmega3.c:131 eavrxmega3.c:195 eavrxmega4.c:131 eavrxmega4.c:195
+#: eavrxmega5.c:131 eavrxmega5.c:195 eavrxmega6.c:131 eavrxmega6.c:195
+#: eavrxmega7.c:131 eavrxmega7.c:195 eelf32metag.c:273 eelf32metag.c:287
+#: eelf64lppc.c:537 eelf64lppc.c:556 eelf64lppc.c:583 eelf64lppc_fbsd.c:537
+#: eelf64lppc_fbsd.c:556 eelf64lppc_fbsd.c:583 eelf64ppc.c:537 eelf64ppc.c:556
+#: eelf64ppc.c:583 eelf64ppc_fbsd.c:537 eelf64ppc_fbsd.c:556
+#: eelf64ppc_fbsd.c:583 ehppaelf.c:297 ehppaelf.c:312 ehppalinux.c:297
+#: ehppalinux.c:312 ehppanbsd.c:297 ehppanbsd.c:312 ehppaobsd.c:297
+#: ehppaobsd.c:312 em68hc11elf.c:92 em68hc11elf.c:102 em68hc11elf.c:319
+#: em68hc11elfb.c:92 em68hc11elfb.c:102 em68hc11elfb.c:319 em68hc12elf.c:92
+#: em68hc12elf.c:102 em68hc12elf.c:319 em68hc12elfb.c:92 em68hc12elfb.c:102
+#: em68hc12elfb.c:319 enios2elf.c:292 enios2elf.c:305 enios2linux.c:292
+#: enios2linux.c:305
msgid "%X%P: can not size stub section: %E\n"
msgstr ""
@@ -3513,22 +3621,22 @@ msgstr ""
#: eaarch64elf32.c:321 eaarch64elf32b.c:321 eaarch64elfb.c:321
#: eaarch64fbsd.c:322 eaarch64fbsdb.c:322 eaarch64haiku.c:322
#: eaarch64linux.c:322 eaarch64linux32.c:322 eaarch64linux32b.c:322
-#: eaarch64linuxb.c:322 eaix5ppc.c:1165 eaix5rs6.c:1165 eaixppc.c:1165
-#: eaixrs6.c:1165 earmelf.c:474 earmelf_fbsd.c:474 earmelf_fuchsia.c:475
-#: earmelf_haiku.c:475 earmelf_linux.c:475 earmelf_linux_eabi.c:475
-#: earmelf_linux_fdpiceabi.c:475 earmelf_nacl.c:475 earmelf_nbsd.c:474
-#: earmelf_phoenix.c:475 earmelf_vxworks.c:474 earmelfb.c:474
-#: earmelfb_fbsd.c:474 earmelfb_fuchsia.c:475 earmelfb_linux.c:475
-#: earmelfb_linux_eabi.c:475 earmelfb_linux_fdpiceabi.c:475
-#: earmelfb_nacl.c:475 earmelfb_nbsd.c:474 earmnto.c:474 eavr1.c:204
-#: eavr2.c:204 eavr25.c:204 eavr3.c:204 eavr31.c:204 eavr35.c:204 eavr4.c:204
-#: eavr5.c:204 eavr51.c:204 eavr6.c:204 eavrtiny.c:204 eavrxmega1.c:204
-#: eavrxmega2.c:204 eavrxmega3.c:204 eavrxmega4.c:204 eavrxmega5.c:204
-#: eavrxmega6.c:204 eavrxmega7.c:204 eelf32metag.c:302 eelf64lppc.c:633
-#: eelf64lppc_fbsd.c:633 eelf64ppc.c:633 eelf64ppc_fbsd.c:633 ehppaelf.c:334
-#: ehppalinux.c:334 ehppanbsd.c:334 ehppaobsd.c:334 em68hc11elf.c:323
-#: em68hc11elfb.c:323 em68hc12elf.c:323 em68hc12elfb.c:323 enios2elf.c:320
-#: enios2linux.c:320 eppcmacos.c:1165
+#: eaarch64linuxb.c:322 eaarch64nto.c:322 eaix5ppc.c:1165 eaix5rs6.c:1165
+#: eaixppc.c:1165 eaixrs6.c:1165 earmelf.c:474 earmelf_fbsd.c:474
+#: earmelf_fuchsia.c:475 earmelf_haiku.c:475 earmelf_linux.c:475
+#: earmelf_linux_eabi.c:475 earmelf_linux_fdpiceabi.c:475 earmelf_nacl.c:475
+#: earmelf_nbsd.c:474 earmelf_phoenix.c:475 earmelf_vxworks.c:474
+#: earmelfb.c:474 earmelfb_fbsd.c:474 earmelfb_fuchsia.c:475
+#: earmelfb_linux.c:475 earmelfb_linux_eabi.c:475
+#: earmelfb_linux_fdpiceabi.c:475 earmelfb_nacl.c:475 earmelfb_nbsd.c:474
+#: earmnto.c:474 eavr1.c:204 eavr2.c:204 eavr25.c:204 eavr3.c:204 eavr31.c:204
+#: eavr35.c:204 eavr4.c:204 eavr5.c:204 eavr51.c:204 eavr6.c:204
+#: eavrtiny.c:204 eavrxmega1.c:204 eavrxmega2.c:204 eavrxmega3.c:204
+#: eavrxmega4.c:204 eavrxmega5.c:204 eavrxmega6.c:204 eavrxmega7.c:204
+#: eelf32metag.c:302 eelf64lppc.c:633 eelf64lppc_fbsd.c:633 eelf64ppc.c:633
+#: eelf64ppc_fbsd.c:633 ehppaelf.c:334 ehppalinux.c:334 ehppanbsd.c:334
+#: ehppaobsd.c:334 em68hc11elf.c:323 em68hc11elfb.c:323 em68hc12elf.c:323
+#: em68hc12elfb.c:323 enios2elf.c:320 enios2linux.c:320 eppcmacos.c:1165
msgid "%X%P: can not build stubs: %E\n"
msgstr ""
@@ -3561,25 +3669,25 @@ msgstr ""
#: eaarch64elf32.c:339 eaarch64elf32b.c:339 eaarch64elfb.c:339
#: eaarch64fbsd.c:340 eaarch64fbsdb.c:340 eaarch64haiku.c:340
#: eaarch64linux.c:340 eaarch64linux32.c:340 eaarch64linux32b.c:340
-#: eaarch64linuxb.c:340 earm_wince_pe.c:1515 earmelf.c:543 earmelf_fbsd.c:543
-#: earmelf_fuchsia.c:544 earmelf_haiku.c:544 earmelf_linux.c:544
-#: earmelf_linux_eabi.c:544 earmelf_linux_fdpiceabi.c:544 earmelf_nacl.c:544
-#: earmelf_nbsd.c:543 earmelf_phoenix.c:544 earmelf_vxworks.c:543
-#: earmelfb.c:543 earmelfb_fbsd.c:543 earmelfb_fuchsia.c:544
-#: earmelfb_linux.c:544 earmelfb_linux_eabi.c:544
+#: eaarch64linuxb.c:340 eaarch64nto.c:340 earm_wince_pe.c:1601 earmelf.c:543
+#: earmelf_fbsd.c:543 earmelf_fuchsia.c:544 earmelf_haiku.c:544
+#: earmelf_linux.c:544 earmelf_linux_eabi.c:544 earmelf_linux_fdpiceabi.c:544
+#: earmelf_nacl.c:544 earmelf_nbsd.c:543 earmelf_phoenix.c:544
+#: earmelf_vxworks.c:543 earmelfb.c:543 earmelfb_fbsd.c:543
+#: earmelfb_fuchsia.c:544 earmelfb_linux.c:544 earmelfb_linux_eabi.c:544
#: earmelfb_linux_fdpiceabi.c:544 earmelfb_nacl.c:544 earmelfb_nbsd.c:543
-#: earmnto.c:543 earmpe.c:1515 eavr1.c:144 eavr2.c:144 eavr25.c:144
+#: earmnto.c:543 earmpe.c:1601 eavr1.c:144 eavr2.c:144 eavr25.c:144
#: eavr3.c:144 eavr31.c:144 eavr35.c:144 eavr4.c:144 eavr5.c:144 eavr51.c:144
#: eavr6.c:144 eavrtiny.c:144 eavrxmega1.c:144 eavrxmega2.c:144
#: eavrxmega3.c:144 eavrxmega4.c:144 eavrxmega5.c:144 eavrxmega6.c:144
-#: eavrxmega7.c:144 eelf32briscv.c:126 eelf32briscv_ilp32.c:126
-#: eelf32briscv_ilp32f.c:126 eelf32loongarch.c:108 eelf32lriscv.c:126
-#: eelf32lriscv_ilp32.c:126 eelf32lriscv_ilp32f.c:126 eelf64briscv.c:126
-#: eelf64briscv_lp64.c:126 eelf64briscv_lp64f.c:126 eelf64loongarch.c:108
-#: eelf64lriscv.c:126 eelf64lriscv_lp64.c:126 eelf64lriscv_lp64f.c:126
-#: ei386pe.c:1515 ei386pe_posix.c:1515 emcorepe.c:1515 ends32belf.c:76
+#: eavrxmega7.c:144 eelf32briscv.c:127 eelf32briscv_ilp32.c:127
+#: eelf32briscv_ilp32f.c:127 eelf32loongarch.c:111 eelf32lriscv.c:127
+#: eelf32lriscv_ilp32.c:127 eelf32lriscv_ilp32f.c:127 eelf64briscv.c:127
+#: eelf64briscv_lp64.c:127 eelf64briscv_lp64f.c:127 eelf64loongarch.c:111
+#: eelf64lriscv.c:127 eelf64lriscv_lp64.c:127 eelf64lriscv_lp64f.c:127
+#: ei386pe.c:1601 ei386pe_posix.c:1601 emcorepe.c:1601 ends32belf.c:76
#: ends32belf16m.c:76 ends32belf_linux.c:76 ends32elf.c:76 ends32elf16m.c:76
-#: ends32elf_linux.c:76 escore3_elf.c:81 escore7_elf.c:81 eshpe.c:1515
+#: ends32elf_linux.c:76 escore3_elf.c:81 escore7_elf.c:81 eshpe.c:1601
#: ev850.c:93 ev850_rh850.c:93
msgid "%F%P: error: cannot change output format whilst linking %s binaries\n"
msgstr ""
@@ -3588,76 +3696,78 @@ msgstr ""
#: eaarch64elf32.c:591 eaarch64elf32b.c:591 eaarch64elfb.c:591
#: eaarch64fbsd.c:592 eaarch64fbsdb.c:592 eaarch64haiku.c:592
#: eaarch64linux.c:592 eaarch64linux32.c:592 eaarch64linux32b.c:592
-#: eaarch64linuxb.c:592 earcelf.c:223 earclinux.c:279 earclinux_nps.c:279
-#: earcv2elf.c:207 earcv2elfx.c:207 earmelf.c:831 earmelf_fbsd.c:831
-#: earmelf_fuchsia.c:832 earmelf_haiku.c:832 earmelf_linux.c:832
-#: earmelf_linux_eabi.c:832 earmelf_linux_fdpiceabi.c:832 earmelf_nacl.c:832
-#: earmelf_nbsd.c:831 earmelf_phoenix.c:832 earmelf_vxworks.c:867
-#: earmelfb.c:831 earmelfb_fbsd.c:831 earmelfb_fuchsia.c:832
-#: earmelfb_linux.c:832 earmelfb_linux_eabi.c:832
+#: eaarch64linuxb.c:592 eaarch64nto.c:760 earcelf.c:225 earclinux.c:281
+#: earclinux_nps.c:281 earcv2elf.c:209 earcv2elfx.c:209 earmelf.c:831
+#: earmelf_fbsd.c:831 earmelf_fuchsia.c:832 earmelf_haiku.c:832
+#: earmelf_linux.c:832 earmelf_linux_eabi.c:832 earmelf_linux_fdpiceabi.c:832
+#: earmelf_nacl.c:832 earmelf_nbsd.c:831 earmelf_phoenix.c:832
+#: earmelf_vxworks.c:867 earmelfb.c:831 earmelfb_fbsd.c:831
+#: earmelfb_fuchsia.c:832 earmelfb_linux.c:832 earmelfb_linux_eabi.c:832
#: earmelfb_linux_fdpiceabi.c:832 earmelfb_nacl.c:832 earmelfb_nbsd.c:831
-#: earmnto.c:806 eavr1.c:431 eavr2.c:431 eavr25.c:431 eavr3.c:431 eavr31.c:431
-#: eavr35.c:431 eavr4.c:431 eavr5.c:431 eavr51.c:431 eavr6.c:431
-#: eavrtiny.c:431 eavrxmega1.c:431 eavrxmega2.c:431 eavrxmega3.c:431
-#: eavrxmega4.c:431 eavrxmega5.c:431 eavrxmega6.c:431 eavrxmega7.c:431
-#: ecriself.c:222 ecrislinux.c:254 ecskyelf.c:466 ecskyelf_linux.c:523
-#: ed10velf.c:207 eelf32_sparc.c:279 eelf32_sparc_sol2.c:411
-#: eelf32_sparc_vxworks.c:316 eelf32_spu.c:940 eelf32_tic6x_be.c:390
-#: eelf32_tic6x_elf_be.c:390 eelf32_tic6x_elf_le.c:390 eelf32_tic6x_le.c:390
-#: eelf32_tic6x_linux_be.c:390 eelf32_tic6x_linux_le.c:390
-#: eelf32_x86_64.c:5414 eelf32am33lin.c:253 eelf32b4300.c:494 eelf32bfin.c:271
-#: eelf32bfinfd.c:296 eelf32bmip.c:494 eelf32bmipn32.c:508 eelf32briscv.c:347
-#: eelf32briscv_ilp32.c:347 eelf32briscv_ilp32f.c:347 eelf32bsmip.c:508
-#: eelf32btsmip.c:494 eelf32btsmip_fbsd.c:494 eelf32btsmipn32.c:494
-#: eelf32btsmipn32_fbsd.c:494 eelf32cr16.c:357 eelf32crx.c:244
-#: eelf32ebmip.c:494 eelf32ebmipvxworks.c:529 eelf32elmip.c:494
-#: eelf32elmipvxworks.c:529 eelf32epiphany.c:222 eelf32epiphany_4x4.c:209
-#: eelf32frvfd.c:278 eelf32ip2k.c:222 eelf32l4300.c:494 eelf32lm32.c:222
-#: eelf32lm32fd.c:278 eelf32lmip.c:494 eelf32loongarch.c:329 eelf32lppc.c:542
-#: eelf32lppclinux.c:542 eelf32lppcnto.c:542 eelf32lppcsim.c:542
-#: eelf32lr5900.c:463 eelf32lr5900n32.c:462 eelf32lriscv.c:347
-#: eelf32lriscv_ilp32.c:347 eelf32lriscv_ilp32f.c:347 eelf32lsmip.c:494
-#: eelf32ltsmip.c:494 eelf32ltsmip_fbsd.c:494 eelf32ltsmipn32.c:494
-#: eelf32ltsmipn32_fbsd.c:494 eelf32m32c.c:233 eelf32mb_linux.c:279
-#: eelf32mbel_linux.c:279 eelf32mcore.c:228 eelf32mep.c:207 eelf32metag.c:528
-#: eelf32microblaze.c:207 eelf32microblazeel.c:207 eelf32mipswindiss.c:437
-#: eelf32moxie.c:222 eelf32or1k.c:223 eelf32or1k_linux.c:279 eelf32ppc.c:542
-#: eelf32ppc_fbsd.c:542 eelf32ppchaiku.c:542 eelf32ppclinux.c:542
-#: eelf32ppcnto.c:542 eelf32ppcsim.c:542 eelf32ppcvxworks.c:516
-#: eelf32ppcwindiss.c:542 eelf32rl78.c:222 eelf32rx.c:250 eelf32rx_linux.c:235
-#: eelf32tilegx.c:279 eelf32tilegx_be.c:279 eelf32tilepro.c:279
-#: eelf32vax.c:253 eelf32visium.c:207 eelf32xstormy16.c:218
-#: eelf32xtensa.c:2192 eelf32z80.c:234 eelf64_aix.c:253 eelf64_ia64.c:310
-#: eelf64_ia64_fbsd.c:310 eelf64_s390.c:349 eelf64_sparc.c:279
-#: eelf64_sparc_fbsd.c:279 eelf64_sparc_sol2.c:411 eelf64alpha.c:372
-#: eelf64alpha_fbsd.c:372 eelf64alpha_nbsd.c:372 eelf64bmip.c:508
-#: eelf64bpf.c:207 eelf64briscv.c:347 eelf64briscv_lp64.c:347
-#: eelf64briscv_lp64f.c:347 eelf64btsmip.c:494 eelf64btsmip_fbsd.c:494
-#: eelf64hppa.c:223 eelf64loongarch.c:329 eelf64lppc.c:991
-#: eelf64lppc_fbsd.c:991 eelf64lriscv.c:347 eelf64lriscv_lp64.c:347
-#: eelf64lriscv_lp64f.c:347 eelf64ltsmip.c:494 eelf64ltsmip_fbsd.c:494
-#: eelf64mmix.c:364 eelf64ppc.c:991 eelf64ppc_fbsd.c:991 eelf64rdos.c:304
-#: eelf64tilegx.c:279 eelf64tilegx_be.c:279 eelf_i386.c:5036
-#: eelf_i386_be.c:277 eelf_i386_fbsd.c:313 eelf_i386_haiku.c:313
-#: eelf_i386_ldso.c:288 eelf_i386_sol2.c:445 eelf_i386_vxworks.c:340
-#: eelf_iamcu.c:313 eelf_mipsel_haiku.c:494 eelf_s390.c:279 eelf_x86_64.c:5414
-#: eelf_x86_64_cloudabi.c:313 eelf_x86_64_fbsd.c:313 eelf_x86_64_haiku.c:313
-#: eelf_x86_64_sol2.c:445 eh8300elf.c:222 eh8300elf_linux.c:222
-#: eh8300helf.c:222 eh8300helf_linux.c:222 eh8300hnelf.c:222 eh8300self.c:222
-#: eh8300self_linux.c:222 eh8300snelf.c:222 eh8300sxelf.c:222
-#: eh8300sxelf_linux.c:222 eh8300sxnelf.c:222 ehppa64linux.c:253
-#: ehppaelf.c:490 ehppalinux.c:562 ehppanbsd.c:562 ehppaobsd.c:562
-#: ei386lynx.c:268 ei386moss.c:268 ei386nto.c:268 em32relf.c:222
-#: em32relf_linux.c:278 em32rlelf.c:222 em32rlelf_linux.c:278
-#: em68hc11elf.c:492 em68hc11elfb.c:492 em68hc12elf.c:492 em68hc12elfb.c:492
-#: em68kelf.c:436 em68kelfnbsd.c:436 emn10300.c:253 ends32belf.c:343
-#: ends32belf16m.c:343 ends32belf_linux.c:366 ends32elf.c:343
-#: ends32elf16m.c:343 ends32elf_linux.c:366 enios2elf.c:509 enios2linux.c:540
-#: epruelf.c:228 escore3_elf.c:275 escore7_elf.c:275 eshelf.c:253
-#: eshelf_fd.c:279 eshelf_linux.c:279 eshelf_nbsd.c:253 eshelf_nto.c:253
-#: eshelf_uclinux.c:253 eshelf_vxworks.c:290 eshlelf.c:253 eshlelf_fd.c:279
-#: eshlelf_linux.c:279 eshlelf_nbsd.c:253 eshlelf_nto.c:253
-#: eshlelf_vxworks.c:290 ev850.c:254 ev850_rh850.c:254
+#: earmnto.c:806 eavr1.c:433 eavr2.c:433 eavr25.c:433 eavr3.c:433 eavr31.c:433
+#: eavr35.c:433 eavr4.c:433 eavr5.c:433 eavr51.c:433 eavr6.c:433
+#: eavrtiny.c:433 eavrxmega1.c:433 eavrxmega2.c:433 eavrxmega3.c:433
+#: eavrxmega4.c:433 eavrxmega5.c:433 eavrxmega6.c:433 eavrxmega7.c:433
+#: ecriself.c:224 ecrislinux.c:256 ecskyelf.c:468 ecskyelf_linux.c:525
+#: ed10velf.c:209 eelf32_sparc.c:281 eelf32_sparc_sol2.c:413
+#: eelf32_sparc_vxworks.c:318 eelf32_spu.c:942 eelf32_tic6x_be.c:392
+#: eelf32_tic6x_elf_be.c:392 eelf32_tic6x_elf_le.c:392 eelf32_tic6x_le.c:392
+#: eelf32_tic6x_linux_be.c:392 eelf32_tic6x_linux_le.c:392
+#: eelf32_x86_64.c:5416 eelf32am33lin.c:255 eelf32b4300.c:496 eelf32bfin.c:273
+#: eelf32bfinfd.c:298 eelf32bmip.c:496 eelf32bmipn32.c:510 eelf32briscv.c:363
+#: eelf32briscv_ilp32.c:363 eelf32briscv_ilp32f.c:363 eelf32bsmip.c:510
+#: eelf32btsmip.c:496 eelf32btsmip_fbsd.c:496 eelf32btsmipn32.c:496
+#: eelf32btsmipn32_fbsd.c:496 eelf32cr16.c:359 eelf32crx.c:246
+#: eelf32ebmip.c:496 eelf32ebmipvxworks.c:531 eelf32elmip.c:496
+#: eelf32elmipvxworks.c:531 eelf32epiphany.c:224 eelf32epiphany_4x4.c:211
+#: eelf32frvfd.c:280 eelf32ip2k.c:224 eelf32kvx.c:521 eelf32l4300.c:496
+#: eelf32lm32.c:224 eelf32lm32fd.c:280 eelf32lmip.c:496 eelf32loongarch.c:334
+#: eelf32lppc.c:544 eelf32lppclinux.c:544 eelf32lppcnto.c:544
+#: eelf32lppcsim.c:544 eelf32lr5900.c:465 eelf32lr5900n32.c:464
+#: eelf32lriscv.c:363 eelf32lriscv_ilp32.c:363 eelf32lriscv_ilp32f.c:363
+#: eelf32lsmip.c:496 eelf32ltsmip.c:496 eelf32ltsmip_fbsd.c:496
+#: eelf32ltsmipn32.c:496 eelf32ltsmipn32_fbsd.c:496 eelf32m32c.c:235
+#: eelf32mb_linux.c:281 eelf32mbel_linux.c:281 eelf32mcore.c:230
+#: eelf32mep.c:209 eelf32metag.c:530 eelf32microblaze.c:209
+#: eelf32microblazeel.c:209 eelf32mipswindiss.c:439 eelf32moxie.c:224
+#: eelf32or1k.c:225 eelf32or1k_linux.c:281 eelf32ppc.c:544
+#: eelf32ppc_fbsd.c:544 eelf32ppchaiku.c:544 eelf32ppclinux.c:544
+#: eelf32ppcnto.c:544 eelf32ppcsim.c:544 eelf32ppcvxworks.c:518
+#: eelf32ppcwindiss.c:544 eelf32rl78.c:224 eelf32rx.c:252 eelf32rx_linux.c:237
+#: eelf32tilegx.c:281 eelf32tilegx_be.c:281 eelf32tilepro.c:281
+#: eelf32vax.c:255 eelf32visium.c:209 eelf32xstormy16.c:220
+#: eelf32xtensa.c:2192 eelf32z80.c:236 eelf64_aix.c:255 eelf64_ia64.c:312
+#: eelf64_ia64_fbsd.c:312 eelf64_s390.c:351 eelf64_sparc.c:281
+#: eelf64_sparc_fbsd.c:281 eelf64_sparc_sol2.c:413 eelf64alpha.c:374
+#: eelf64alpha_fbsd.c:374 eelf64alpha_nbsd.c:374 eelf64bmip.c:510
+#: eelf64bpf.c:209 eelf64briscv.c:363 eelf64briscv_lp64.c:363
+#: eelf64briscv_lp64f.c:363 eelf64btsmip.c:496 eelf64btsmip_fbsd.c:496
+#: eelf64hppa.c:225 eelf64kvx.c:521 eelf64kvx_linux.c:543
+#: eelf64loongarch.c:334 eelf64lppc.c:993 eelf64lppc_fbsd.c:993
+#: eelf64lriscv.c:363 eelf64lriscv_lp64.c:363 eelf64lriscv_lp64f.c:363
+#: eelf64ltsmip.c:496 eelf64ltsmip_fbsd.c:496 eelf64mmix.c:366 eelf64ppc.c:993
+#: eelf64ppc_fbsd.c:993 eelf64rdos.c:306 eelf64tilegx.c:281
+#: eelf64tilegx_be.c:281 eelf_i386.c:5038 eelf_i386_be.c:279
+#: eelf_i386_fbsd.c:315 eelf_i386_haiku.c:315 eelf_i386_ldso.c:290
+#: eelf_i386_sol2.c:447 eelf_i386_vxworks.c:342 eelf_iamcu.c:315
+#: eelf_mipsel_haiku.c:496 eelf_s390.c:281 eelf_x86_64.c:5416
+#: eelf_x86_64_cloudabi.c:315 eelf_x86_64_fbsd.c:315 eelf_x86_64_haiku.c:315
+#: eelf_x86_64_sol2.c:447 eh8300elf.c:224 eh8300elf_linux.c:224
+#: eh8300helf.c:224 eh8300helf_linux.c:224 eh8300hnelf.c:224 eh8300self.c:224
+#: eh8300self_linux.c:224 eh8300snelf.c:224 eh8300sxelf.c:224
+#: eh8300sxelf_linux.c:224 eh8300sxnelf.c:224 ehppa64linux.c:255
+#: ehppaelf.c:492 ehppalinux.c:564 ehppanbsd.c:564 ehppaobsd.c:564
+#: ei386lynx.c:270 ei386moss.c:270 ei386nto.c:270 em32relf.c:224
+#: em32relf_linux.c:280 em32rlelf.c:224 em32rlelf_linux.c:280
+#: em68hc11elf.c:494 em68hc11elfb.c:494 em68hc12elf.c:494 em68hc12elfb.c:494
+#: em68kelf.c:438 em68kelfnbsd.c:438 emn10300.c:255 ends32belf.c:345
+#: ends32belf16m.c:345 ends32belf_linux.c:368 ends32elf.c:345
+#: ends32elf16m.c:345 ends32elf_linux.c:368 enios2elf.c:511 enios2linux.c:542
+#: epruelf.c:230 escore3_elf.c:275 escore7_elf.c:275 eshelf.c:255
+#: eshelf_fd.c:281 eshelf_linux.c:281 eshelf_nbsd.c:255 eshelf_nto.c:255
+#: eshelf_uclinux.c:255 eshelf_vxworks.c:292 eshlelf.c:255 eshlelf_fd.c:281
+#: eshlelf_linux.c:281 eshlelf_nbsd.c:255 eshlelf_nto.c:255
+#: eshlelf_vxworks.c:292 ev850.c:256 ev850_rh850.c:256
msgid ""
"%F%P: --compress-debug-sections=zstd: ld is not built with zstd support\n"
msgstr ""
@@ -3666,76 +3776,78 @@ msgstr ""
#: eaarch64elf32.c:596 eaarch64elf32b.c:596 eaarch64elfb.c:596
#: eaarch64fbsd.c:597 eaarch64fbsdb.c:597 eaarch64haiku.c:597
#: eaarch64linux.c:597 eaarch64linux32.c:597 eaarch64linux32b.c:597
-#: eaarch64linuxb.c:597 earcelf.c:228 earclinux.c:284 earclinux_nps.c:284
-#: earcv2elf.c:212 earcv2elfx.c:212 earmelf.c:836 earmelf_fbsd.c:836
-#: earmelf_fuchsia.c:837 earmelf_haiku.c:837 earmelf_linux.c:837
-#: earmelf_linux_eabi.c:837 earmelf_linux_fdpiceabi.c:837 earmelf_nacl.c:837
-#: earmelf_nbsd.c:836 earmelf_phoenix.c:837 earmelf_vxworks.c:872
-#: earmelfb.c:836 earmelfb_fbsd.c:836 earmelfb_fuchsia.c:837
-#: earmelfb_linux.c:837 earmelfb_linux_eabi.c:837
+#: eaarch64linuxb.c:597 eaarch64nto.c:765 earcelf.c:230 earclinux.c:286
+#: earclinux_nps.c:286 earcv2elf.c:214 earcv2elfx.c:214 earmelf.c:836
+#: earmelf_fbsd.c:836 earmelf_fuchsia.c:837 earmelf_haiku.c:837
+#: earmelf_linux.c:837 earmelf_linux_eabi.c:837 earmelf_linux_fdpiceabi.c:837
+#: earmelf_nacl.c:837 earmelf_nbsd.c:836 earmelf_phoenix.c:837
+#: earmelf_vxworks.c:872 earmelfb.c:836 earmelfb_fbsd.c:836
+#: earmelfb_fuchsia.c:837 earmelfb_linux.c:837 earmelfb_linux_eabi.c:837
#: earmelfb_linux_fdpiceabi.c:837 earmelfb_nacl.c:837 earmelfb_nbsd.c:836
-#: earmnto.c:811 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:227 ecrislinux.c:259 ecskyelf.c:471 ecskyelf_linux.c:528
-#: ed10velf.c:212 eelf32_sparc.c:284 eelf32_sparc_sol2.c:416
-#: eelf32_sparc_vxworks.c:321 eelf32_spu.c:945 eelf32_tic6x_be.c:395
-#: eelf32_tic6x_elf_be.c:395 eelf32_tic6x_elf_le.c:395 eelf32_tic6x_le.c:395
-#: eelf32_tic6x_linux_be.c:395 eelf32_tic6x_linux_le.c:395
-#: eelf32_x86_64.c:5419 eelf32am33lin.c:258 eelf32b4300.c:499 eelf32bfin.c:276
-#: eelf32bfinfd.c:301 eelf32bmip.c:499 eelf32bmipn32.c:513 eelf32briscv.c:352
-#: eelf32briscv_ilp32.c:352 eelf32briscv_ilp32f.c:352 eelf32bsmip.c:513
-#: eelf32btsmip.c:499 eelf32btsmip_fbsd.c:499 eelf32btsmipn32.c:499
-#: eelf32btsmipn32_fbsd.c:499 eelf32cr16.c:362 eelf32crx.c:249
-#: eelf32ebmip.c:499 eelf32ebmipvxworks.c:534 eelf32elmip.c:499
-#: eelf32elmipvxworks.c:534 eelf32epiphany.c:227 eelf32epiphany_4x4.c:214
-#: eelf32frvfd.c:283 eelf32ip2k.c:227 eelf32l4300.c:499 eelf32lm32.c:227
-#: eelf32lm32fd.c:283 eelf32lmip.c:499 eelf32loongarch.c:334 eelf32lppc.c:547
-#: eelf32lppclinux.c:547 eelf32lppcnto.c:547 eelf32lppcsim.c:547
-#: eelf32lr5900.c:468 eelf32lr5900n32.c:467 eelf32lriscv.c:352
-#: eelf32lriscv_ilp32.c:352 eelf32lriscv_ilp32f.c:352 eelf32lsmip.c:499
-#: eelf32ltsmip.c:499 eelf32ltsmip_fbsd.c:499 eelf32ltsmipn32.c:499
-#: eelf32ltsmipn32_fbsd.c:499 eelf32m32c.c:238 eelf32mb_linux.c:284
-#: eelf32mbel_linux.c:284 eelf32mcore.c:233 eelf32mep.c:212 eelf32metag.c:533
-#: eelf32microblaze.c:212 eelf32microblazeel.c:212 eelf32mipswindiss.c:442
-#: eelf32moxie.c:227 eelf32or1k.c:228 eelf32or1k_linux.c:284 eelf32ppc.c:547
-#: eelf32ppc_fbsd.c:547 eelf32ppchaiku.c:547 eelf32ppclinux.c:547
-#: eelf32ppcnto.c:547 eelf32ppcsim.c:547 eelf32ppcvxworks.c:521
-#: eelf32ppcwindiss.c:547 eelf32rl78.c:227 eelf32rx.c:255 eelf32rx_linux.c:240
-#: eelf32tilegx.c:284 eelf32tilegx_be.c:284 eelf32tilepro.c:284
-#: eelf32vax.c:258 eelf32visium.c:212 eelf32xstormy16.c:223
-#: eelf32xtensa.c:2197 eelf32z80.c:239 eelf64_aix.c:258 eelf64_ia64.c:315
-#: eelf64_ia64_fbsd.c:315 eelf64_s390.c:354 eelf64_sparc.c:284
-#: eelf64_sparc_fbsd.c:284 eelf64_sparc_sol2.c:416 eelf64alpha.c:377
-#: eelf64alpha_fbsd.c:377 eelf64alpha_nbsd.c:377 eelf64bmip.c:513
-#: eelf64bpf.c:212 eelf64briscv.c:352 eelf64briscv_lp64.c:352
-#: eelf64briscv_lp64f.c:352 eelf64btsmip.c:499 eelf64btsmip_fbsd.c:499
-#: eelf64hppa.c:228 eelf64loongarch.c:334 eelf64lppc.c:996
-#: eelf64lppc_fbsd.c:996 eelf64lriscv.c:352 eelf64lriscv_lp64.c:352
-#: eelf64lriscv_lp64f.c:352 eelf64ltsmip.c:499 eelf64ltsmip_fbsd.c:499
-#: eelf64mmix.c:369 eelf64ppc.c:996 eelf64ppc_fbsd.c:996 eelf64rdos.c:309
-#: eelf64tilegx.c:284 eelf64tilegx_be.c:284 eelf_i386.c:5041
-#: eelf_i386_be.c:282 eelf_i386_fbsd.c:318 eelf_i386_haiku.c:318
-#: eelf_i386_ldso.c:293 eelf_i386_sol2.c:450 eelf_i386_vxworks.c:345
-#: eelf_iamcu.c:318 eelf_mipsel_haiku.c:499 eelf_s390.c:284 eelf_x86_64.c:5419
-#: eelf_x86_64_cloudabi.c:318 eelf_x86_64_fbsd.c:318 eelf_x86_64_haiku.c:318
-#: eelf_x86_64_sol2.c:450 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:258
-#: ehppaelf.c:495 ehppalinux.c:567 ehppanbsd.c:567 ehppaobsd.c:567
-#: ei386lynx.c:273 ei386moss.c:273 ei386nto.c:273 em32relf.c:227
-#: em32relf_linux.c:283 em32rlelf.c:227 em32rlelf_linux.c:283
-#: em68hc11elf.c:497 em68hc11elfb.c:497 em68hc12elf.c:497 em68hc12elfb.c:497
-#: em68kelf.c:441 em68kelfnbsd.c:441 emn10300.c:258 ends32belf.c:348
-#: ends32belf16m.c:348 ends32belf_linux.c:371 ends32elf.c:348
-#: ends32elf16m.c:348 ends32elf_linux.c:371 enios2elf.c:514 enios2linux.c:545
-#: epruelf.c:233 escore3_elf.c:280 escore7_elf.c:280 eshelf.c:258
-#: eshelf_fd.c:284 eshelf_linux.c:284 eshelf_nbsd.c:258 eshelf_nto.c:258
-#: eshelf_uclinux.c:258 eshelf_vxworks.c:295 eshlelf.c:258 eshlelf_fd.c:284
-#: eshlelf_linux.c:284 eshlelf_nbsd.c:258 eshlelf_nto.c:258
-#: eshlelf_vxworks.c:295 ev850.c:259 ev850_rh850.c:259
+#: earmnto.c:811 eavr1.c:438 eavr2.c:438 eavr25.c:438 eavr3.c:438 eavr31.c:438
+#: eavr35.c:438 eavr4.c:438 eavr5.c:438 eavr51.c:438 eavr6.c:438
+#: eavrtiny.c:438 eavrxmega1.c:438 eavrxmega2.c:438 eavrxmega3.c:438
+#: eavrxmega4.c:438 eavrxmega5.c:438 eavrxmega6.c:438 eavrxmega7.c:438
+#: ecriself.c:229 ecrislinux.c:261 ecskyelf.c:473 ecskyelf_linux.c:530
+#: ed10velf.c:214 eelf32_sparc.c:286 eelf32_sparc_sol2.c:418
+#: eelf32_sparc_vxworks.c:323 eelf32_spu.c:947 eelf32_tic6x_be.c:397
+#: eelf32_tic6x_elf_be.c:397 eelf32_tic6x_elf_le.c:397 eelf32_tic6x_le.c:397
+#: eelf32_tic6x_linux_be.c:397 eelf32_tic6x_linux_le.c:397
+#: eelf32_x86_64.c:5421 eelf32am33lin.c:260 eelf32b4300.c:501 eelf32bfin.c:278
+#: eelf32bfinfd.c:303 eelf32bmip.c:501 eelf32bmipn32.c:515 eelf32briscv.c:368
+#: eelf32briscv_ilp32.c:368 eelf32briscv_ilp32f.c:368 eelf32bsmip.c:515
+#: eelf32btsmip.c:501 eelf32btsmip_fbsd.c:501 eelf32btsmipn32.c:501
+#: eelf32btsmipn32_fbsd.c:501 eelf32cr16.c:364 eelf32crx.c:251
+#: eelf32ebmip.c:501 eelf32ebmipvxworks.c:536 eelf32elmip.c:501
+#: eelf32elmipvxworks.c:536 eelf32epiphany.c:229 eelf32epiphany_4x4.c:216
+#: eelf32frvfd.c:285 eelf32ip2k.c:229 eelf32kvx.c:526 eelf32l4300.c:501
+#: eelf32lm32.c:229 eelf32lm32fd.c:285 eelf32lmip.c:501 eelf32loongarch.c:339
+#: eelf32lppc.c:549 eelf32lppclinux.c:549 eelf32lppcnto.c:549
+#: eelf32lppcsim.c:549 eelf32lr5900.c:470 eelf32lr5900n32.c:469
+#: eelf32lriscv.c:368 eelf32lriscv_ilp32.c:368 eelf32lriscv_ilp32f.c:368
+#: eelf32lsmip.c:501 eelf32ltsmip.c:501 eelf32ltsmip_fbsd.c:501
+#: eelf32ltsmipn32.c:501 eelf32ltsmipn32_fbsd.c:501 eelf32m32c.c:240
+#: eelf32mb_linux.c:286 eelf32mbel_linux.c:286 eelf32mcore.c:235
+#: eelf32mep.c:214 eelf32metag.c:535 eelf32microblaze.c:214
+#: eelf32microblazeel.c:214 eelf32mipswindiss.c:444 eelf32moxie.c:229
+#: eelf32or1k.c:230 eelf32or1k_linux.c:286 eelf32ppc.c:549
+#: eelf32ppc_fbsd.c:549 eelf32ppchaiku.c:549 eelf32ppclinux.c:549
+#: eelf32ppcnto.c:549 eelf32ppcsim.c:549 eelf32ppcvxworks.c:523
+#: eelf32ppcwindiss.c:549 eelf32rl78.c:229 eelf32rx.c:257 eelf32rx_linux.c:242
+#: eelf32tilegx.c:286 eelf32tilegx_be.c:286 eelf32tilepro.c:286
+#: eelf32vax.c:260 eelf32visium.c:214 eelf32xstormy16.c:225
+#: eelf32xtensa.c:2197 eelf32z80.c:241 eelf64_aix.c:260 eelf64_ia64.c:317
+#: eelf64_ia64_fbsd.c:317 eelf64_s390.c:356 eelf64_sparc.c:286
+#: eelf64_sparc_fbsd.c:286 eelf64_sparc_sol2.c:418 eelf64alpha.c:379
+#: eelf64alpha_fbsd.c:379 eelf64alpha_nbsd.c:379 eelf64bmip.c:515
+#: eelf64bpf.c:214 eelf64briscv.c:368 eelf64briscv_lp64.c:368
+#: eelf64briscv_lp64f.c:368 eelf64btsmip.c:501 eelf64btsmip_fbsd.c:501
+#: eelf64hppa.c:230 eelf64kvx.c:526 eelf64kvx_linux.c:548
+#: eelf64loongarch.c:339 eelf64lppc.c:998 eelf64lppc_fbsd.c:998
+#: eelf64lriscv.c:368 eelf64lriscv_lp64.c:368 eelf64lriscv_lp64f.c:368
+#: eelf64ltsmip.c:501 eelf64ltsmip_fbsd.c:501 eelf64mmix.c:371 eelf64ppc.c:998
+#: eelf64ppc_fbsd.c:998 eelf64rdos.c:311 eelf64tilegx.c:286
+#: eelf64tilegx_be.c:286 eelf_i386.c:5043 eelf_i386_be.c:284
+#: eelf_i386_fbsd.c:320 eelf_i386_haiku.c:320 eelf_i386_ldso.c:295
+#: eelf_i386_sol2.c:452 eelf_i386_vxworks.c:347 eelf_iamcu.c:320
+#: eelf_mipsel_haiku.c:501 eelf_s390.c:286 eelf_x86_64.c:5421
+#: eelf_x86_64_cloudabi.c:320 eelf_x86_64_fbsd.c:320 eelf_x86_64_haiku.c:320
+#: eelf_x86_64_sol2.c:452 eh8300elf.c:229 eh8300elf_linux.c:229
+#: eh8300helf.c:229 eh8300helf_linux.c:229 eh8300hnelf.c:229 eh8300self.c:229
+#: eh8300self_linux.c:229 eh8300snelf.c:229 eh8300sxelf.c:229
+#: eh8300sxelf_linux.c:229 eh8300sxnelf.c:229 ehppa64linux.c:260
+#: ehppaelf.c:497 ehppalinux.c:569 ehppanbsd.c:569 ehppaobsd.c:569
+#: ei386lynx.c:275 ei386moss.c:275 ei386nto.c:275 em32relf.c:229
+#: em32relf_linux.c:285 em32rlelf.c:229 em32rlelf_linux.c:285
+#: em68hc11elf.c:499 em68hc11elfb.c:499 em68hc12elf.c:499 em68hc12elfb.c:499
+#: em68kelf.c:443 em68kelfnbsd.c:443 emn10300.c:260 ends32belf.c:350
+#: ends32belf16m.c:350 ends32belf_linux.c:373 ends32elf.c:350
+#: ends32elf16m.c:350 ends32elf_linux.c:373 enios2elf.c:516 enios2linux.c:547
+#: epruelf.c:235 escore3_elf.c:280 escore7_elf.c:280 eshelf.c:260
+#: eshelf_fd.c:286 eshelf_linux.c:286 eshelf_nbsd.c:260 eshelf_nto.c:260
+#: eshelf_uclinux.c:260 eshelf_vxworks.c:297 eshlelf.c:260 eshlelf_fd.c:286
+#: eshlelf_linux.c:286 eshlelf_nbsd.c:260 eshlelf_nto.c:260
+#: eshlelf_vxworks.c:297 ev850.c:261 ev850_rh850.c:261
msgid "%F%P: invalid --compress-debug-sections option: `%s'\n"
msgstr ""
@@ -3743,57 +3855,58 @@ msgstr ""
#: 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:279 earclinux.c:335 earclinux_nps.c:335
-#: earmelf.c:887 earmelf_fbsd.c:887 earmelf_fuchsia.c:888 earmelf_haiku.c:888
-#: earmelf_linux.c:888 earmelf_linux_eabi.c:888 earmelf_linux_fdpiceabi.c:888
-#: earmelf_nacl.c:888 earmelf_nbsd.c:887 earmelf_phoenix.c:888
-#: earmelf_vxworks.c:923 earmelfb.c:887 earmelfb_fbsd.c:887
-#: earmelfb_fuchsia.c:888 earmelfb_linux.c:888 earmelfb_linux_eabi.c:888
-#: earmelfb_linux_fdpiceabi.c:888 earmelfb_nacl.c:888 earmelfb_nbsd.c:887
-#: earmnto.c:862 ecrislinux.c:310 ecskyelf_linux.c:579 eelf32_sparc.c:335
-#: eelf32_sparc_sol2.c:467 eelf32_sparc_vxworks.c:372 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:5470 eelf32am33lin.c:309 eelf32b4300.c:550 eelf32bfin.c:327
-#: eelf32bfinfd.c:352 eelf32bmip.c:550 eelf32bmipn32.c:564 eelf32briscv.c:403
-#: eelf32briscv_ilp32.c:403 eelf32briscv_ilp32f.c:403 eelf32bsmip.c:564
-#: eelf32btsmip.c:550 eelf32btsmip_fbsd.c:550 eelf32btsmipn32.c:550
-#: eelf32btsmipn32_fbsd.c:550 eelf32ebmip.c:550 eelf32ebmipvxworks.c:585
-#: eelf32elmip.c:550 eelf32elmipvxworks.c:585 eelf32frvfd.c:334
-#: eelf32l4300.c:550 eelf32lm32fd.c:334 eelf32lmip.c:550 eelf32loongarch.c:385
-#: eelf32lppc.c:598 eelf32lppclinux.c:598 eelf32lppcnto.c:598
-#: eelf32lppcsim.c:598 eelf32lriscv.c:403 eelf32lriscv_ilp32.c:403
-#: eelf32lriscv_ilp32f.c:403 eelf32lsmip.c:550 eelf32ltsmip.c:550
-#: eelf32ltsmip_fbsd.c:550 eelf32ltsmipn32.c:550 eelf32ltsmipn32_fbsd.c:550
-#: eelf32mb_linux.c:335 eelf32mbel_linux.c:335 eelf32metag.c:584
-#: eelf32or1k_linux.c:335 eelf32ppc.c:598 eelf32ppc_fbsd.c:598
-#: eelf32ppchaiku.c:598 eelf32ppclinux.c:598 eelf32ppcnto.c:598
-#: eelf32ppcsim.c:598 eelf32ppcvxworks.c:572 eelf32ppcwindiss.c:598
-#: eelf32tilegx.c:335 eelf32tilegx_be.c:335 eelf32tilepro.c:335
-#: eelf32vax.c:309 eelf32xtensa.c:2248 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
-#: eelf64briscv.c:403 eelf64briscv_lp64.c:403 eelf64briscv_lp64f.c:403
-#: eelf64btsmip.c:550 eelf64btsmip_fbsd.c:550 eelf64hppa.c:279
-#: eelf64loongarch.c:385 eelf64lppc.c:1047 eelf64lppc_fbsd.c:1047
-#: eelf64lriscv.c:403 eelf64lriscv_lp64.c:403 eelf64lriscv_lp64f.c:403
-#: eelf64ltsmip.c:550 eelf64ltsmip_fbsd.c:550 eelf64mmix.c:420
-#: eelf64ppc.c:1047 eelf64ppc_fbsd.c:1047 eelf64rdos.c:360 eelf64tilegx.c:335
-#: eelf64tilegx_be.c:335 eelf_i386.c:5092 eelf_i386_be.c:333
-#: eelf_i386_fbsd.c:369 eelf_i386_haiku.c:369 eelf_i386_ldso.c:344
-#: eelf_i386_sol2.c:501 eelf_i386_vxworks.c:396 eelf_iamcu.c:369
-#: eelf_mipsel_haiku.c:550 eelf_s390.c:335 eelf_x86_64.c:5470
-#: eelf_x86_64_cloudabi.c:369 eelf_x86_64_fbsd.c:369 eelf_x86_64_haiku.c:369
-#: eelf_x86_64_sol2.c:501 ehppa64linux.c:309 ehppalinux.c:618 ehppanbsd.c:618
-#: ehppaobsd.c:618 ei386lynx.c:324 ei386moss.c:324 ei386nto.c:324
-#: em32relf_linux.c:334 em32rlelf_linux.c:334 em68kelf.c:492
-#: em68kelfnbsd.c:492 emn10300.c:309 ends32belf_linux.c:422
-#: ends32elf_linux.c:422 enios2linux.c:596 escore3_elf.c:331 escore7_elf.c:331
-#: 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
+#: eaarch64linuxb.c:648 eaarch64nto.c:816 earcelf.c:281 earclinux.c:337
+#: earclinux_nps.c:337 earmelf.c:887 earmelf_fbsd.c:887 earmelf_fuchsia.c:888
+#: earmelf_haiku.c:888 earmelf_linux.c:888 earmelf_linux_eabi.c:888
+#: earmelf_linux_fdpiceabi.c:888 earmelf_nacl.c:888 earmelf_nbsd.c:887
+#: earmelf_phoenix.c:888 earmelf_vxworks.c:923 earmelfb.c:887
+#: earmelfb_fbsd.c:887 earmelfb_fuchsia.c:888 earmelfb_linux.c:888
+#: earmelfb_linux_eabi.c:888 earmelfb_linux_fdpiceabi.c:888
+#: earmelfb_nacl.c:888 earmelfb_nbsd.c:887 earmnto.c:862 ecrislinux.c:312
+#: ecskyelf_linux.c:581 eelf32_sparc.c:337 eelf32_sparc_sol2.c:469
+#: eelf32_sparc_vxworks.c:374 eelf32_tic6x_be.c:448 eelf32_tic6x_elf_be.c:448
+#: eelf32_tic6x_elf_le.c:448 eelf32_tic6x_le.c:448 eelf32_tic6x_linux_be.c:448
+#: eelf32_tic6x_linux_le.c:448 eelf32_x86_64.c:5472 eelf32am33lin.c:311
+#: eelf32b4300.c:552 eelf32bfin.c:329 eelf32bfinfd.c:354 eelf32bmip.c:552
+#: eelf32bmipn32.c:566 eelf32briscv.c:419 eelf32briscv_ilp32.c:419
+#: eelf32briscv_ilp32f.c:419 eelf32bsmip.c:566 eelf32btsmip.c:552
+#: eelf32btsmip_fbsd.c:552 eelf32btsmipn32.c:552 eelf32btsmipn32_fbsd.c:552
+#: eelf32ebmip.c:552 eelf32ebmipvxworks.c:587 eelf32elmip.c:552
+#: eelf32elmipvxworks.c:587 eelf32frvfd.c:336 eelf32kvx.c:577
+#: eelf32l4300.c:552 eelf32lm32fd.c:336 eelf32lmip.c:552 eelf32loongarch.c:390
+#: eelf32lppc.c:600 eelf32lppclinux.c:600 eelf32lppcnto.c:600
+#: eelf32lppcsim.c:600 eelf32lriscv.c:419 eelf32lriscv_ilp32.c:419
+#: eelf32lriscv_ilp32f.c:419 eelf32lsmip.c:552 eelf32ltsmip.c:552
+#: eelf32ltsmip_fbsd.c:552 eelf32ltsmipn32.c:552 eelf32ltsmipn32_fbsd.c:552
+#: eelf32mb_linux.c:337 eelf32mbel_linux.c:337 eelf32metag.c:586
+#: eelf32or1k_linux.c:337 eelf32ppc.c:600 eelf32ppc_fbsd.c:600
+#: eelf32ppchaiku.c:600 eelf32ppclinux.c:600 eelf32ppcnto.c:600
+#: eelf32ppcsim.c:600 eelf32ppcvxworks.c:574 eelf32ppcwindiss.c:600
+#: eelf32tilegx.c:337 eelf32tilegx_be.c:337 eelf32tilepro.c:337
+#: eelf32vax.c:311 eelf32xtensa.c:2248 eelf64_aix.c:311 eelf64_ia64.c:368
+#: eelf64_ia64_fbsd.c:368 eelf64_s390.c:407 eelf64_sparc.c:337
+#: eelf64_sparc_fbsd.c:337 eelf64_sparc_sol2.c:469 eelf64alpha.c:430
+#: eelf64alpha_fbsd.c:430 eelf64alpha_nbsd.c:430 eelf64bmip.c:566
+#: eelf64briscv.c:419 eelf64briscv_lp64.c:419 eelf64briscv_lp64f.c:419
+#: eelf64btsmip.c:552 eelf64btsmip_fbsd.c:552 eelf64hppa.c:281 eelf64kvx.c:577
+#: eelf64kvx_linux.c:599 eelf64loongarch.c:390 eelf64lppc.c:1049
+#: eelf64lppc_fbsd.c:1049 eelf64lriscv.c:419 eelf64lriscv_lp64.c:419
+#: eelf64lriscv_lp64f.c:419 eelf64ltsmip.c:552 eelf64ltsmip_fbsd.c:552
+#: eelf64mmix.c:422 eelf64ppc.c:1049 eelf64ppc_fbsd.c:1049 eelf64rdos.c:362
+#: eelf64tilegx.c:337 eelf64tilegx_be.c:337 eelf_i386.c:5094
+#: eelf_i386_be.c:335 eelf_i386_fbsd.c:371 eelf_i386_haiku.c:371
+#: eelf_i386_ldso.c:346 eelf_i386_sol2.c:503 eelf_i386_vxworks.c:398
+#: eelf_iamcu.c:371 eelf_mipsel_haiku.c:552 eelf_s390.c:337 eelf_x86_64.c:5472
+#: eelf_x86_64_cloudabi.c:371 eelf_x86_64_fbsd.c:371 eelf_x86_64_haiku.c:371
+#: eelf_x86_64_sol2.c:503 ehppa64linux.c:311 ehppalinux.c:620 ehppanbsd.c:620
+#: ehppaobsd.c:620 ei386lynx.c:326 ei386moss.c:326 ei386nto.c:326
+#: em32relf_linux.c:336 em32rlelf_linux.c:336 em68kelf.c:494
+#: em68kelfnbsd.c:494 emn10300.c:311 ends32belf_linux.c:424
+#: ends32elf_linux.c:424 enios2linux.c:598 escore3_elf.c:331 escore7_elf.c:331
+#: eshelf.c:311 eshelf_fd.c:337 eshelf_linux.c:337 eshelf_nbsd.c:311
+#: eshelf_nto.c:311 eshelf_uclinux.c:311 eshelf_vxworks.c:348 eshlelf.c:311
+#: eshlelf_fd.c:337 eshlelf_linux.c:337 eshlelf_nbsd.c:311 eshlelf_nto.c:311
+#: eshlelf_vxworks.c:348
msgid "%F%P: invalid hash style `%s'\n"
msgstr ""
@@ -3801,76 +3914,78 @@ msgstr ""
#: eaarch64elf32.c:664 eaarch64elf32b.c:664 eaarch64elfb.c:664
#: eaarch64fbsd.c:665 eaarch64fbsdb.c:665 eaarch64haiku.c:665
#: eaarch64linux.c:665 eaarch64linux32.c:665 eaarch64linux32b.c:665
-#: eaarch64linuxb.c:665 earcelf.c:296 earclinux.c:352 earclinux_nps.c:352
-#: earcv2elf.c:229 earcv2elfx.c:229 earmelf.c:904 earmelf_fbsd.c:904
-#: earmelf_fuchsia.c:905 earmelf_haiku.c:905 earmelf_linux.c:905
-#: earmelf_linux_eabi.c:905 earmelf_linux_fdpiceabi.c:905 earmelf_nacl.c:905
-#: earmelf_nbsd.c:904 earmelf_phoenix.c:905 earmelf_vxworks.c:940
-#: earmelfb.c:904 earmelfb_fbsd.c:904 earmelfb_fuchsia.c:905
-#: earmelfb_linux.c:905 earmelfb_linux_eabi.c:905
+#: eaarch64linuxb.c:665 eaarch64nto.c:833 earcelf.c:298 earclinux.c:354
+#: earclinux_nps.c:354 earcv2elf.c:231 earcv2elfx.c:231 earmelf.c:904
+#: earmelf_fbsd.c:904 earmelf_fuchsia.c:905 earmelf_haiku.c:905
+#: earmelf_linux.c:905 earmelf_linux_eabi.c:905 earmelf_linux_fdpiceabi.c:905
+#: earmelf_nacl.c:905 earmelf_nbsd.c:904 earmelf_phoenix.c:905
+#: earmelf_vxworks.c:940 earmelfb.c:904 earmelfb_fbsd.c:904
+#: earmelfb_fuchsia.c:905 earmelfb_linux.c:905 earmelfb_linux_eabi.c:905
#: earmelfb_linux_fdpiceabi.c:905 earmelfb_nacl.c:905 earmelfb_nbsd.c:904
-#: earmnto.c:879 eavr1.c:453 eavr2.c:453 eavr25.c:453 eavr3.c:453 eavr31.c:453
-#: eavr35.c:453 eavr4.c:453 eavr5.c:453 eavr51.c:453 eavr6.c:453
-#: eavrtiny.c:453 eavrxmega1.c:453 eavrxmega2.c:453 eavrxmega3.c:453
-#: eavrxmega4.c:453 eavrxmega5.c:453 eavrxmega6.c:453 eavrxmega7.c:453
-#: ecriself.c:244 ecrislinux.c:327 ecskyelf.c:488 ecskyelf_linux.c:596
-#: ed10velf.c:229 eelf32_sparc.c:352 eelf32_sparc_sol2.c:484
-#: eelf32_sparc_vxworks.c:389 eelf32_spu.c:962 eelf32_tic6x_be.c:463
-#: eelf32_tic6x_elf_be.c:463 eelf32_tic6x_elf_le.c:463 eelf32_tic6x_le.c:463
-#: eelf32_tic6x_linux_be.c:463 eelf32_tic6x_linux_le.c:463
-#: eelf32_x86_64.c:5487 eelf32am33lin.c:326 eelf32b4300.c:567 eelf32bfin.c:344
-#: eelf32bfinfd.c:369 eelf32bmip.c:567 eelf32bmipn32.c:581 eelf32briscv.c:420
-#: eelf32briscv_ilp32.c:420 eelf32briscv_ilp32f.c:420 eelf32bsmip.c:581
-#: eelf32btsmip.c:567 eelf32btsmip_fbsd.c:567 eelf32btsmipn32.c:567
-#: eelf32btsmipn32_fbsd.c:567 eelf32cr16.c:379 eelf32crx.c:266
-#: eelf32ebmip.c:567 eelf32ebmipvxworks.c:602 eelf32elmip.c:567
-#: eelf32elmipvxworks.c:602 eelf32epiphany.c:244 eelf32epiphany_4x4.c:231
-#: eelf32frvfd.c:351 eelf32ip2k.c:244 eelf32l4300.c:567 eelf32lm32.c:244
-#: eelf32lm32fd.c:351 eelf32lmip.c:567 eelf32loongarch.c:402 eelf32lppc.c:615
-#: eelf32lppclinux.c:615 eelf32lppcnto.c:615 eelf32lppcsim.c:615
-#: eelf32lr5900.c:485 eelf32lr5900n32.c:484 eelf32lriscv.c:420
-#: eelf32lriscv_ilp32.c:420 eelf32lriscv_ilp32f.c:420 eelf32lsmip.c:567
-#: eelf32ltsmip.c:567 eelf32ltsmip_fbsd.c:567 eelf32ltsmipn32.c:567
-#: eelf32ltsmipn32_fbsd.c:567 eelf32m32c.c:255 eelf32mb_linux.c:352
-#: eelf32mbel_linux.c:352 eelf32mcore.c:250 eelf32mep.c:229 eelf32metag.c:601
-#: eelf32microblaze.c:229 eelf32microblazeel.c:229 eelf32mipswindiss.c:459
-#: eelf32moxie.c:244 eelf32or1k.c:245 eelf32or1k_linux.c:352 eelf32ppc.c:615
-#: eelf32ppc_fbsd.c:615 eelf32ppchaiku.c:615 eelf32ppclinux.c:615
-#: eelf32ppcnto.c:615 eelf32ppcsim.c:615 eelf32ppcvxworks.c:589
-#: eelf32ppcwindiss.c:615 eelf32rl78.c:244 eelf32rx.c:272 eelf32rx_linux.c:257
-#: eelf32tilegx.c:352 eelf32tilegx_be.c:352 eelf32tilepro.c:352
-#: eelf32vax.c:326 eelf32visium.c:229 eelf32xstormy16.c:240
-#: eelf32xtensa.c:2265 eelf32z80.c:256 eelf64_aix.c:326 eelf64_ia64.c:383
-#: eelf64_ia64_fbsd.c:383 eelf64_s390.c:422 eelf64_sparc.c:352
-#: eelf64_sparc_fbsd.c:352 eelf64_sparc_sol2.c:484 eelf64alpha.c:445
-#: eelf64alpha_fbsd.c:445 eelf64alpha_nbsd.c:445 eelf64bmip.c:581
-#: eelf64bpf.c:229 eelf64briscv.c:420 eelf64briscv_lp64.c:420
-#: eelf64briscv_lp64f.c:420 eelf64btsmip.c:567 eelf64btsmip_fbsd.c:567
-#: eelf64hppa.c:296 eelf64loongarch.c:402 eelf64lppc.c:1064
-#: eelf64lppc_fbsd.c:1064 eelf64lriscv.c:420 eelf64lriscv_lp64.c:420
-#: eelf64lriscv_lp64f.c:420 eelf64ltsmip.c:567 eelf64ltsmip_fbsd.c:567
-#: eelf64mmix.c:437 eelf64ppc.c:1064 eelf64ppc_fbsd.c:1064 eelf64rdos.c:377
-#: eelf64tilegx.c:352 eelf64tilegx_be.c:352 eelf_i386.c:5109
-#: eelf_i386_be.c:350 eelf_i386_fbsd.c:386 eelf_i386_haiku.c:386
-#: eelf_i386_ldso.c:361 eelf_i386_sol2.c:518 eelf_i386_vxworks.c:413
-#: eelf_iamcu.c:386 eelf_mipsel_haiku.c:567 eelf_s390.c:352 eelf_x86_64.c:5487
-#: eelf_x86_64_cloudabi.c:386 eelf_x86_64_fbsd.c:386 eelf_x86_64_haiku.c:386
-#: eelf_x86_64_sol2.c:518 eh8300elf.c:244 eh8300elf_linux.c:244
-#: eh8300helf.c:244 eh8300helf_linux.c:244 eh8300hnelf.c:244 eh8300self.c:244
-#: eh8300self_linux.c:244 eh8300snelf.c:244 eh8300sxelf.c:244
-#: eh8300sxelf_linux.c:244 eh8300sxnelf.c:244 ehppa64linux.c:326
-#: ehppaelf.c:512 ehppalinux.c:635 ehppanbsd.c:635 ehppaobsd.c:635
-#: ei386lynx.c:341 ei386moss.c:341 ei386nto.c:341 em32relf.c:244
-#: em32relf_linux.c:351 em32rlelf.c:244 em32rlelf_linux.c:351
-#: em68hc11elf.c:514 em68hc11elfb.c:514 em68hc12elf.c:514 em68hc12elfb.c:514
-#: em68kelf.c:509 em68kelfnbsd.c:509 emn10300.c:326 ends32belf.c:365
-#: ends32belf16m.c:365 ends32belf_linux.c:439 ends32elf.c:365
-#: ends32elf16m.c:365 ends32elf_linux.c:439 enios2elf.c:531 enios2linux.c:613
-#: epruelf.c:250 escore3_elf.c:348 escore7_elf.c:348 eshelf.c:326
-#: eshelf_fd.c:352 eshelf_linux.c:352 eshelf_nbsd.c:326 eshelf_nto.c:326
-#: eshelf_uclinux.c:326 eshelf_vxworks.c:363 eshlelf.c:326 eshlelf_fd.c:352
-#: eshlelf_linux.c:352 eshlelf_nbsd.c:326 eshlelf_nto.c:326
-#: eshlelf_vxworks.c:363 ev850.c:276 ev850_rh850.c:276
+#: earmnto.c:879 eavr1.c:455 eavr2.c:455 eavr25.c:455 eavr3.c:455 eavr31.c:455
+#: eavr35.c:455 eavr4.c:455 eavr5.c:455 eavr51.c:455 eavr6.c:455
+#: eavrtiny.c:455 eavrxmega1.c:455 eavrxmega2.c:455 eavrxmega3.c:455
+#: eavrxmega4.c:455 eavrxmega5.c:455 eavrxmega6.c:455 eavrxmega7.c:455
+#: ecriself.c:246 ecrislinux.c:329 ecskyelf.c:490 ecskyelf_linux.c:598
+#: ed10velf.c:231 eelf32_sparc.c:354 eelf32_sparc_sol2.c:486
+#: eelf32_sparc_vxworks.c:391 eelf32_spu.c:964 eelf32_tic6x_be.c:465
+#: eelf32_tic6x_elf_be.c:465 eelf32_tic6x_elf_le.c:465 eelf32_tic6x_le.c:465
+#: eelf32_tic6x_linux_be.c:465 eelf32_tic6x_linux_le.c:465
+#: eelf32_x86_64.c:5489 eelf32am33lin.c:328 eelf32b4300.c:569 eelf32bfin.c:346
+#: eelf32bfinfd.c:371 eelf32bmip.c:569 eelf32bmipn32.c:583 eelf32briscv.c:436
+#: eelf32briscv_ilp32.c:436 eelf32briscv_ilp32f.c:436 eelf32bsmip.c:583
+#: eelf32btsmip.c:569 eelf32btsmip_fbsd.c:569 eelf32btsmipn32.c:569
+#: eelf32btsmipn32_fbsd.c:569 eelf32cr16.c:381 eelf32crx.c:268
+#: eelf32ebmip.c:569 eelf32ebmipvxworks.c:604 eelf32elmip.c:569
+#: eelf32elmipvxworks.c:604 eelf32epiphany.c:246 eelf32epiphany_4x4.c:233
+#: eelf32frvfd.c:353 eelf32ip2k.c:246 eelf32kvx.c:594 eelf32l4300.c:569
+#: eelf32lm32.c:246 eelf32lm32fd.c:353 eelf32lmip.c:569 eelf32loongarch.c:407
+#: eelf32lppc.c:617 eelf32lppclinux.c:617 eelf32lppcnto.c:617
+#: eelf32lppcsim.c:617 eelf32lr5900.c:487 eelf32lr5900n32.c:486
+#: eelf32lriscv.c:436 eelf32lriscv_ilp32.c:436 eelf32lriscv_ilp32f.c:436
+#: eelf32lsmip.c:569 eelf32ltsmip.c:569 eelf32ltsmip_fbsd.c:569
+#: eelf32ltsmipn32.c:569 eelf32ltsmipn32_fbsd.c:569 eelf32m32c.c:257
+#: eelf32mb_linux.c:354 eelf32mbel_linux.c:354 eelf32mcore.c:252
+#: eelf32mep.c:231 eelf32metag.c:603 eelf32microblaze.c:231
+#: eelf32microblazeel.c:231 eelf32mipswindiss.c:461 eelf32moxie.c:246
+#: eelf32or1k.c:247 eelf32or1k_linux.c:354 eelf32ppc.c:617
+#: eelf32ppc_fbsd.c:617 eelf32ppchaiku.c:617 eelf32ppclinux.c:617
+#: eelf32ppcnto.c:617 eelf32ppcsim.c:617 eelf32ppcvxworks.c:591
+#: eelf32ppcwindiss.c:617 eelf32rl78.c:246 eelf32rx.c:274 eelf32rx_linux.c:259
+#: eelf32tilegx.c:354 eelf32tilegx_be.c:354 eelf32tilepro.c:354
+#: eelf32vax.c:328 eelf32visium.c:231 eelf32xstormy16.c:242
+#: eelf32xtensa.c:2265 eelf32z80.c:258 eelf64_aix.c:328 eelf64_ia64.c:385
+#: eelf64_ia64_fbsd.c:385 eelf64_s390.c:424 eelf64_sparc.c:354
+#: eelf64_sparc_fbsd.c:354 eelf64_sparc_sol2.c:486 eelf64alpha.c:447
+#: eelf64alpha_fbsd.c:447 eelf64alpha_nbsd.c:447 eelf64bmip.c:583
+#: eelf64bpf.c:231 eelf64briscv.c:436 eelf64briscv_lp64.c:436
+#: eelf64briscv_lp64f.c:436 eelf64btsmip.c:569 eelf64btsmip_fbsd.c:569
+#: eelf64hppa.c:298 eelf64kvx.c:594 eelf64kvx_linux.c:616
+#: eelf64loongarch.c:407 eelf64lppc.c:1066 eelf64lppc_fbsd.c:1066
+#: eelf64lriscv.c:436 eelf64lriscv_lp64.c:436 eelf64lriscv_lp64f.c:436
+#: eelf64ltsmip.c:569 eelf64ltsmip_fbsd.c:569 eelf64mmix.c:439
+#: eelf64ppc.c:1066 eelf64ppc_fbsd.c:1066 eelf64rdos.c:379 eelf64tilegx.c:354
+#: eelf64tilegx_be.c:354 eelf_i386.c:5111 eelf_i386_be.c:352
+#: eelf_i386_fbsd.c:388 eelf_i386_haiku.c:388 eelf_i386_ldso.c:363
+#: eelf_i386_sol2.c:520 eelf_i386_vxworks.c:415 eelf_iamcu.c:388
+#: eelf_mipsel_haiku.c:569 eelf_s390.c:354 eelf_x86_64.c:5489
+#: eelf_x86_64_cloudabi.c:388 eelf_x86_64_fbsd.c:388 eelf_x86_64_haiku.c:388
+#: eelf_x86_64_sol2.c:520 eh8300elf.c:246 eh8300elf_linux.c:246
+#: eh8300helf.c:246 eh8300helf_linux.c:246 eh8300hnelf.c:246 eh8300self.c:246
+#: eh8300self_linux.c:246 eh8300snelf.c:246 eh8300sxelf.c:246
+#: eh8300sxelf_linux.c:246 eh8300sxnelf.c:246 ehppa64linux.c:328
+#: ehppaelf.c:514 ehppalinux.c:637 ehppanbsd.c:637 ehppaobsd.c:637
+#: ei386lynx.c:343 ei386moss.c:343 ei386nto.c:343 em32relf.c:246
+#: em32relf_linux.c:353 em32rlelf.c:246 em32rlelf_linux.c:353
+#: em68hc11elf.c:516 em68hc11elfb.c:516 em68hc12elf.c:516 em68hc12elfb.c:516
+#: em68kelf.c:511 em68kelfnbsd.c:511 emn10300.c:328 ends32belf.c:367
+#: ends32belf16m.c:367 ends32belf_linux.c:441 ends32elf.c:367
+#: ends32elf16m.c:367 ends32elf_linux.c:441 enios2elf.c:533 enios2linux.c:615
+#: epruelf.c:252 escore3_elf.c:348 escore7_elf.c:348 eshelf.c:328
+#: eshelf_fd.c:354 eshelf_linux.c:354 eshelf_nbsd.c:328 eshelf_nto.c:328
+#: eshelf_uclinux.c:328 eshelf_vxworks.c:365 eshlelf.c:328 eshlelf_fd.c:354
+#: eshlelf_linux.c:354 eshlelf_nbsd.c:328 eshlelf_nto.c:328
+#: eshlelf_vxworks.c:365 ev850.c:278 ev850_rh850.c:278
msgid "%F%P: invalid maximum page size `%s'\n"
msgstr ""
@@ -3878,76 +3993,78 @@ msgstr ""
#: eaarch64elf32.c:674 eaarch64elf32b.c:674 eaarch64elfb.c:674
#: eaarch64fbsd.c:675 eaarch64fbsdb.c:675 eaarch64haiku.c:675
#: eaarch64linux.c:675 eaarch64linux32.c:675 eaarch64linux32b.c:675
-#: eaarch64linuxb.c:675 earcelf.c:306 earclinux.c:362 earclinux_nps.c:362
-#: earcv2elf.c:239 earcv2elfx.c:239 earmelf.c:914 earmelf_fbsd.c:914
-#: earmelf_fuchsia.c:915 earmelf_haiku.c:915 earmelf_linux.c:915
-#: earmelf_linux_eabi.c:915 earmelf_linux_fdpiceabi.c:915 earmelf_nacl.c:915
-#: earmelf_nbsd.c:914 earmelf_phoenix.c:915 earmelf_vxworks.c:950
-#: earmelfb.c:914 earmelfb_fbsd.c:914 earmelfb_fuchsia.c:915
-#: earmelfb_linux.c:915 earmelfb_linux_eabi.c:915
+#: eaarch64linuxb.c:675 eaarch64nto.c:843 earcelf.c:308 earclinux.c:364
+#: earclinux_nps.c:364 earcv2elf.c:241 earcv2elfx.c:241 earmelf.c:914
+#: earmelf_fbsd.c:914 earmelf_fuchsia.c:915 earmelf_haiku.c:915
+#: earmelf_linux.c:915 earmelf_linux_eabi.c:915 earmelf_linux_fdpiceabi.c:915
+#: earmelf_nacl.c:915 earmelf_nbsd.c:914 earmelf_phoenix.c:915
+#: earmelf_vxworks.c:950 earmelfb.c:914 earmelfb_fbsd.c:914
+#: earmelfb_fuchsia.c:915 earmelfb_linux.c:915 earmelfb_linux_eabi.c:915
#: earmelfb_linux_fdpiceabi.c:915 earmelfb_nacl.c:915 earmelfb_nbsd.c:914
-#: earmnto.c:889 eavr1.c:463 eavr2.c:463 eavr25.c:463 eavr3.c:463 eavr31.c:463
-#: eavr35.c:463 eavr4.c:463 eavr5.c:463 eavr51.c:463 eavr6.c:463
-#: eavrtiny.c:463 eavrxmega1.c:463 eavrxmega2.c:463 eavrxmega3.c:463
-#: eavrxmega4.c:463 eavrxmega5.c:463 eavrxmega6.c:463 eavrxmega7.c:463
-#: ecriself.c:254 ecrislinux.c:337 ecskyelf.c:498 ecskyelf_linux.c:606
-#: ed10velf.c:239 eelf32_sparc.c:362 eelf32_sparc_sol2.c:494
-#: eelf32_sparc_vxworks.c:399 eelf32_spu.c:972 eelf32_tic6x_be.c:473
-#: eelf32_tic6x_elf_be.c:473 eelf32_tic6x_elf_le.c:473 eelf32_tic6x_le.c:473
-#: eelf32_tic6x_linux_be.c:473 eelf32_tic6x_linux_le.c:473
-#: eelf32_x86_64.c:5497 eelf32am33lin.c:336 eelf32b4300.c:577 eelf32bfin.c:354
-#: eelf32bfinfd.c:379 eelf32bmip.c:577 eelf32bmipn32.c:591 eelf32briscv.c:430
-#: eelf32briscv_ilp32.c:430 eelf32briscv_ilp32f.c:430 eelf32bsmip.c:591
-#: eelf32btsmip.c:577 eelf32btsmip_fbsd.c:577 eelf32btsmipn32.c:577
-#: eelf32btsmipn32_fbsd.c:577 eelf32cr16.c:389 eelf32crx.c:276
-#: eelf32ebmip.c:577 eelf32ebmipvxworks.c:612 eelf32elmip.c:577
-#: eelf32elmipvxworks.c:612 eelf32epiphany.c:254 eelf32epiphany_4x4.c:241
-#: eelf32frvfd.c:361 eelf32ip2k.c:254 eelf32l4300.c:577 eelf32lm32.c:254
-#: eelf32lm32fd.c:361 eelf32lmip.c:577 eelf32loongarch.c:412 eelf32lppc.c:625
-#: eelf32lppclinux.c:625 eelf32lppcnto.c:625 eelf32lppcsim.c:625
-#: eelf32lr5900.c:495 eelf32lr5900n32.c:494 eelf32lriscv.c:430
-#: eelf32lriscv_ilp32.c:430 eelf32lriscv_ilp32f.c:430 eelf32lsmip.c:577
-#: eelf32ltsmip.c:577 eelf32ltsmip_fbsd.c:577 eelf32ltsmipn32.c:577
-#: eelf32ltsmipn32_fbsd.c:577 eelf32m32c.c:265 eelf32mb_linux.c:362
-#: eelf32mbel_linux.c:362 eelf32mcore.c:260 eelf32mep.c:239 eelf32metag.c:611
-#: eelf32microblaze.c:239 eelf32microblazeel.c:239 eelf32mipswindiss.c:469
-#: eelf32moxie.c:254 eelf32or1k.c:255 eelf32or1k_linux.c:362 eelf32ppc.c:625
-#: eelf32ppc_fbsd.c:625 eelf32ppchaiku.c:625 eelf32ppclinux.c:625
-#: eelf32ppcnto.c:625 eelf32ppcsim.c:625 eelf32ppcvxworks.c:599
-#: eelf32ppcwindiss.c:625 eelf32rl78.c:254 eelf32rx.c:282 eelf32rx_linux.c:267
-#: eelf32tilegx.c:362 eelf32tilegx_be.c:362 eelf32tilepro.c:362
-#: eelf32vax.c:336 eelf32visium.c:239 eelf32xstormy16.c:250
-#: eelf32xtensa.c:2275 eelf32z80.c:266 eelf64_aix.c:336 eelf64_ia64.c:393
-#: eelf64_ia64_fbsd.c:393 eelf64_s390.c:432 eelf64_sparc.c:362
-#: eelf64_sparc_fbsd.c:362 eelf64_sparc_sol2.c:494 eelf64alpha.c:455
-#: eelf64alpha_fbsd.c:455 eelf64alpha_nbsd.c:455 eelf64bmip.c:591
-#: eelf64bpf.c:239 eelf64briscv.c:430 eelf64briscv_lp64.c:430
-#: eelf64briscv_lp64f.c:430 eelf64btsmip.c:577 eelf64btsmip_fbsd.c:577
-#: eelf64hppa.c:306 eelf64loongarch.c:412 eelf64lppc.c:1074
-#: eelf64lppc_fbsd.c:1074 eelf64lriscv.c:430 eelf64lriscv_lp64.c:430
-#: eelf64lriscv_lp64f.c:430 eelf64ltsmip.c:577 eelf64ltsmip_fbsd.c:577
-#: eelf64mmix.c:447 eelf64ppc.c:1074 eelf64ppc_fbsd.c:1074 eelf64rdos.c:387
-#: eelf64tilegx.c:362 eelf64tilegx_be.c:362 eelf_i386.c:5119
-#: eelf_i386_be.c:360 eelf_i386_fbsd.c:396 eelf_i386_haiku.c:396
-#: eelf_i386_ldso.c:371 eelf_i386_sol2.c:528 eelf_i386_vxworks.c:423
-#: eelf_iamcu.c:396 eelf_mipsel_haiku.c:577 eelf_s390.c:362 eelf_x86_64.c:5497
-#: eelf_x86_64_cloudabi.c:396 eelf_x86_64_fbsd.c:396 eelf_x86_64_haiku.c:396
-#: eelf_x86_64_sol2.c:528 eh8300elf.c:254 eh8300elf_linux.c:254
-#: eh8300helf.c:254 eh8300helf_linux.c:254 eh8300hnelf.c:254 eh8300self.c:254
-#: eh8300self_linux.c:254 eh8300snelf.c:254 eh8300sxelf.c:254
-#: eh8300sxelf_linux.c:254 eh8300sxnelf.c:254 ehppa64linux.c:336
-#: ehppaelf.c:522 ehppalinux.c:645 ehppanbsd.c:645 ehppaobsd.c:645
-#: ei386lynx.c:351 ei386moss.c:351 ei386nto.c:351 em32relf.c:254
-#: em32relf_linux.c:361 em32rlelf.c:254 em32rlelf_linux.c:361
-#: em68hc11elf.c:524 em68hc11elfb.c:524 em68hc12elf.c:524 em68hc12elfb.c:524
-#: em68kelf.c:519 em68kelfnbsd.c:519 emn10300.c:336 ends32belf.c:375
-#: ends32belf16m.c:375 ends32belf_linux.c:449 ends32elf.c:375
-#: ends32elf16m.c:375 ends32elf_linux.c:449 enios2elf.c:541 enios2linux.c:623
-#: epruelf.c:260 escore3_elf.c:358 escore7_elf.c:358 eshelf.c:336
-#: eshelf_fd.c:362 eshelf_linux.c:362 eshelf_nbsd.c:336 eshelf_nto.c:336
-#: eshelf_uclinux.c:336 eshelf_vxworks.c:373 eshlelf.c:336 eshlelf_fd.c:362
-#: eshlelf_linux.c:362 eshlelf_nbsd.c:336 eshlelf_nto.c:336
-#: eshlelf_vxworks.c:373 ev850.c:286 ev850_rh850.c:286
+#: earmnto.c:889 eavr1.c:465 eavr2.c:465 eavr25.c:465 eavr3.c:465 eavr31.c:465
+#: eavr35.c:465 eavr4.c:465 eavr5.c:465 eavr51.c:465 eavr6.c:465
+#: eavrtiny.c:465 eavrxmega1.c:465 eavrxmega2.c:465 eavrxmega3.c:465
+#: eavrxmega4.c:465 eavrxmega5.c:465 eavrxmega6.c:465 eavrxmega7.c:465
+#: ecriself.c:256 ecrislinux.c:339 ecskyelf.c:500 ecskyelf_linux.c:608
+#: ed10velf.c:241 eelf32_sparc.c:364 eelf32_sparc_sol2.c:496
+#: eelf32_sparc_vxworks.c:401 eelf32_spu.c:974 eelf32_tic6x_be.c:475
+#: eelf32_tic6x_elf_be.c:475 eelf32_tic6x_elf_le.c:475 eelf32_tic6x_le.c:475
+#: eelf32_tic6x_linux_be.c:475 eelf32_tic6x_linux_le.c:475
+#: eelf32_x86_64.c:5499 eelf32am33lin.c:338 eelf32b4300.c:579 eelf32bfin.c:356
+#: eelf32bfinfd.c:381 eelf32bmip.c:579 eelf32bmipn32.c:593 eelf32briscv.c:446
+#: eelf32briscv_ilp32.c:446 eelf32briscv_ilp32f.c:446 eelf32bsmip.c:593
+#: eelf32btsmip.c:579 eelf32btsmip_fbsd.c:579 eelf32btsmipn32.c:579
+#: eelf32btsmipn32_fbsd.c:579 eelf32cr16.c:391 eelf32crx.c:278
+#: eelf32ebmip.c:579 eelf32ebmipvxworks.c:614 eelf32elmip.c:579
+#: eelf32elmipvxworks.c:614 eelf32epiphany.c:256 eelf32epiphany_4x4.c:243
+#: eelf32frvfd.c:363 eelf32ip2k.c:256 eelf32kvx.c:604 eelf32l4300.c:579
+#: eelf32lm32.c:256 eelf32lm32fd.c:363 eelf32lmip.c:579 eelf32loongarch.c:417
+#: eelf32lppc.c:627 eelf32lppclinux.c:627 eelf32lppcnto.c:627
+#: eelf32lppcsim.c:627 eelf32lr5900.c:497 eelf32lr5900n32.c:496
+#: eelf32lriscv.c:446 eelf32lriscv_ilp32.c:446 eelf32lriscv_ilp32f.c:446
+#: eelf32lsmip.c:579 eelf32ltsmip.c:579 eelf32ltsmip_fbsd.c:579
+#: eelf32ltsmipn32.c:579 eelf32ltsmipn32_fbsd.c:579 eelf32m32c.c:267
+#: eelf32mb_linux.c:364 eelf32mbel_linux.c:364 eelf32mcore.c:262
+#: eelf32mep.c:241 eelf32metag.c:613 eelf32microblaze.c:241
+#: eelf32microblazeel.c:241 eelf32mipswindiss.c:471 eelf32moxie.c:256
+#: eelf32or1k.c:257 eelf32or1k_linux.c:364 eelf32ppc.c:627
+#: eelf32ppc_fbsd.c:627 eelf32ppchaiku.c:627 eelf32ppclinux.c:627
+#: eelf32ppcnto.c:627 eelf32ppcsim.c:627 eelf32ppcvxworks.c:601
+#: eelf32ppcwindiss.c:627 eelf32rl78.c:256 eelf32rx.c:284 eelf32rx_linux.c:269
+#: eelf32tilegx.c:364 eelf32tilegx_be.c:364 eelf32tilepro.c:364
+#: eelf32vax.c:338 eelf32visium.c:241 eelf32xstormy16.c:252
+#: eelf32xtensa.c:2275 eelf32z80.c:268 eelf64_aix.c:338 eelf64_ia64.c:395
+#: eelf64_ia64_fbsd.c:395 eelf64_s390.c:434 eelf64_sparc.c:364
+#: eelf64_sparc_fbsd.c:364 eelf64_sparc_sol2.c:496 eelf64alpha.c:457
+#: eelf64alpha_fbsd.c:457 eelf64alpha_nbsd.c:457 eelf64bmip.c:593
+#: eelf64bpf.c:241 eelf64briscv.c:446 eelf64briscv_lp64.c:446
+#: eelf64briscv_lp64f.c:446 eelf64btsmip.c:579 eelf64btsmip_fbsd.c:579
+#: eelf64hppa.c:308 eelf64kvx.c:604 eelf64kvx_linux.c:626
+#: eelf64loongarch.c:417 eelf64lppc.c:1076 eelf64lppc_fbsd.c:1076
+#: eelf64lriscv.c:446 eelf64lriscv_lp64.c:446 eelf64lriscv_lp64f.c:446
+#: eelf64ltsmip.c:579 eelf64ltsmip_fbsd.c:579 eelf64mmix.c:449
+#: eelf64ppc.c:1076 eelf64ppc_fbsd.c:1076 eelf64rdos.c:389 eelf64tilegx.c:364
+#: eelf64tilegx_be.c:364 eelf_i386.c:5121 eelf_i386_be.c:362
+#: eelf_i386_fbsd.c:398 eelf_i386_haiku.c:398 eelf_i386_ldso.c:373
+#: eelf_i386_sol2.c:530 eelf_i386_vxworks.c:425 eelf_iamcu.c:398
+#: eelf_mipsel_haiku.c:579 eelf_s390.c:364 eelf_x86_64.c:5499
+#: eelf_x86_64_cloudabi.c:398 eelf_x86_64_fbsd.c:398 eelf_x86_64_haiku.c:398
+#: eelf_x86_64_sol2.c:530 eh8300elf.c:256 eh8300elf_linux.c:256
+#: eh8300helf.c:256 eh8300helf_linux.c:256 eh8300hnelf.c:256 eh8300self.c:256
+#: eh8300self_linux.c:256 eh8300snelf.c:256 eh8300sxelf.c:256
+#: eh8300sxelf_linux.c:256 eh8300sxnelf.c:256 ehppa64linux.c:338
+#: ehppaelf.c:524 ehppalinux.c:647 ehppanbsd.c:647 ehppaobsd.c:647
+#: ei386lynx.c:353 ei386moss.c:353 ei386nto.c:353 em32relf.c:256
+#: em32relf_linux.c:363 em32rlelf.c:256 em32rlelf_linux.c:363
+#: em68hc11elf.c:526 em68hc11elfb.c:526 em68hc12elf.c:526 em68hc12elfb.c:526
+#: em68kelf.c:521 em68kelfnbsd.c:521 emn10300.c:338 ends32belf.c:377
+#: ends32belf16m.c:377 ends32belf_linux.c:451 ends32elf.c:377
+#: ends32elf16m.c:377 ends32elf_linux.c:451 enios2elf.c:543 enios2linux.c:625
+#: epruelf.c:262 escore3_elf.c:358 escore7_elf.c:358 eshelf.c:338
+#: eshelf_fd.c:364 eshelf_linux.c:364 eshelf_nbsd.c:338 eshelf_nto.c:338
+#: eshelf_uclinux.c:338 eshelf_vxworks.c:375 eshlelf.c:338 eshlelf_fd.c:364
+#: eshlelf_linux.c:364 eshlelf_nbsd.c:338 eshlelf_nto.c:338
+#: eshlelf_vxworks.c:375 ev850.c:288 ev850_rh850.c:288
msgid "%F%P: invalid common page size `%s'\n"
msgstr ""
@@ -3955,76 +4072,78 @@ msgstr ""
#: eaarch64elf32.c:683 eaarch64elf32b.c:683 eaarch64elfb.c:683
#: eaarch64fbsd.c:684 eaarch64fbsdb.c:684 eaarch64haiku.c:684
#: eaarch64linux.c:684 eaarch64linux32.c:684 eaarch64linux32b.c:684
-#: eaarch64linuxb.c:684 earcelf.c:315 earclinux.c:371 earclinux_nps.c:371
-#: earcv2elf.c:248 earcv2elfx.c:248 earmelf.c:923 earmelf_fbsd.c:923
-#: earmelf_fuchsia.c:924 earmelf_haiku.c:924 earmelf_linux.c:924
-#: earmelf_linux_eabi.c:924 earmelf_linux_fdpiceabi.c:924 earmelf_nacl.c:924
-#: earmelf_nbsd.c:923 earmelf_phoenix.c:924 earmelf_vxworks.c:959
-#: earmelfb.c:923 earmelfb_fbsd.c:923 earmelfb_fuchsia.c:924
-#: earmelfb_linux.c:924 earmelfb_linux_eabi.c:924
+#: eaarch64linuxb.c:684 eaarch64nto.c:852 eaarch64nto.c:1026 earcelf.c:317
+#: earclinux.c:373 earclinux_nps.c:373 earcv2elf.c:250 earcv2elfx.c:250
+#: earmelf.c:923 earmelf_fbsd.c:923 earmelf_fuchsia.c:924 earmelf_haiku.c:924
+#: earmelf_linux.c:924 earmelf_linux_eabi.c:924 earmelf_linux_fdpiceabi.c:924
+#: earmelf_nacl.c:924 earmelf_nbsd.c:923 earmelf_phoenix.c:924
+#: earmelf_vxworks.c:959 earmelfb.c:923 earmelfb_fbsd.c:923
+#: earmelfb_fuchsia.c:924 earmelfb_linux.c:924 earmelfb_linux_eabi.c:924
#: earmelfb_linux_fdpiceabi.c:924 earmelfb_nacl.c:924 earmelfb_nbsd.c:923
-#: earmnto.c:898 eavr1.c:472 eavr2.c:472 eavr25.c:472 eavr3.c:472 eavr31.c:472
-#: eavr35.c:472 eavr4.c:472 eavr5.c:472 eavr51.c:472 eavr6.c:472
-#: eavrtiny.c:472 eavrxmega1.c:472 eavrxmega2.c:472 eavrxmega3.c:472
-#: eavrxmega4.c:472 eavrxmega5.c:472 eavrxmega6.c:472 eavrxmega7.c:472
-#: ecriself.c:263 ecrislinux.c:346 ecskyelf.c:507 ecskyelf_linux.c:615
-#: ed10velf.c:248 eelf32_sparc.c:371 eelf32_sparc_sol2.c:503
-#: eelf32_sparc_vxworks.c:408 eelf32_spu.c:981 eelf32_tic6x_be.c:482
-#: eelf32_tic6x_elf_be.c:482 eelf32_tic6x_elf_le.c:482 eelf32_tic6x_le.c:482
-#: eelf32_tic6x_linux_be.c:482 eelf32_tic6x_linux_le.c:482
-#: eelf32_x86_64.c:5506 eelf32am33lin.c:345 eelf32b4300.c:586 eelf32bfin.c:363
-#: eelf32bfinfd.c:388 eelf32bmip.c:586 eelf32bmipn32.c:600 eelf32briscv.c:439
-#: eelf32briscv_ilp32.c:439 eelf32briscv_ilp32f.c:439 eelf32bsmip.c:600
-#: eelf32btsmip.c:586 eelf32btsmip_fbsd.c:586 eelf32btsmipn32.c:586
-#: eelf32btsmipn32_fbsd.c:586 eelf32cr16.c:398 eelf32crx.c:285
-#: eelf32ebmip.c:586 eelf32ebmipvxworks.c:621 eelf32elmip.c:586
-#: eelf32elmipvxworks.c:621 eelf32epiphany.c:263 eelf32epiphany_4x4.c:250
-#: eelf32frvfd.c:370 eelf32ip2k.c:263 eelf32l4300.c:586 eelf32lm32.c:263
-#: eelf32lm32fd.c:370 eelf32lmip.c:586 eelf32loongarch.c:421 eelf32lppc.c:634
-#: eelf32lppclinux.c:634 eelf32lppcnto.c:634 eelf32lppcsim.c:634
-#: eelf32lr5900.c:504 eelf32lr5900n32.c:503 eelf32lriscv.c:439
-#: eelf32lriscv_ilp32.c:439 eelf32lriscv_ilp32f.c:439 eelf32lsmip.c:586
-#: eelf32ltsmip.c:586 eelf32ltsmip_fbsd.c:586 eelf32ltsmipn32.c:586
-#: eelf32ltsmipn32_fbsd.c:586 eelf32m32c.c:274 eelf32mb_linux.c:371
-#: eelf32mbel_linux.c:371 eelf32mcore.c:269 eelf32mep.c:248 eelf32metag.c:620
-#: eelf32microblaze.c:248 eelf32microblazeel.c:248 eelf32mipswindiss.c:478
-#: eelf32moxie.c:263 eelf32or1k.c:264 eelf32or1k_linux.c:371 eelf32ppc.c:634
-#: eelf32ppc_fbsd.c:634 eelf32ppchaiku.c:634 eelf32ppclinux.c:634
-#: eelf32ppcnto.c:634 eelf32ppcsim.c:634 eelf32ppcvxworks.c:608
-#: eelf32ppcwindiss.c:634 eelf32rl78.c:263 eelf32rx.c:291 eelf32rx_linux.c:276
-#: eelf32tilegx.c:371 eelf32tilegx_be.c:371 eelf32tilepro.c:371
-#: eelf32vax.c:345 eelf32visium.c:248 eelf32xstormy16.c:259
-#: eelf32xtensa.c:2284 eelf32z80.c:275 eelf64_aix.c:345 eelf64_ia64.c:402
-#: eelf64_ia64_fbsd.c:402 eelf64_s390.c:441 eelf64_sparc.c:371
-#: eelf64_sparc_fbsd.c:371 eelf64_sparc_sol2.c:503 eelf64alpha.c:464
-#: eelf64alpha_fbsd.c:464 eelf64alpha_nbsd.c:464 eelf64bmip.c:600
-#: eelf64bpf.c:248 eelf64briscv.c:439 eelf64briscv_lp64.c:439
-#: eelf64briscv_lp64f.c:439 eelf64btsmip.c:586 eelf64btsmip_fbsd.c:586
-#: eelf64hppa.c:315 eelf64loongarch.c:421 eelf64lppc.c:1083
-#: eelf64lppc_fbsd.c:1083 eelf64lriscv.c:439 eelf64lriscv_lp64.c:439
-#: eelf64lriscv_lp64f.c:439 eelf64ltsmip.c:586 eelf64ltsmip_fbsd.c:586
-#: eelf64mmix.c:456 eelf64ppc.c:1083 eelf64ppc_fbsd.c:1083 eelf64rdos.c:396
-#: eelf64tilegx.c:371 eelf64tilegx_be.c:371 eelf_i386.c:5128
-#: eelf_i386_be.c:369 eelf_i386_fbsd.c:405 eelf_i386_haiku.c:405
-#: eelf_i386_ldso.c:380 eelf_i386_sol2.c:537 eelf_i386_vxworks.c:432
-#: eelf_iamcu.c:405 eelf_mipsel_haiku.c:586 eelf_s390.c:371 eelf_x86_64.c:5506
-#: eelf_x86_64_cloudabi.c:405 eelf_x86_64_fbsd.c:405 eelf_x86_64_haiku.c:405
-#: eelf_x86_64_sol2.c:537 eh8300elf.c:263 eh8300elf_linux.c:263
-#: eh8300helf.c:263 eh8300helf_linux.c:263 eh8300hnelf.c:263 eh8300self.c:263
-#: eh8300self_linux.c:263 eh8300snelf.c:263 eh8300sxelf.c:263
-#: eh8300sxelf_linux.c:263 eh8300sxnelf.c:263 ehppa64linux.c:345
-#: ehppaelf.c:531 ehppalinux.c:654 ehppanbsd.c:654 ehppaobsd.c:654
-#: ei386lynx.c:360 ei386moss.c:360 ei386nto.c:360 em32relf.c:263
-#: em32relf_linux.c:370 em32rlelf.c:263 em32rlelf_linux.c:370
-#: em68hc11elf.c:533 em68hc11elfb.c:533 em68hc12elf.c:533 em68hc12elfb.c:533
-#: em68kelf.c:528 em68kelfnbsd.c:528 emn10300.c:345 ends32belf.c:384
-#: ends32belf16m.c:384 ends32belf_linux.c:458 ends32elf.c:384
-#: ends32elf16m.c:384 ends32elf_linux.c:458 enios2elf.c:550 enios2linux.c:632
-#: epruelf.c:269 escore3_elf.c:367 escore7_elf.c:367 eshelf.c:345
-#: eshelf_fd.c:371 eshelf_linux.c:371 eshelf_nbsd.c:345 eshelf_nto.c:345
-#: eshelf_uclinux.c:345 eshelf_vxworks.c:382 eshlelf.c:345 eshlelf_fd.c:371
-#: eshlelf_linux.c:371 eshlelf_nbsd.c:345 eshlelf_nto.c:345
-#: eshlelf_vxworks.c:382 ev850.c:295 ev850_rh850.c:295
+#: earmnto.c:898 eavr1.c:474 eavr2.c:474 eavr25.c:474 eavr3.c:474 eavr31.c:474
+#: eavr35.c:474 eavr4.c:474 eavr5.c:474 eavr51.c:474 eavr6.c:474
+#: eavrtiny.c:474 eavrxmega1.c:474 eavrxmega2.c:474 eavrxmega3.c:474
+#: eavrxmega4.c:474 eavrxmega5.c:474 eavrxmega6.c:474 eavrxmega7.c:474
+#: ecriself.c:265 ecrislinux.c:348 ecskyelf.c:509 ecskyelf_linux.c:617
+#: ed10velf.c:250 eelf32_sparc.c:373 eelf32_sparc_sol2.c:505
+#: eelf32_sparc_vxworks.c:410 eelf32_spu.c:983 eelf32_tic6x_be.c:484
+#: eelf32_tic6x_elf_be.c:484 eelf32_tic6x_elf_le.c:484 eelf32_tic6x_le.c:484
+#: eelf32_tic6x_linux_be.c:484 eelf32_tic6x_linux_le.c:484
+#: eelf32_x86_64.c:5508 eelf32am33lin.c:347 eelf32b4300.c:588 eelf32bfin.c:365
+#: eelf32bfinfd.c:390 eelf32bmip.c:588 eelf32bmipn32.c:602 eelf32briscv.c:455
+#: eelf32briscv_ilp32.c:455 eelf32briscv_ilp32f.c:455 eelf32bsmip.c:602
+#: eelf32btsmip.c:588 eelf32btsmip_fbsd.c:588 eelf32btsmipn32.c:588
+#: eelf32btsmipn32_fbsd.c:588 eelf32cr16.c:400 eelf32crx.c:287
+#: eelf32ebmip.c:588 eelf32ebmipvxworks.c:623 eelf32elmip.c:588
+#: eelf32elmipvxworks.c:623 eelf32epiphany.c:265 eelf32epiphany_4x4.c:252
+#: eelf32frvfd.c:372 eelf32ip2k.c:265 eelf32kvx.c:613 eelf32l4300.c:588
+#: eelf32lm32.c:265 eelf32lm32fd.c:372 eelf32lmip.c:588 eelf32loongarch.c:426
+#: eelf32lppc.c:636 eelf32lppclinux.c:636 eelf32lppcnto.c:636
+#: eelf32lppcsim.c:636 eelf32lr5900.c:506 eelf32lr5900n32.c:505
+#: eelf32lriscv.c:455 eelf32lriscv_ilp32.c:455 eelf32lriscv_ilp32f.c:455
+#: eelf32lsmip.c:588 eelf32ltsmip.c:588 eelf32ltsmip_fbsd.c:588
+#: eelf32ltsmipn32.c:588 eelf32ltsmipn32_fbsd.c:588 eelf32m32c.c:276
+#: eelf32mb_linux.c:373 eelf32mbel_linux.c:373 eelf32mcore.c:271
+#: eelf32mep.c:250 eelf32metag.c:622 eelf32microblaze.c:250
+#: eelf32microblazeel.c:250 eelf32mipswindiss.c:480 eelf32moxie.c:265
+#: eelf32or1k.c:266 eelf32or1k_linux.c:373 eelf32ppc.c:636
+#: eelf32ppc_fbsd.c:636 eelf32ppchaiku.c:636 eelf32ppclinux.c:636
+#: eelf32ppcnto.c:636 eelf32ppcsim.c:636 eelf32ppcvxworks.c:610
+#: eelf32ppcwindiss.c:636 eelf32rl78.c:265 eelf32rx.c:293 eelf32rx_linux.c:278
+#: eelf32tilegx.c:373 eelf32tilegx_be.c:373 eelf32tilepro.c:373
+#: eelf32vax.c:347 eelf32visium.c:250 eelf32xstormy16.c:261
+#: eelf32xtensa.c:2284 eelf32z80.c:277 eelf64_aix.c:347 eelf64_ia64.c:404
+#: eelf64_ia64_fbsd.c:404 eelf64_s390.c:443 eelf64_sparc.c:373
+#: eelf64_sparc_fbsd.c:373 eelf64_sparc_sol2.c:505 eelf64alpha.c:466
+#: eelf64alpha_fbsd.c:466 eelf64alpha_nbsd.c:466 eelf64bmip.c:602
+#: eelf64bpf.c:250 eelf64briscv.c:455 eelf64briscv_lp64.c:455
+#: eelf64briscv_lp64f.c:455 eelf64btsmip.c:588 eelf64btsmip_fbsd.c:588
+#: eelf64hppa.c:317 eelf64kvx.c:613 eelf64kvx_linux.c:635
+#: eelf64loongarch.c:426 eelf64lppc.c:1085 eelf64lppc_fbsd.c:1085
+#: eelf64lriscv.c:455 eelf64lriscv_lp64.c:455 eelf64lriscv_lp64f.c:455
+#: eelf64ltsmip.c:588 eelf64ltsmip_fbsd.c:588 eelf64mmix.c:458
+#: eelf64ppc.c:1085 eelf64ppc_fbsd.c:1085 eelf64rdos.c:398 eelf64tilegx.c:373
+#: eelf64tilegx_be.c:373 eelf_i386.c:5130 eelf_i386_be.c:371
+#: eelf_i386_fbsd.c:407 eelf_i386_haiku.c:407 eelf_i386_ldso.c:382
+#: eelf_i386_sol2.c:539 eelf_i386_vxworks.c:434 eelf_iamcu.c:407
+#: eelf_mipsel_haiku.c:588 eelf_s390.c:373 eelf_x86_64.c:5508
+#: eelf_x86_64_cloudabi.c:407 eelf_x86_64_fbsd.c:407 eelf_x86_64_haiku.c:407
+#: eelf_x86_64_sol2.c:539 eh8300elf.c:265 eh8300elf_linux.c:265
+#: eh8300helf.c:265 eh8300helf_linux.c:265 eh8300hnelf.c:265 eh8300self.c:265
+#: eh8300self_linux.c:265 eh8300snelf.c:265 eh8300sxelf.c:265
+#: eh8300sxelf_linux.c:265 eh8300sxnelf.c:265 ehppa64linux.c:347
+#: ehppaelf.c:533 ehppalinux.c:656 ehppanbsd.c:656 ehppaobsd.c:656
+#: ei386lynx.c:362 ei386moss.c:362 ei386nto.c:362 em32relf.c:265
+#: em32relf_linux.c:372 em32rlelf.c:265 em32rlelf_linux.c:372
+#: em68hc11elf.c:535 em68hc11elfb.c:535 em68hc12elf.c:535 em68hc12elfb.c:535
+#: em68kelf.c:530 em68kelfnbsd.c:530 emn10300.c:347 ends32belf.c:386
+#: ends32belf16m.c:386 ends32belf_linux.c:460 ends32elf.c:386
+#: ends32elf16m.c:386 ends32elf_linux.c:460 enios2elf.c:552 enios2linux.c:634
+#: epruelf.c:271 escore3_elf.c:367 escore7_elf.c:367 eshelf.c:347
+#: eshelf_fd.c:373 eshelf_linux.c:373 eshelf_nbsd.c:347 eshelf_nto.c:347
+#: eshelf_uclinux.c:347 eshelf_vxworks.c:384 eshlelf.c:347 eshlelf_fd.c:373
+#: eshlelf_linux.c:373 eshlelf_nbsd.c:347 eshlelf_nto.c:347
+#: eshlelf_vxworks.c:384 ev850.c:297 ev850_rh850.c:297
msgid "%F%P: invalid stack size `%s'\n"
msgstr ""
@@ -4032,231 +4151,235 @@ msgstr ""
#: eaarch64elf32.c:722 eaarch64elf32b.c:722 eaarch64elfb.c:722
#: eaarch64fbsd.c:723 eaarch64fbsdb.c:723 eaarch64haiku.c:723
#: eaarch64linux.c:723 eaarch64linux32.c:723 eaarch64linux32b.c:723
-#: eaarch64linuxb.c:723 earcelf.c:354 earclinux.c:410 earclinux_nps.c:410
-#: earcv2elf.c:287 earcv2elfx.c:287 earmelf.c:962 earmelf_fbsd.c:962
-#: earmelf_fuchsia.c:963 earmelf_haiku.c:963 earmelf_linux.c:963
-#: earmelf_linux_eabi.c:963 earmelf_linux_fdpiceabi.c:963 earmelf_nacl.c:963
-#: earmelf_nbsd.c:962 earmelf_phoenix.c:963 earmelf_vxworks.c:998
-#: earmelfb.c:962 earmelfb_fbsd.c:962 earmelfb_fuchsia.c:963
-#: earmelfb_linux.c:963 earmelfb_linux_eabi.c:963
+#: eaarch64linuxb.c:723 eaarch64nto.c:891 earcelf.c:356 earclinux.c:412
+#: earclinux_nps.c:412 earcv2elf.c:289 earcv2elfx.c:289 earmelf.c:962
+#: earmelf_fbsd.c:962 earmelf_fuchsia.c:963 earmelf_haiku.c:963
+#: earmelf_linux.c:963 earmelf_linux_eabi.c:963 earmelf_linux_fdpiceabi.c:963
+#: earmelf_nacl.c:963 earmelf_nbsd.c:962 earmelf_phoenix.c:963
+#: earmelf_vxworks.c:998 earmelfb.c:962 earmelfb_fbsd.c:962
+#: earmelfb_fuchsia.c:963 earmelfb_linux.c:963 earmelfb_linux_eabi.c:963
#: earmelfb_linux_fdpiceabi.c:963 earmelfb_nacl.c:963 earmelfb_nbsd.c:962
-#: earmnto.c:937 eavr1.c:511 eavr2.c:511 eavr25.c:511 eavr3.c:511 eavr31.c:511
-#: eavr35.c:511 eavr4.c:511 eavr5.c:511 eavr51.c:511 eavr6.c:511
-#: eavrtiny.c:511 eavrxmega1.c:511 eavrxmega2.c:511 eavrxmega3.c:511
-#: eavrxmega4.c:511 eavrxmega5.c:511 eavrxmega6.c:511 eavrxmega7.c:511
-#: ecriself.c:302 ecrislinux.c:385 ecskyelf.c:546 ecskyelf_linux.c:654
-#: ed10velf.c:287 eelf32_sparc.c:410 eelf32_sparc_sol2.c:542
-#: eelf32_sparc_vxworks.c:447 eelf32_spu.c:1020 eelf32_tic6x_be.c:521
-#: eelf32_tic6x_elf_be.c:521 eelf32_tic6x_elf_le.c:521 eelf32_tic6x_le.c:521
-#: eelf32_tic6x_linux_be.c:521 eelf32_tic6x_linux_le.c:521
-#: eelf32_x86_64.c:5545 eelf32am33lin.c:384 eelf32b4300.c:625 eelf32bfin.c:402
-#: eelf32bfinfd.c:427 eelf32bmip.c:625 eelf32bmipn32.c:639 eelf32briscv.c:478
-#: eelf32briscv_ilp32.c:478 eelf32briscv_ilp32f.c:478 eelf32bsmip.c:639
-#: eelf32btsmip.c:625 eelf32btsmip_fbsd.c:625 eelf32btsmipn32.c:625
-#: eelf32btsmipn32_fbsd.c:625 eelf32cr16.c:437 eelf32crx.c:324
-#: eelf32ebmip.c:625 eelf32ebmipvxworks.c:660 eelf32elmip.c:625
-#: eelf32elmipvxworks.c:660 eelf32epiphany.c:302 eelf32epiphany_4x4.c:289
-#: eelf32frvfd.c:409 eelf32ip2k.c:302 eelf32l4300.c:625 eelf32lm32.c:302
-#: eelf32lm32fd.c:409 eelf32lmip.c:625 eelf32loongarch.c:460 eelf32lppc.c:673
-#: eelf32lppclinux.c:673 eelf32lppcnto.c:673 eelf32lppcsim.c:673
-#: eelf32lr5900.c:543 eelf32lr5900n32.c:542 eelf32lriscv.c:478
-#: eelf32lriscv_ilp32.c:478 eelf32lriscv_ilp32f.c:478 eelf32lsmip.c:625
-#: eelf32ltsmip.c:625 eelf32ltsmip_fbsd.c:625 eelf32ltsmipn32.c:625
-#: eelf32ltsmipn32_fbsd.c:625 eelf32m32c.c:313 eelf32mb_linux.c:410
-#: eelf32mbel_linux.c:410 eelf32mcore.c:308 eelf32mep.c:287 eelf32metag.c:659
-#: eelf32microblaze.c:287 eelf32microblazeel.c:287 eelf32mipswindiss.c:517
-#: eelf32moxie.c:302 eelf32or1k.c:303 eelf32or1k_linux.c:410 eelf32ppc.c:673
-#: eelf32ppc_fbsd.c:673 eelf32ppchaiku.c:673 eelf32ppclinux.c:673
-#: eelf32ppcnto.c:673 eelf32ppcsim.c:673 eelf32ppcvxworks.c:647
-#: eelf32ppcwindiss.c:673 eelf32rl78.c:302 eelf32rx.c:330 eelf32rx_linux.c:315
-#: eelf32tilegx.c:410 eelf32tilegx_be.c:410 eelf32tilepro.c:410
-#: eelf32vax.c:384 eelf32visium.c:287 eelf32xstormy16.c:298
-#: eelf32xtensa.c:2323 eelf32z80.c:314 eelf64_aix.c:384 eelf64_ia64.c:441
-#: eelf64_ia64_fbsd.c:441 eelf64_s390.c:480 eelf64_sparc.c:410
-#: eelf64_sparc_fbsd.c:410 eelf64_sparc_sol2.c:542 eelf64alpha.c:503
-#: eelf64alpha_fbsd.c:503 eelf64alpha_nbsd.c:503 eelf64bmip.c:639
-#: eelf64bpf.c:287 eelf64briscv.c:478 eelf64briscv_lp64.c:478
-#: eelf64briscv_lp64f.c:478 eelf64btsmip.c:625 eelf64btsmip_fbsd.c:625
-#: eelf64hppa.c:354 eelf64loongarch.c:460 eelf64lppc.c:1122
-#: eelf64lppc_fbsd.c:1122 eelf64lriscv.c:478 eelf64lriscv_lp64.c:478
-#: eelf64lriscv_lp64f.c:478 eelf64ltsmip.c:625 eelf64ltsmip_fbsd.c:625
-#: eelf64mmix.c:495 eelf64ppc.c:1122 eelf64ppc_fbsd.c:1122 eelf64rdos.c:435
-#: eelf64tilegx.c:410 eelf64tilegx_be.c:410 eelf_i386.c:5167
-#: eelf_i386_be.c:408 eelf_i386_fbsd.c:444 eelf_i386_haiku.c:444
-#: eelf_i386_ldso.c:419 eelf_i386_sol2.c:576 eelf_i386_vxworks.c:471
-#: eelf_iamcu.c:444 eelf_mipsel_haiku.c:625 eelf_s390.c:410 eelf_x86_64.c:5545
-#: eelf_x86_64_cloudabi.c:444 eelf_x86_64_fbsd.c:444 eelf_x86_64_haiku.c:444
-#: eelf_x86_64_sol2.c:576 eh8300elf.c:302 eh8300elf_linux.c:302
-#: eh8300helf.c:302 eh8300helf_linux.c:302 eh8300hnelf.c:302 eh8300self.c:302
-#: eh8300self_linux.c:302 eh8300snelf.c:302 eh8300sxelf.c:302
-#: eh8300sxelf_linux.c:302 eh8300sxnelf.c:302 ehppa64linux.c:384
-#: ehppaelf.c:570 ehppalinux.c:693 ehppanbsd.c:693 ehppaobsd.c:693
-#: ei386lynx.c:399 ei386moss.c:399 ei386nto.c:399 em32relf.c:302
-#: em32relf_linux.c:409 em32rlelf.c:302 em32rlelf_linux.c:409
-#: em68hc11elf.c:572 em68hc11elfb.c:572 em68hc12elf.c:572 em68hc12elfb.c:572
-#: em68kelf.c:567 em68kelfnbsd.c:567 emn10300.c:384 ends32belf.c:423
-#: ends32belf16m.c:423 ends32belf_linux.c:497 ends32elf.c:423
-#: ends32elf16m.c:423 ends32elf_linux.c:497 enios2elf.c:589 enios2linux.c:671
-#: epruelf.c:308 escore3_elf.c:406 escore7_elf.c:406 eshelf.c:384
-#: eshelf_fd.c:410 eshelf_linux.c:410 eshelf_nbsd.c:384 eshelf_nto.c:384
-#: eshelf_uclinux.c:384 eshelf_vxworks.c:421 eshlelf.c:384 eshlelf_fd.c:410
-#: eshlelf_linux.c:410 eshlelf_nbsd.c:384 eshlelf_nto.c:384
-#: eshlelf_vxworks.c:421 ev850.c:334 ev850_rh850.c:334
+#: earmnto.c:937 eavr1.c:513 eavr2.c:513 eavr25.c:513 eavr3.c:513 eavr31.c:513
+#: eavr35.c:513 eavr4.c:513 eavr5.c:513 eavr51.c:513 eavr6.c:513
+#: eavrtiny.c:513 eavrxmega1.c:513 eavrxmega2.c:513 eavrxmega3.c:513
+#: eavrxmega4.c:513 eavrxmega5.c:513 eavrxmega6.c:513 eavrxmega7.c:513
+#: ecriself.c:304 ecrislinux.c:387 ecskyelf.c:548 ecskyelf_linux.c:656
+#: ed10velf.c:289 eelf32_sparc.c:412 eelf32_sparc_sol2.c:544
+#: eelf32_sparc_vxworks.c:449 eelf32_spu.c:1022 eelf32_tic6x_be.c:523
+#: eelf32_tic6x_elf_be.c:523 eelf32_tic6x_elf_le.c:523 eelf32_tic6x_le.c:523
+#: eelf32_tic6x_linux_be.c:523 eelf32_tic6x_linux_le.c:523
+#: eelf32_x86_64.c:5547 eelf32am33lin.c:386 eelf32b4300.c:627 eelf32bfin.c:404
+#: eelf32bfinfd.c:429 eelf32bmip.c:627 eelf32bmipn32.c:641 eelf32briscv.c:494
+#: eelf32briscv_ilp32.c:494 eelf32briscv_ilp32f.c:494 eelf32bsmip.c:641
+#: eelf32btsmip.c:627 eelf32btsmip_fbsd.c:627 eelf32btsmipn32.c:627
+#: eelf32btsmipn32_fbsd.c:627 eelf32cr16.c:439 eelf32crx.c:326
+#: eelf32ebmip.c:627 eelf32ebmipvxworks.c:662 eelf32elmip.c:627
+#: eelf32elmipvxworks.c:662 eelf32epiphany.c:304 eelf32epiphany_4x4.c:291
+#: eelf32frvfd.c:411 eelf32ip2k.c:304 eelf32kvx.c:652 eelf32l4300.c:627
+#: eelf32lm32.c:304 eelf32lm32fd.c:411 eelf32lmip.c:627 eelf32loongarch.c:465
+#: eelf32lppc.c:675 eelf32lppclinux.c:675 eelf32lppcnto.c:675
+#: eelf32lppcsim.c:675 eelf32lr5900.c:545 eelf32lr5900n32.c:544
+#: eelf32lriscv.c:494 eelf32lriscv_ilp32.c:494 eelf32lriscv_ilp32f.c:494
+#: eelf32lsmip.c:627 eelf32ltsmip.c:627 eelf32ltsmip_fbsd.c:627
+#: eelf32ltsmipn32.c:627 eelf32ltsmipn32_fbsd.c:627 eelf32m32c.c:315
+#: eelf32mb_linux.c:412 eelf32mbel_linux.c:412 eelf32mcore.c:310
+#: eelf32mep.c:289 eelf32metag.c:661 eelf32microblaze.c:289
+#: eelf32microblazeel.c:289 eelf32mipswindiss.c:519 eelf32moxie.c:304
+#: eelf32or1k.c:305 eelf32or1k_linux.c:412 eelf32ppc.c:675
+#: eelf32ppc_fbsd.c:675 eelf32ppchaiku.c:675 eelf32ppclinux.c:675
+#: eelf32ppcnto.c:675 eelf32ppcsim.c:675 eelf32ppcvxworks.c:649
+#: eelf32ppcwindiss.c:675 eelf32rl78.c:304 eelf32rx.c:332 eelf32rx_linux.c:317
+#: eelf32tilegx.c:412 eelf32tilegx_be.c:412 eelf32tilepro.c:412
+#: eelf32vax.c:386 eelf32visium.c:289 eelf32xstormy16.c:300
+#: eelf32xtensa.c:2323 eelf32z80.c:316 eelf64_aix.c:386 eelf64_ia64.c:443
+#: eelf64_ia64_fbsd.c:443 eelf64_s390.c:482 eelf64_sparc.c:412
+#: eelf64_sparc_fbsd.c:412 eelf64_sparc_sol2.c:544 eelf64alpha.c:505
+#: eelf64alpha_fbsd.c:505 eelf64alpha_nbsd.c:505 eelf64bmip.c:641
+#: eelf64bpf.c:289 eelf64briscv.c:494 eelf64briscv_lp64.c:494
+#: eelf64briscv_lp64f.c:494 eelf64btsmip.c:627 eelf64btsmip_fbsd.c:627
+#: eelf64hppa.c:356 eelf64kvx.c:652 eelf64kvx_linux.c:674
+#: eelf64loongarch.c:465 eelf64lppc.c:1124 eelf64lppc_fbsd.c:1124
+#: eelf64lriscv.c:494 eelf64lriscv_lp64.c:494 eelf64lriscv_lp64f.c:494
+#: eelf64ltsmip.c:627 eelf64ltsmip_fbsd.c:627 eelf64mmix.c:497
+#: eelf64ppc.c:1124 eelf64ppc_fbsd.c:1124 eelf64rdos.c:437 eelf64tilegx.c:412
+#: eelf64tilegx_be.c:412 eelf_i386.c:5169 eelf_i386_be.c:410
+#: eelf_i386_fbsd.c:446 eelf_i386_haiku.c:446 eelf_i386_ldso.c:421
+#: eelf_i386_sol2.c:578 eelf_i386_vxworks.c:473 eelf_iamcu.c:446
+#: eelf_mipsel_haiku.c:627 eelf_s390.c:412 eelf_x86_64.c:5547
+#: eelf_x86_64_cloudabi.c:446 eelf_x86_64_fbsd.c:446 eelf_x86_64_haiku.c:446
+#: eelf_x86_64_sol2.c:578 eh8300elf.c:304 eh8300elf_linux.c:304
+#: eh8300helf.c:304 eh8300helf_linux.c:304 eh8300hnelf.c:304 eh8300self.c:304
+#: eh8300self_linux.c:304 eh8300snelf.c:304 eh8300sxelf.c:304
+#: eh8300sxelf_linux.c:304 eh8300sxnelf.c:304 ehppa64linux.c:386
+#: ehppaelf.c:572 ehppalinux.c:695 ehppanbsd.c:695 ehppaobsd.c:695
+#: ei386lynx.c:401 ei386moss.c:401 ei386nto.c:401 em32relf.c:304
+#: em32relf_linux.c:411 em32rlelf.c:304 em32rlelf_linux.c:411
+#: em68hc11elf.c:574 em68hc11elfb.c:574 em68hc12elf.c:574 em68hc12elfb.c:574
+#: em68kelf.c:569 em68kelfnbsd.c:569 emn10300.c:386 ends32belf.c:425
+#: ends32belf16m.c:425 ends32belf_linux.c:499 ends32elf.c:425
+#: ends32elf16m.c:425 ends32elf_linux.c:499 enios2elf.c:591 enios2linux.c:673
+#: epruelf.c:310 escore3_elf.c:406 escore7_elf.c:406 eshelf.c:386
+#: eshelf_fd.c:412 eshelf_linux.c:412 eshelf_nbsd.c:386 eshelf_nto.c:386
+#: eshelf_uclinux.c:386 eshelf_vxworks.c:423 eshlelf.c:386 eshlelf_fd.c:412
+#: eshlelf_linux.c:412 eshlelf_nbsd.c:386 eshlelf_nto.c:386
+#: eshlelf_vxworks.c:423 ev850.c:336 ev850_rh850.c:336
msgid ""
"%F%P: invalid visibility in `-z %s'; must be default, internal, hidden, or "
"protected"
msgstr ""
-#: eaarch64cloudabi.c:796 eaarch64cloudabib.c:796 eaarch64elf.c:791
-#: eaarch64elf32.c:791 eaarch64elf32b.c:791 eaarch64elfb.c:791
-#: eaarch64fbsd.c:796 eaarch64fbsdb.c:796 eaarch64haiku.c:796
-#: eaarch64linux.c:796 eaarch64linux32.c:796 eaarch64linux32b.c:796
-#: eaarch64linuxb.c:796 earcelf.c:414 earclinux.c:474 earclinux_nps.c:474
-#: earcv2elf.c:292 earcv2elfx.c:292 earmelf.c:1022 earmelf_fbsd.c:1022
-#: earmelf_fuchsia.c:1027 earmelf_haiku.c:1027 earmelf_linux.c:1027
-#: earmelf_linux_eabi.c:1027 earmelf_linux_fdpiceabi.c:1027
-#: earmelf_nacl.c:1027 earmelf_nbsd.c:1022 earmelf_phoenix.c:1027
-#: earmelf_vxworks.c:1058 earmelfb.c:1022 earmelfb_fbsd.c:1022
-#: earmelfb_fuchsia.c:1027 earmelfb_linux.c:1027 earmelfb_linux_eabi.c:1027
-#: earmelfb_linux_fdpiceabi.c:1027 earmelfb_nacl.c:1027 earmelfb_nbsd.c:1022
-#: earmnto.c:997 eavr1.c:516 eavr2.c:516 eavr25.c:516 eavr3.c:516 eavr31.c:516
-#: eavr35.c:516 eavr4.c:516 eavr5.c:516 eavr51.c:516 eavr6.c:516
-#: eavrtiny.c:516 eavrxmega1.c:516 eavrxmega2.c:516 eavrxmega3.c:516
-#: eavrxmega4.c:516 eavrxmega5.c:516 eavrxmega6.c:516 eavrxmega7.c:516
-#: ecriself.c:307 ecrislinux.c:449 ecskyelf.c:551 ecskyelf_linux.c:718
-#: ed10velf.c:292 eelf32_sparc.c:474 eelf32_sparc_sol2.c:606
-#: eelf32_sparc_vxworks.c:511 eelf32_spu.c:1025 eelf32_tic6x_be.c:581
-#: eelf32_tic6x_elf_be.c:581 eelf32_tic6x_elf_le.c:581 eelf32_tic6x_le.c:581
-#: eelf32_tic6x_linux_be.c:581 eelf32_tic6x_linux_le.c:581
-#: eelf32_x86_64.c:5701 eelf32am33lin.c:444 eelf32b4300.c:689 eelf32bfin.c:462
-#: eelf32bfinfd.c:487 eelf32bmip.c:689 eelf32bmipn32.c:703 eelf32briscv.c:542
-#: eelf32briscv_ilp32.c:542 eelf32briscv_ilp32f.c:542 eelf32bsmip.c:703
-#: eelf32btsmip.c:689 eelf32btsmip_fbsd.c:689 eelf32btsmipn32.c:689
-#: eelf32btsmipn32_fbsd.c:689 eelf32cr16.c:442 eelf32crx.c:329
-#: eelf32ebmip.c:689 eelf32ebmipvxworks.c:724 eelf32elmip.c:689
-#: eelf32elmipvxworks.c:724 eelf32epiphany.c:307 eelf32epiphany_4x4.c:294
-#: eelf32frvfd.c:469 eelf32ip2k.c:307 eelf32l4300.c:689 eelf32lm32.c:307
-#: eelf32lm32fd.c:469 eelf32lmip.c:689 eelf32loongarch.c:524 eelf32lppc.c:743
-#: eelf32lppclinux.c:743 eelf32lppcnto.c:743 eelf32lppcsim.c:743
-#: eelf32lr5900.c:548 eelf32lr5900n32.c:547 eelf32lriscv.c:542
-#: eelf32lriscv_ilp32.c:542 eelf32lriscv_ilp32f.c:542 eelf32lsmip.c:689
-#: eelf32ltsmip.c:689 eelf32ltsmip_fbsd.c:689 eelf32ltsmipn32.c:689
-#: eelf32ltsmipn32_fbsd.c:689 eelf32m32c.c:318 eelf32mb_linux.c:474
-#: eelf32mbel_linux.c:474 eelf32mcore.c:313 eelf32mep.c:292 eelf32metag.c:723
-#: eelf32microblaze.c:292 eelf32microblazeel.c:292 eelf32mipswindiss.c:522
-#: eelf32moxie.c:307 eelf32or1k.c:308 eelf32or1k_linux.c:474 eelf32ppc.c:743
-#: eelf32ppc_fbsd.c:743 eelf32ppchaiku.c:743 eelf32ppclinux.c:743
-#: eelf32ppcnto.c:743 eelf32ppcsim.c:743 eelf32ppcvxworks.c:717
-#: eelf32ppcwindiss.c:743 eelf32rl78.c:307 eelf32rx.c:335 eelf32rx_linux.c:320
-#: eelf32tilegx.c:474 eelf32tilegx_be.c:474 eelf32tilepro.c:474
-#: eelf32vax.c:444 eelf32visium.c:292 eelf32xstormy16.c:303
-#: eelf32xtensa.c:2387 eelf32z80.c:319 eelf64_aix.c:444 eelf64_ia64.c:501
-#: eelf64_ia64_fbsd.c:501 eelf64_s390.c:544 eelf64_sparc.c:474
-#: eelf64_sparc_fbsd.c:474 eelf64_sparc_sol2.c:606 eelf64alpha.c:567
-#: eelf64alpha_fbsd.c:567 eelf64alpha_nbsd.c:567 eelf64bmip.c:703
-#: eelf64bpf.c:292 eelf64briscv.c:542 eelf64briscv_lp64.c:542
-#: eelf64briscv_lp64f.c:542 eelf64btsmip.c:689 eelf64btsmip_fbsd.c:689
-#: eelf64hppa.c:414 eelf64loongarch.c:524 eelf64lppc.c:1197
-#: eelf64lppc_fbsd.c:1197 eelf64lriscv.c:542 eelf64lriscv_lp64.c:542
-#: eelf64lriscv_lp64f.c:542 eelf64ltsmip.c:689 eelf64ltsmip_fbsd.c:689
-#: eelf64mmix.c:555 eelf64ppc.c:1197 eelf64ppc_fbsd.c:1197 eelf64rdos.c:499
-#: eelf64tilegx.c:474 eelf64tilegx_be.c:474 eelf_i386.c:5320
-#: eelf_i386_be.c:515 eelf_i386_fbsd.c:597 eelf_i386_haiku.c:597
-#: eelf_i386_ldso.c:530 eelf_i386_sol2.c:687 eelf_i386_vxworks.c:582
-#: eelf_iamcu.c:555 eelf_mipsel_haiku.c:689 eelf_s390.c:474 eelf_x86_64.c:5751
-#: eelf_x86_64_cloudabi.c:650 eelf_x86_64_fbsd.c:650 eelf_x86_64_haiku.c:650
-#: eelf_x86_64_sol2.c:782 eh8300elf.c:307 eh8300elf_linux.c:307
-#: eh8300helf.c:307 eh8300helf_linux.c:307 eh8300hnelf.c:307 eh8300self.c:307
-#: eh8300self_linux.c:307 eh8300snelf.c:307 eh8300sxelf.c:307
-#: eh8300sxelf_linux.c:307 eh8300sxnelf.c:307 ehppa64linux.c:444
-#: ehppaelf.c:575 ehppalinux.c:757 ehppanbsd.c:757 ehppaobsd.c:757
-#: ei386lynx.c:459 ei386moss.c:459 ei386nto.c:459 em32relf.c:307
-#: em32relf_linux.c:469 em32rlelf.c:307 em32rlelf_linux.c:469
-#: em68hc11elf.c:577 em68hc11elfb.c:577 em68hc12elf.c:577 em68hc12elfb.c:577
-#: em68kelf.c:631 em68kelfnbsd.c:631 emn10300.c:444 ends32belf.c:428
-#: ends32belf16m.c:428 ends32belf_linux.c:561 ends32elf.c:428
-#: ends32elf16m.c:428 ends32elf_linux.c:561 enios2elf.c:594 enios2linux.c:735
-#: epruelf.c:313 escore3_elf.c:466 escore7_elf.c:466 eshelf.c:444
-#: eshelf_fd.c:474 eshelf_linux.c:474 eshelf_nbsd.c:444 eshelf_nto.c:444
-#: eshelf_uclinux.c:444 eshelf_vxworks.c:481 eshlelf.c:444 eshlelf_fd.c:474
-#: eshlelf_linux.c:474 eshlelf_nbsd.c:444 eshlelf_nto.c:444
-#: eshlelf_vxworks.c:481 ev850.c:339 ev850_rh850.c:339
+#: eaarch64cloudabi.c:800 eaarch64cloudabib.c:800 eaarch64elf.c:795
+#: eaarch64elf32.c:795 eaarch64elf32b.c:795 eaarch64elfb.c:795
+#: eaarch64fbsd.c:800 eaarch64fbsdb.c:800 eaarch64haiku.c:800
+#: eaarch64linux.c:800 eaarch64linux32.c:800 eaarch64linux32b.c:800
+#: eaarch64linuxb.c:800 eaarch64nto.c:968 earcelf.c:420 earclinux.c:480
+#: earclinux_nps.c:480 earcv2elf.c:298 earcv2elfx.c:298 earmelf.c:1026
+#: earmelf_fbsd.c:1026 earmelf_fuchsia.c:1031 earmelf_haiku.c:1031
+#: earmelf_linux.c:1031 earmelf_linux_eabi.c:1031
+#: earmelf_linux_fdpiceabi.c:1031 earmelf_nacl.c:1031 earmelf_nbsd.c:1026
+#: earmelf_phoenix.c:1031 earmelf_vxworks.c:1062 earmelfb.c:1026
+#: earmelfb_fbsd.c:1026 earmelfb_fuchsia.c:1031 earmelfb_linux.c:1031
+#: earmelfb_linux_eabi.c:1031 earmelfb_linux_fdpiceabi.c:1031
+#: earmelfb_nacl.c:1031 earmelfb_nbsd.c:1026 earmnto.c:1001 eavr1.c:522
+#: eavr2.c:522 eavr25.c:522 eavr3.c:522 eavr31.c:522 eavr35.c:522 eavr4.c:522
+#: eavr5.c:522 eavr51.c:522 eavr6.c:522 eavrtiny.c:522 eavrxmega1.c:522
+#: eavrxmega2.c:522 eavrxmega3.c:522 eavrxmega4.c:522 eavrxmega5.c:522
+#: eavrxmega6.c:522 eavrxmega7.c:522 ecriself.c:313 ecrislinux.c:455
+#: ecskyelf.c:557 ecskyelf_linux.c:724 ed10velf.c:298 eelf32_sparc.c:480
+#: eelf32_sparc_sol2.c:612 eelf32_sparc_vxworks.c:517 eelf32_spu.c:1031
+#: eelf32_tic6x_be.c:587 eelf32_tic6x_elf_be.c:587 eelf32_tic6x_elf_le.c:587
+#: eelf32_tic6x_le.c:587 eelf32_tic6x_linux_be.c:587
+#: eelf32_tic6x_linux_le.c:587 eelf32_x86_64.c:5712 eelf32am33lin.c:450
+#: eelf32b4300.c:695 eelf32bfin.c:468 eelf32bfinfd.c:493 eelf32bmip.c:695
+#: eelf32bmipn32.c:709 eelf32briscv.c:562 eelf32briscv_ilp32.c:562
+#: eelf32briscv_ilp32f.c:562 eelf32bsmip.c:709 eelf32btsmip.c:695
+#: eelf32btsmip_fbsd.c:695 eelf32btsmipn32.c:695 eelf32btsmipn32_fbsd.c:695
+#: eelf32cr16.c:448 eelf32crx.c:335 eelf32ebmip.c:695 eelf32ebmipvxworks.c:730
+#: eelf32elmip.c:695 eelf32elmipvxworks.c:730 eelf32epiphany.c:313
+#: eelf32epiphany_4x4.c:300 eelf32frvfd.c:475 eelf32ip2k.c:313 eelf32kvx.c:716
+#: eelf32l4300.c:695 eelf32lm32.c:313 eelf32lm32fd.c:475 eelf32lmip.c:695
+#: eelf32loongarch.c:533 eelf32lppc.c:749 eelf32lppclinux.c:749
+#: eelf32lppcnto.c:749 eelf32lppcsim.c:749 eelf32lr5900.c:554
+#: eelf32lr5900n32.c:553 eelf32lriscv.c:562 eelf32lriscv_ilp32.c:562
+#: eelf32lriscv_ilp32f.c:562 eelf32lsmip.c:695 eelf32ltsmip.c:695
+#: eelf32ltsmip_fbsd.c:695 eelf32ltsmipn32.c:695 eelf32ltsmipn32_fbsd.c:695
+#: eelf32m32c.c:324 eelf32mb_linux.c:480 eelf32mbel_linux.c:480
+#: eelf32mcore.c:319 eelf32mep.c:298 eelf32metag.c:729 eelf32microblaze.c:298
+#: eelf32microblazeel.c:298 eelf32mipswindiss.c:528 eelf32moxie.c:313
+#: eelf32or1k.c:314 eelf32or1k_linux.c:480 eelf32ppc.c:749
+#: eelf32ppc_fbsd.c:749 eelf32ppchaiku.c:749 eelf32ppclinux.c:749
+#: eelf32ppcnto.c:749 eelf32ppcsim.c:749 eelf32ppcvxworks.c:723
+#: eelf32ppcwindiss.c:749 eelf32rl78.c:313 eelf32rx.c:341 eelf32rx_linux.c:326
+#: eelf32tilegx.c:480 eelf32tilegx_be.c:480 eelf32tilepro.c:480
+#: eelf32vax.c:450 eelf32visium.c:298 eelf32xstormy16.c:309
+#: eelf32xtensa.c:2391 eelf32z80.c:325 eelf64_aix.c:450 eelf64_ia64.c:507
+#: eelf64_ia64_fbsd.c:507 eelf64_s390.c:550 eelf64_sparc.c:480
+#: eelf64_sparc_fbsd.c:480 eelf64_sparc_sol2.c:612 eelf64alpha.c:573
+#: eelf64alpha_fbsd.c:573 eelf64alpha_nbsd.c:573 eelf64bmip.c:709
+#: eelf64bpf.c:298 eelf64briscv.c:562 eelf64briscv_lp64.c:562
+#: eelf64briscv_lp64f.c:562 eelf64btsmip.c:695 eelf64btsmip_fbsd.c:695
+#: eelf64hppa.c:420 eelf64kvx.c:716 eelf64kvx_linux.c:738
+#: eelf64loongarch.c:533 eelf64lppc.c:1203 eelf64lppc_fbsd.c:1203
+#: eelf64lriscv.c:562 eelf64lriscv_lp64.c:562 eelf64lriscv_lp64f.c:562
+#: eelf64ltsmip.c:695 eelf64ltsmip_fbsd.c:695 eelf64mmix.c:561
+#: eelf64ppc.c:1203 eelf64ppc_fbsd.c:1203 eelf64rdos.c:505 eelf64tilegx.c:480
+#: eelf64tilegx_be.c:480 eelf_i386.c:5326 eelf_i386_be.c:521
+#: eelf_i386_fbsd.c:603 eelf_i386_haiku.c:603 eelf_i386_ldso.c:536
+#: eelf_i386_sol2.c:693 eelf_i386_vxworks.c:588 eelf_iamcu.c:561
+#: eelf_mipsel_haiku.c:695 eelf_s390.c:480 eelf_x86_64.c:5762
+#: eelf_x86_64_cloudabi.c:661 eelf_x86_64_fbsd.c:661 eelf_x86_64_haiku.c:661
+#: eelf_x86_64_sol2.c:793 eh8300elf.c:313 eh8300elf_linux.c:313
+#: eh8300helf.c:313 eh8300helf_linux.c:313 eh8300hnelf.c:313 eh8300self.c:313
+#: eh8300self_linux.c:313 eh8300snelf.c:313 eh8300sxelf.c:313
+#: eh8300sxelf_linux.c:313 eh8300sxnelf.c:313 ehppa64linux.c:450
+#: ehppaelf.c:581 ehppalinux.c:763 ehppanbsd.c:763 ehppaobsd.c:763
+#: ei386lynx.c:465 ei386moss.c:465 ei386nto.c:465 em32relf.c:313
+#: em32relf_linux.c:475 em32rlelf.c:313 em32rlelf_linux.c:475
+#: em68hc11elf.c:583 em68hc11elfb.c:583 em68hc12elf.c:583 em68hc12elfb.c:583
+#: em68kelf.c:637 em68kelfnbsd.c:637 emn10300.c:450 ends32belf.c:434
+#: ends32belf16m.c:434 ends32belf_linux.c:567 ends32elf.c:434
+#: ends32elf16m.c:434 ends32elf_linux.c:567 enios2elf.c:600 enios2linux.c:741
+#: epruelf.c:319 escore3_elf.c:470 escore7_elf.c:470 eshelf.c:450
+#: eshelf_fd.c:480 eshelf_linux.c:480 eshelf_nbsd.c:450 eshelf_nto.c:450
+#: eshelf_uclinux.c:450 eshelf_vxworks.c:487 eshlelf.c:450 eshlelf_fd.c:480
+#: eshlelf_linux.c:480 eshlelf_nbsd.c:450 eshlelf_nto.c:450
+#: eshlelf_vxworks.c:487 ev850.c:345 ev850_rh850.c:345
msgid "%P: warning: -z %s ignored\n"
msgstr ""
-#: eaarch64cloudabi.c:830 eaarch64cloudabib.c:830 eaarch64elf.c:825
-#: eaarch64elf32.c:825 eaarch64elf32b.c:825 eaarch64elfb.c:825
-#: eaarch64fbsd.c:830 eaarch64fbsdb.c:830 eaarch64haiku.c:830
-#: eaarch64linux.c:830 eaarch64linux32.c:830 eaarch64linux32b.c:830
-#: eaarch64linuxb.c:830
+#: 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 eaarch64nto.c:1002
msgid "%P: error: unrecognized option for --fix-cortex-a53-843419: %s\n"
msgstr ""
-#: 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 earmelf.c:1159 earmelf_fbsd.c:1159
-#: earmelf_fuchsia.c:1164 earmelf_haiku.c:1164 earmelf_linux.c:1164
-#: earmelf_linux_eabi.c:1164 earmelf_linux_fdpiceabi.c:1164
-#: earmelf_nacl.c:1164 earmelf_nbsd.c:1159 earmelf_phoenix.c:1164
-#: earmelf_vxworks.c:1199 earmelfb.c:1159 earmelfb_fbsd.c:1159
-#: earmelfb_fuchsia.c:1164 earmelfb_linux.c:1164 earmelfb_linux_eabi.c:1164
-#: earmelfb_linux_fdpiceabi.c:1164 earmelfb_nacl.c:1164 earmelfb_nbsd.c:1159
-#: earmnto.c:1134
+#: eaarch64cloudabi.c:863 eaarch64cloudabib.c:863 eaarch64elf.c:858
+#: eaarch64elf32.c:858 eaarch64elf32b.c:858 eaarch64elfb.c:858
+#: eaarch64fbsd.c:863 eaarch64fbsdb.c:863 eaarch64haiku.c:863
+#: eaarch64linux.c:863 eaarch64linux32.c:863 eaarch64linux32b.c:863
+#: eaarch64linuxb.c:863 eaarch64nto.c:1047 earmelf.c:1163 earmelf_fbsd.c:1163
+#: earmelf_fuchsia.c:1168 earmelf_haiku.c:1168 earmelf_linux.c:1168
+#: earmelf_linux_eabi.c:1168 earmelf_linux_fdpiceabi.c:1168
+#: earmelf_nacl.c:1168 earmelf_nbsd.c:1163 earmelf_phoenix.c:1168
+#: earmelf_vxworks.c:1203 earmelfb.c:1163 earmelfb_fbsd.c:1163
+#: earmelfb_fuchsia.c:1168 earmelfb_linux.c:1168 earmelfb_linux_eabi.c:1168
+#: earmelfb_linux_fdpiceabi.c:1168 earmelfb_nacl.c:1168 earmelfb_nbsd.c:1163
+#: earmnto.c:1138
#, c-format
msgid ""
" --no-enum-size-warning Don't warn about objects with incompatible\n"
" enum sizes\n"
msgstr ""
-#: eaarch64cloudabi.c:861 eaarch64cloudabib.c:861 eaarch64elf.c:856
-#: eaarch64elf32.c:856 eaarch64elf32b.c:856 eaarch64elfb.c:856
-#: eaarch64fbsd.c:861 eaarch64fbsdb.c:861 eaarch64haiku.c:861
-#: eaarch64linux.c:861 eaarch64linux32.c:861 eaarch64linux32b.c:861
-#: eaarch64linuxb.c:861 earmelf.c:1161 earmelf_fbsd.c:1161
-#: earmelf_fuchsia.c:1166 earmelf_haiku.c:1166 earmelf_linux.c:1166
-#: earmelf_linux_eabi.c:1166 earmelf_linux_fdpiceabi.c:1166
-#: earmelf_nacl.c:1166 earmelf_nbsd.c:1161 earmelf_phoenix.c:1166
-#: earmelf_vxworks.c:1201 earmelfb.c:1161 earmelfb_fbsd.c:1161
-#: earmelfb_fuchsia.c:1166 earmelfb_linux.c:1166 earmelfb_linux_eabi.c:1166
-#: earmelfb_linux_fdpiceabi.c:1166 earmelfb_nacl.c:1166 earmelfb_nbsd.c:1161
-#: earmnto.c:1136
+#: eaarch64cloudabi.c:865 eaarch64cloudabib.c:865 eaarch64elf.c:860
+#: eaarch64elf32.c:860 eaarch64elf32b.c:860 eaarch64elfb.c:860
+#: eaarch64fbsd.c:865 eaarch64fbsdb.c:865 eaarch64haiku.c:865
+#: eaarch64linux.c:865 eaarch64linux32.c:865 eaarch64linux32b.c:865
+#: eaarch64linuxb.c:865 eaarch64nto.c:1049 earmelf.c:1165 earmelf_fbsd.c:1165
+#: earmelf_fuchsia.c:1170 earmelf_haiku.c:1170 earmelf_linux.c:1170
+#: earmelf_linux_eabi.c:1170 earmelf_linux_fdpiceabi.c:1170
+#: earmelf_nacl.c:1170 earmelf_nbsd.c:1165 earmelf_phoenix.c:1170
+#: earmelf_vxworks.c:1205 earmelfb.c:1165 earmelfb_fbsd.c:1165
+#: earmelfb_fuchsia.c:1170 earmelfb_linux.c:1170 earmelfb_linux_eabi.c:1170
+#: earmelfb_linux_fdpiceabi.c:1170 earmelfb_nacl.c:1170 earmelfb_nbsd.c:1165
+#: earmnto.c:1140
#, c-format
msgid ""
" --no-wchar-size-warning Don't warn about objects with incompatible\n"
" wchar_t sizes\n"
msgstr ""
-#: eaarch64cloudabi.c:863 eaarch64cloudabib.c:863 eaarch64elf.c:858
-#: eaarch64elf32.c:858 eaarch64elf32b.c:858 eaarch64elfb.c:858
-#: eaarch64fbsd.c:863 eaarch64fbsdb.c:863 eaarch64haiku.c:863
-#: eaarch64linux.c:863 eaarch64linux32.c:863 eaarch64linux32b.c:863
-#: eaarch64linuxb.c:863 earmelf.c:1163 earmelf_fbsd.c:1163
-#: earmelf_fuchsia.c:1168 earmelf_haiku.c:1168 earmelf_linux.c:1168
-#: earmelf_linux_eabi.c:1168 earmelf_linux_fdpiceabi.c:1168
-#: earmelf_nacl.c:1168 earmelf_nbsd.c:1163 earmelf_phoenix.c:1168
-#: earmelf_vxworks.c:1203 earmelfb.c:1163 earmelfb_fbsd.c:1163
-#: earmelfb_fuchsia.c:1168 earmelfb_linux.c:1168 earmelfb_linux_eabi.c:1168
-#: earmelfb_linux_fdpiceabi.c:1168 earmelfb_nacl.c:1168 earmelfb_nbsd.c:1163
-#: earmnto.c:1138
+#: eaarch64cloudabi.c:867 eaarch64cloudabib.c:867 eaarch64elf.c:862
+#: eaarch64elf32.c:862 eaarch64elf32b.c:862 eaarch64elfb.c:862
+#: eaarch64fbsd.c:867 eaarch64fbsdb.c:867 eaarch64haiku.c:867
+#: eaarch64linux.c:867 eaarch64linux32.c:867 eaarch64linux32b.c:867
+#: eaarch64linuxb.c:867 eaarch64nto.c:1051 earmelf.c:1167 earmelf_fbsd.c:1167
+#: earmelf_fuchsia.c:1172 earmelf_haiku.c:1172 earmelf_linux.c:1172
+#: earmelf_linux_eabi.c:1172 earmelf_linux_fdpiceabi.c:1172
+#: earmelf_nacl.c:1172 earmelf_nbsd.c:1167 earmelf_phoenix.c:1172
+#: earmelf_vxworks.c:1207 earmelfb.c:1167 earmelfb_fbsd.c:1167
+#: earmelfb_fuchsia.c:1172 earmelfb_linux.c:1172 earmelfb_linux_eabi.c:1172
+#: earmelfb_linux_fdpiceabi.c:1172 earmelfb_nacl.c:1172 earmelfb_nbsd.c:1167
+#: earmnto.c:1142
#, c-format
msgid ""
" --pic-veneer Always generate PIC interworking veneers\n"
msgstr ""
-#: eaarch64cloudabi.c:864 eaarch64cloudabib.c:864 eaarch64elf.c:859
-#: eaarch64elf32.c:859 eaarch64elf32b.c:859 eaarch64elfb.c:859
-#: eaarch64fbsd.c:864 eaarch64fbsdb.c:864 eaarch64haiku.c:864
-#: eaarch64linux.c:864 eaarch64linux32.c:864 eaarch64linux32b.c:864
-#: eaarch64linuxb.c:864 earmelf.c:1170 earmelf_fbsd.c:1170
-#: earmelf_fuchsia.c:1175 earmelf_haiku.c:1175 earmelf_linux.c:1175
-#: earmelf_linux_eabi.c:1175 earmelf_linux_fdpiceabi.c:1175
-#: earmelf_nacl.c:1175 earmelf_nbsd.c:1170 earmelf_phoenix.c:1175
-#: earmelf_vxworks.c:1210 earmelfb.c:1170 earmelfb_fbsd.c:1170
-#: earmelfb_fuchsia.c:1175 earmelfb_linux.c:1175 earmelfb_linux_eabi.c:1175
-#: earmelfb_linux_fdpiceabi.c:1175 earmelfb_nacl.c:1175 earmelfb_nbsd.c:1170
-#: earmnto.c:1145
+#: eaarch64cloudabi.c:868 eaarch64cloudabib.c:868 eaarch64elf.c:863
+#: eaarch64elf32.c:863 eaarch64elf32b.c:863 eaarch64elfb.c:863
+#: eaarch64fbsd.c:868 eaarch64fbsdb.c:868 eaarch64haiku.c:868
+#: eaarch64linux.c:868 eaarch64linux32.c:868 eaarch64linux32b.c:868
+#: eaarch64linuxb.c:868 eaarch64nto.c:1052 earmelf.c:1174 earmelf_fbsd.c:1174
+#: earmelf_fuchsia.c:1179 earmelf_haiku.c:1179 earmelf_linux.c:1179
+#: earmelf_linux_eabi.c:1179 earmelf_linux_fdpiceabi.c:1179
+#: earmelf_nacl.c:1179 earmelf_nbsd.c:1174 earmelf_phoenix.c:1179
+#: earmelf_vxworks.c:1214 earmelfb.c:1174 earmelfb_fbsd.c:1174
+#: earmelfb_fuchsia.c:1179 earmelfb_linux.c:1179 earmelfb_linux_eabi.c:1179
+#: earmelfb_linux_fdpiceabi.c:1179 earmelfb_nacl.c:1179 earmelfb_nbsd.c:1174
+#: earmnto.c:1149
#, c-format
msgid ""
" --stub-group-size=N Maximum size of a group of input sections "
@@ -4273,20 +4396,20 @@ msgid ""
" choose suitable defaults.\n"
msgstr ""
-#: eaarch64cloudabi.c:873 eaarch64cloudabib.c:873 eaarch64elf.c:868
-#: eaarch64elf32.c:868 eaarch64elf32b.c:868 eaarch64elfb.c:868
-#: eaarch64fbsd.c:873 eaarch64fbsdb.c:873 eaarch64haiku.c:873
-#: eaarch64linux.c:873 eaarch64linux32.c:873 eaarch64linux32b.c:873
-#: eaarch64linuxb.c:873
+#: eaarch64cloudabi.c:877 eaarch64cloudabib.c:877 eaarch64elf.c:872
+#: eaarch64elf32.c:872 eaarch64elf32b.c:872 eaarch64elfb.c:872
+#: eaarch64fbsd.c:877 eaarch64fbsdb.c:877 eaarch64haiku.c:877
+#: eaarch64linux.c:877 eaarch64linux32.c:877 eaarch64linux32b.c:877
+#: eaarch64linuxb.c:877 eaarch64nto.c:1061
#, c-format
msgid " --fix-cortex-a53-835769 Fix erratum 835769\n"
msgstr ""
-#: eaarch64cloudabi.c:874 eaarch64cloudabib.c:874 eaarch64elf.c:869
-#: eaarch64elf32.c:869 eaarch64elf32b.c:869 eaarch64elfb.c:869
-#: eaarch64fbsd.c:874 eaarch64fbsdb.c:874 eaarch64haiku.c:874
-#: eaarch64linux.c:874 eaarch64linux32.c:874 eaarch64linux32b.c:874
-#: eaarch64linuxb.c:874
+#: eaarch64cloudabi.c:878 eaarch64cloudabib.c:878 eaarch64elf.c:873
+#: eaarch64elf32.c:873 eaarch64elf32b.c:873 eaarch64elfb.c:873
+#: eaarch64fbsd.c:878 eaarch64fbsdb.c:878 eaarch64haiku.c:878
+#: eaarch64linux.c:878 eaarch64linux32.c:878 eaarch64linux32b.c:878
+#: eaarch64linuxb.c:878 eaarch64nto.c:1062
#, c-format
msgid ""
" --fix-cortex-a53-843419[=full|adr|adrp] Fix erratum 843419 and "
@@ -4311,22 +4434,22 @@ msgid ""
"you both a performance and size overhead.\n"
msgstr ""
-#: eaarch64cloudabi.c:885 eaarch64cloudabib.c:885 eaarch64elf.c:880
-#: eaarch64elf32.c:880 eaarch64elf32b.c:880 eaarch64elfb.c:880
-#: eaarch64fbsd.c:885 eaarch64fbsdb.c:885 eaarch64haiku.c:885
-#: eaarch64linux.c:885 eaarch64linux32.c:885 eaarch64linux32b.c:885
-#: eaarch64linuxb.c:885
+#: eaarch64cloudabi.c:889 eaarch64cloudabib.c:889 eaarch64elf.c:884
+#: eaarch64elf32.c:884 eaarch64elf32b.c:884 eaarch64elfb.c:884
+#: eaarch64fbsd.c:889 eaarch64fbsdb.c:889 eaarch64haiku.c:889
+#: eaarch64linux.c:889 eaarch64linux32.c:889 eaarch64linux32b.c:889
+#: eaarch64linuxb.c:889 eaarch64nto.c:1073
#, c-format
msgid ""
" --no-apply-dynamic-relocs Do not apply link-time values for dynamic "
"relocations\n"
msgstr ""
-#: eaarch64cloudabi.c:886 eaarch64cloudabib.c:886 eaarch64elf.c:881
-#: eaarch64elf32.c:881 eaarch64elf32b.c:881 eaarch64elfb.c:881
-#: eaarch64fbsd.c:886 eaarch64fbsdb.c:886 eaarch64haiku.c:886
-#: eaarch64linux.c:886 eaarch64linux32.c:886 eaarch64linux32b.c:886
-#: eaarch64linuxb.c:886
+#: eaarch64cloudabi.c:890 eaarch64cloudabib.c:890 eaarch64elf.c:885
+#: eaarch64elf32.c:885 eaarch64elf32b.c:885 eaarch64elfb.c:885
+#: eaarch64fbsd.c:890 eaarch64fbsdb.c:890 eaarch64haiku.c:890
+#: eaarch64linux.c:890 eaarch64linux32.c:890 eaarch64linux32b.c:890
+#: eaarch64linuxb.c:890 eaarch64nto.c:1074
#, c-format
msgid ""
" -z force-bti Turn on Branch Target Identification "
@@ -4334,232 +4457,259 @@ msgid ""
"inputs\n"
msgstr ""
-#: eaarch64cloudabi.c:887 eaarch64cloudabib.c:887 eaarch64elf.c:882
-#: eaarch64elf32.c:882 eaarch64elf32b.c:882 eaarch64elfb.c:882
-#: eaarch64fbsd.c:887 eaarch64fbsdb.c:887 eaarch64haiku.c:887
-#: eaarch64linux.c:887 eaarch64linux32.c:887 eaarch64linux32b.c:887
-#: eaarch64linuxb.c:887
+#: eaarch64cloudabi.c:891 eaarch64cloudabib.c:891 eaarch64elf.c:886
+#: eaarch64elf32.c:886 eaarch64elf32b.c:886 eaarch64elfb.c:886
+#: eaarch64fbsd.c:891 eaarch64fbsdb.c:891 eaarch64haiku.c:891
+#: eaarch64linux.c:891 eaarch64linux32.c:891 eaarch64linux32b.c:891
+#: eaarch64linuxb.c:891 eaarch64nto.c:1075
#, c-format
msgid ""
" -z pac-plt Protect PLTs with Pointer Authentication.\n"
msgstr ""
-#: eaarch64pe.c:424 earm64pe.c:424 earm_wince_pe.c:414 earmpe.c:414
-#: ei386pe.c:414 ei386pe_posix.c:414 ei386pep.c:424 emcorepe.c:414 eshpe.c:414
+#: eaarch64nto.c:400
+msgid "%F%P: cannot create .note section in stub BFD.\n"
+msgstr ""
+
+#: eaarch64nto.c:409
+msgid "%F%P: failed to create .note section\n"
+msgstr ""
+
+#: eaarch64nto.c:450
+msgid "%F%P: %pB: can't read contents of section .note: %E\n"
+msgstr ""
+
+#: eaarch64nto.c:460 eaarch64nto.c:464
+msgid "%P: %pB: warning: duplicated QNX stack .note detected\n"
+msgstr ""
+
+#: eaarch64nto.c:493
+msgid "%F%P: error: --lazy-stack must follow -zstack-size=<size>\n"
+msgstr ""
+
+#: eaarch64nto.c:1077
+#, c-format
+msgid ""
+" --stack <size> Set size of the initial stack\n"
+" --lazy-stack\t\t Set lazy allocation of stack\n"
+msgstr ""
+
+#: eaarch64pe.c:423 earm64pe.c:423 earm_wince_pe.c:416 earmpe.c:416
+#: ei386pe.c:416 ei386pe_posix.c:416 ei386pep.c:423 emcorepe.c:416 eshpe.c:416
#, c-format
msgid ""
" --base_file <basefile> Generate a base file for relocatable "
"DLLs\n"
msgstr ""
-#: eaarch64pe.c:425 earm64pe.c:425 earm_wince_pe.c:415 earmpe.c:415
-#: ei386pe.c:415 ei386pe_posix.c:415 ei386pep.c:425 emcorepe.c:415 eshpe.c:415
+#: eaarch64pe.c:424 earm64pe.c:424 earm_wince_pe.c:417 earmpe.c:417
+#: ei386pe.c:417 ei386pe_posix.c:417 ei386pep.c:424 emcorepe.c:417 eshpe.c:417
#, c-format
msgid ""
" --dll Set image base to the default for DLLs\n"
msgstr ""
-#: eaarch64pe.c:426 earm64pe.c:426 earm_wince_pe.c:416 earmpe.c:416
-#: ei386pe.c:416 ei386pe_posix.c:416 ei386pep.c:426 emcorepe.c:416 eshpe.c:416
+#: eaarch64pe.c:425 earm64pe.c:425 earm_wince_pe.c:418 earmpe.c:418
+#: ei386pe.c:418 ei386pe_posix.c:418 ei386pep.c:425 emcorepe.c:418 eshpe.c:418
#, c-format
msgid " --file-alignment <size> Set file alignment\n"
msgstr ""
-#: eaarch64pe.c:427 earm64pe.c:427 earm_wince_pe.c:417 earmpe.c:417
-#: ei386pe.c:417 ei386pe_posix.c:417 ei386pep.c:427 emcorepe.c:417 eshpe.c:417
+#: eaarch64pe.c:426 earm64pe.c:426 earm_wince_pe.c:419 earmpe.c:419
+#: ei386pe.c:419 ei386pe_posix.c:419 ei386pep.c:426 emcorepe.c:419 eshpe.c:419
#, c-format
msgid " --heap <size> Set initial size of the heap\n"
msgstr ""
-#: eaarch64pe.c:428 earm64pe.c:428 earm_wince_pe.c:418 earmpe.c:418
-#: ei386pe.c:418 ei386pe_posix.c:418 ei386pep.c:428 emcorepe.c:418 eshpe.c:418
+#: eaarch64pe.c:427 earm64pe.c:427 earm_wince_pe.c:420 earmpe.c:420
+#: ei386pe.c:420 ei386pe_posix.c:420 ei386pep.c:427 emcorepe.c:420 eshpe.c:420
#, c-format
msgid ""
" --image-base <address> Set start address of the executable\n"
msgstr ""
-#: eaarch64pe.c:429 earm64pe.c:429 earm_wince_pe.c:419 earmpe.c:419
-#: ei386pe.c:419 ei386pe_posix.c:419 ei386pep.c:429 emcorepe.c:419 eshpe.c:419
+#: eaarch64pe.c:428 earm64pe.c:428 earm_wince_pe.c:421 earmpe.c:421
+#: ei386pe.c:421 ei386pe_posix.c:421 ei386pep.c:428 emcorepe.c:421 eshpe.c:421
#, c-format
msgid ""
" --major-image-version <number> Set version number of the executable\n"
msgstr ""
-#: eaarch64pe.c:430 earm64pe.c:430 earm_wince_pe.c:420 earmpe.c:420
-#: ei386pe.c:420 ei386pe_posix.c:420 ei386pep.c:430 emcorepe.c:420 eshpe.c:420
+#: eaarch64pe.c:429 earm64pe.c:429 earm_wince_pe.c:422 earmpe.c:422
+#: ei386pe.c:422 ei386pe_posix.c:422 ei386pep.c:429 emcorepe.c:422 eshpe.c:422
#, c-format
msgid " --major-os-version <number> Set minimum required OS version\n"
msgstr ""
-#: eaarch64pe.c:431 earm64pe.c:431 earm_wince_pe.c:421 earmpe.c:421
-#: ei386pe.c:421 ei386pe_posix.c:421 ei386pep.c:431 emcorepe.c:421 eshpe.c:421
+#: eaarch64pe.c:430 earm64pe.c:430 earm_wince_pe.c:423 earmpe.c:423
+#: ei386pe.c:423 ei386pe_posix.c:423 ei386pep.c:430 emcorepe.c:423 eshpe.c:423
#, c-format
msgid ""
" --major-subsystem-version <number> Set minimum required OS subsystem "
"version\n"
msgstr ""
-#: eaarch64pe.c:432 earm64pe.c:432 earm_wince_pe.c:422 earmpe.c:422
-#: ei386pe.c:422 ei386pe_posix.c:422 ei386pep.c:432 emcorepe.c:422 eshpe.c:422
+#: eaarch64pe.c:431 earm64pe.c:431 earm_wince_pe.c:424 earmpe.c:424
+#: ei386pe.c:424 ei386pe_posix.c:424 ei386pep.c:431 emcorepe.c:424 eshpe.c:424
#, c-format
msgid ""
" --minor-image-version <number> Set revision number of the executable\n"
msgstr ""
-#: eaarch64pe.c:433 earm64pe.c:433 earm_wince_pe.c:423 earmpe.c:423
-#: ei386pe.c:423 ei386pe_posix.c:423 ei386pep.c:433 emcorepe.c:423 eshpe.c:423
+#: eaarch64pe.c:432 earm64pe.c:432 earm_wince_pe.c:425 earmpe.c:425
+#: ei386pe.c:425 ei386pe_posix.c:425 ei386pep.c:432 emcorepe.c:425 eshpe.c:425
#, c-format
msgid " --minor-os-version <number> Set minimum required OS revision\n"
msgstr ""
-#: eaarch64pe.c:434 earm64pe.c:434 earm_wince_pe.c:424 earmpe.c:424
-#: ei386pe.c:424 ei386pe_posix.c:424 ei386pep.c:434 emcorepe.c:424 eshpe.c:424
+#: eaarch64pe.c:433 earm64pe.c:433 earm_wince_pe.c:426 earmpe.c:426
+#: ei386pe.c:426 ei386pe_posix.c:426 ei386pep.c:433 emcorepe.c:426 eshpe.c:426
#, c-format
msgid ""
" --minor-subsystem-version <number> Set minimum required OS subsystem "
"revision\n"
msgstr ""
-#: eaarch64pe.c:435 earm64pe.c:435 earm_wince_pe.c:425 earmpe.c:425
-#: ei386pe.c:425 ei386pe_posix.c:425 ei386pep.c:435 emcorepe.c:425 eshpe.c:425
+#: eaarch64pe.c:434 earm64pe.c:434 earm_wince_pe.c:427 earmpe.c:427
+#: ei386pe.c:427 ei386pe_posix.c:427 ei386pep.c:434 emcorepe.c:427 eshpe.c:427
#, c-format
msgid " --section-alignment <size> Set section alignment\n"
msgstr ""
-#: eaarch64pe.c:436 earm64pe.c:436 earm_wince_pe.c:426 earmpe.c:426
-#: ei386pe.c:426 ei386pe_posix.c:426 ei386pep.c:436 emcorepe.c:426 eshpe.c:426
+#: eaarch64pe.c:435 earm64pe.c:435 earm_wince_pe.c:428 earmpe.c:428
+#: ei386pe.c:428 ei386pe_posix.c:428 ei386pep.c:435 emcorepe.c:428 eshpe.c:428
#, c-format
msgid " --stack <size> Set size of the initial stack\n"
msgstr ""
-#: eaarch64pe.c:437 earm64pe.c:437 earm_wince_pe.c:427 earmpe.c:427
-#: ei386pe.c:427 ei386pe_posix.c:427 ei386pep.c:437 emcorepe.c:427 eshpe.c:427
+#: eaarch64pe.c:436 earm64pe.c:436 earm_wince_pe.c:429 earmpe.c:429
+#: ei386pe.c:429 ei386pe_posix.c:429 ei386pep.c:436 emcorepe.c:429 eshpe.c:429
#, c-format
msgid ""
" --subsystem <name>[:<version>] Set required OS subsystem [& version]\n"
msgstr ""
-#: eaarch64pe.c:438 earm64pe.c:438 earm_wince_pe.c:428 earmpe.c:428
-#: ei386pe.c:428 ei386pe_posix.c:428 ei386pep.c:438 emcorepe.c:428 eshpe.c:428
+#: eaarch64pe.c:437 earm64pe.c:437 earm_wince_pe.c:430 earmpe.c:430
+#: ei386pe.c:430 ei386pe_posix.c:430 ei386pep.c:437 emcorepe.c:430 eshpe.c:430
#, c-format
msgid ""
" --support-old-code Support interworking with old code\n"
msgstr ""
-#: eaarch64pe.c:439 earm64pe.c:439 earm_wince_pe.c:429 earmpe.c:429
-#: ei386pe.c:429 ei386pe_posix.c:429 ei386pep.c:439 emcorepe.c:429 eshpe.c:429
+#: eaarch64pe.c:438 earm64pe.c:438 earm_wince_pe.c:431 earmpe.c:431
+#: ei386pe.c:431 ei386pe_posix.c:431 ei386pep.c:438 emcorepe.c:431 eshpe.c:431
#, c-format
msgid ""
" --[no-]leading-underscore Set explicit symbol underscore prefix "
"mode\n"
msgstr ""
-#: eaarch64pe.c:440 earm64pe.c:440 ei386pep.c:440
+#: eaarch64pe.c:439 earm64pe.c:439 ei386pep.c:439
#, c-format
msgid ""
" --[no-]insert-timestamp Use a real timestamp rather than zero "
"(default)\n"
msgstr ""
-#: eaarch64pe.c:441 earm64pe.c:441 earm_wince_pe.c:432 earmpe.c:432
-#: ei386pe.c:432 ei386pe_posix.c:432 ei386pep.c:441 emcorepe.c:432 eshpe.c:432
+#: eaarch64pe.c:440 earm64pe.c:440 earm_wince_pe.c:434 earmpe.c:434
+#: ei386pe.c:434 ei386pe_posix.c:434 ei386pep.c:440 emcorepe.c:434 eshpe.c:434
#, c-format
msgid ""
" This makes binaries non-deterministic\n"
msgstr ""
-#: eaarch64pe.c:443 earm64pe.c:443 earm_wince_pe.c:434 earmpe.c:434
-#: ei386pe.c:434 ei386pe_posix.c:434 ei386pep.c:443 emcorepe.c:434 eshpe.c:434
+#: eaarch64pe.c:442 earm64pe.c:442 earm_wince_pe.c:436 earmpe.c:436
+#: ei386pe.c:436 ei386pe_posix.c:436 ei386pep.c:442 emcorepe.c:436 eshpe.c:436
#, c-format
msgid ""
" --add-stdcall-alias Export symbols with and without @nn\n"
msgstr ""
-#: eaarch64pe.c:444 earm64pe.c:444 earm_wince_pe.c:435 earmpe.c:435
-#: ei386pe.c:435 ei386pe_posix.c:435 ei386pep.c:444 emcorepe.c:435 eshpe.c:435
+#: eaarch64pe.c:443 earm64pe.c:443 earm_wince_pe.c:437 earmpe.c:437
+#: ei386pe.c:437 ei386pe_posix.c:437 ei386pep.c:443 emcorepe.c:437 eshpe.c:437
#, c-format
msgid " --disable-stdcall-fixup Don't link _sym to _sym@nn\n"
msgstr ""
-#: eaarch64pe.c:445 earm64pe.c:445 earm_wince_pe.c:436 earmpe.c:436
-#: ei386pe.c:436 ei386pe_posix.c:436 ei386pep.c:445 emcorepe.c:436 eshpe.c:436
+#: eaarch64pe.c:444 earm64pe.c:444 earm_wince_pe.c:438 earmpe.c:438
+#: ei386pe.c:438 ei386pe_posix.c:438 ei386pep.c:444 emcorepe.c:438 eshpe.c:438
#, c-format
msgid ""
" --enable-stdcall-fixup Link _sym to _sym@nn without warnings\n"
msgstr ""
-#: eaarch64pe.c:446 earm64pe.c:446 earm_wince_pe.c:437 earmpe.c:437
-#: ei386pe.c:437 ei386pe_posix.c:437 ei386pep.c:446 emcorepe.c:437 eshpe.c:437
+#: eaarch64pe.c:445 earm64pe.c:445 earm_wince_pe.c:439 earmpe.c:439
+#: ei386pe.c:439 ei386pe_posix.c:439 ei386pep.c:445 emcorepe.c:439 eshpe.c:439
#, c-format
msgid ""
" --exclude-symbols sym,sym,... Exclude symbols from automatic export\n"
msgstr ""
-#: eaarch64pe.c:447 earm64pe.c:447 earm_wince_pe.c:438 earmpe.c:438
-#: ei386pe.c:438 ei386pe_posix.c:438 ei386pep.c:447 emcorepe.c:438 eshpe.c:438
+#: eaarch64pe.c:446 earm64pe.c:446 earm_wince_pe.c:440 earmpe.c:440
+#: ei386pe.c:440 ei386pe_posix.c:440 ei386pep.c:446 emcorepe.c:440 eshpe.c:440
#, c-format
msgid ""
" --exclude-all-symbols Exclude all symbols from automatic "
"export\n"
msgstr ""
-#: eaarch64pe.c:448 earm64pe.c:448 earm_wince_pe.c:439 earmpe.c:439
-#: ei386pe.c:439 ei386pe_posix.c:439 ei386pep.c:448 emcorepe.c:439 eshpe.c:439
+#: eaarch64pe.c:447 earm64pe.c:447 earm_wince_pe.c:441 earmpe.c:441
+#: ei386pe.c:441 ei386pe_posix.c:441 ei386pep.c:447 emcorepe.c:441 eshpe.c:441
#, c-format
msgid ""
" --exclude-libs lib,lib,... Exclude libraries from automatic "
"export\n"
msgstr ""
-#: eaarch64pe.c:449 earm64pe.c:449 earm_wince_pe.c:440 earmpe.c:440
-#: ei386pe.c:440 ei386pe_posix.c:440 ei386pep.c:449 emcorepe.c:440 eshpe.c:440
+#: eaarch64pe.c:448 earm64pe.c:448 earm_wince_pe.c:442 earmpe.c:442
+#: ei386pe.c:442 ei386pe_posix.c:442 ei386pep.c:448 emcorepe.c:442 eshpe.c:442
#, c-format
msgid " --exclude-modules-for-implib mod,mod,...\n"
msgstr ""
-#: eaarch64pe.c:450 earm64pe.c:450 earm_wince_pe.c:441 earmpe.c:441
-#: ei386pe.c:441 ei386pe_posix.c:441 ei386pep.c:450 emcorepe.c:441 eshpe.c:441
+#: eaarch64pe.c:449 earm64pe.c:449 earm_wince_pe.c:443 earmpe.c:443
+#: ei386pe.c:443 ei386pe_posix.c:443 ei386pep.c:449 emcorepe.c:443 eshpe.c:443
#, c-format
msgid ""
" Exclude objects, archive members from "
"auto\n"
msgstr ""
-#: eaarch64pe.c:451 earm64pe.c:451 ei386pep.c:451
+#: eaarch64pe.c:450 earm64pe.c:450 ei386pep.c:450
#, c-format
msgid ""
" export, place into import library "
"instead\n"
msgstr ""
-#: eaarch64pe.c:452 earm64pe.c:452 earm_wince_pe.c:443 earmpe.c:443
-#: ei386pe.c:443 ei386pe_posix.c:443 ei386pep.c:452 emcorepe.c:443 eshpe.c:443
+#: eaarch64pe.c:451 earm64pe.c:451 earm_wince_pe.c:445 earmpe.c:445
+#: ei386pe.c:445 ei386pe_posix.c:445 ei386pep.c:451 emcorepe.c:445 eshpe.c:445
#, c-format
msgid ""
" --export-all-symbols Automatically export all globals to "
"DLL\n"
msgstr ""
-#: eaarch64pe.c:453 earm64pe.c:453 earm_wince_pe.c:444 earmpe.c:444
-#: ei386pe.c:444 ei386pe_posix.c:444 ei386pep.c:453 emcorepe.c:444 eshpe.c:444
+#: eaarch64pe.c:452 earm64pe.c:452 earm_wince_pe.c:446 earmpe.c:446
+#: ei386pe.c:446 ei386pe_posix.c:446 ei386pep.c:452 emcorepe.c:446 eshpe.c:446
#, c-format
msgid " --kill-at Remove @nn from exported symbols\n"
msgstr ""
-#: eaarch64pe.c:454 earm64pe.c:454 earm_wince_pe.c:445 earmpe.c:445
-#: ei386pe.c:445 ei386pe_posix.c:445 ei386pep.c:454 emcorepe.c:445 eshpe.c:445
+#: eaarch64pe.c:453 earm64pe.c:453 earm_wince_pe.c:447 earmpe.c:447
+#: ei386pe.c:447 ei386pe_posix.c:447 ei386pep.c:453 emcorepe.c:447 eshpe.c:447
#, c-format
msgid ""
" --output-def <file> Generate a .DEF file for the built DLL\n"
msgstr ""
-#: eaarch64pe.c:455 earm64pe.c:455 earm_wince_pe.c:446 earmpe.c:446
-#: ei386pe.c:446 ei386pe_posix.c:446 ei386pep.c:455 emcorepe.c:446 eshpe.c:446
+#: eaarch64pe.c:454 earm64pe.c:454 earm_wince_pe.c:448 earmpe.c:448
+#: ei386pe.c:448 ei386pe_posix.c:448 ei386pep.c:454 emcorepe.c:448 eshpe.c:448
#, c-format
msgid " --warn-duplicate-exports Warn about duplicate exports\n"
msgstr ""
-#: eaarch64pe.c:456 earm64pe.c:456 ei386pep.c:456
+#: eaarch64pe.c:455 earm64pe.c:455 ei386pep.c:455
#, c-format
msgid ""
" --compat-implib Create backward compatible import "
@@ -4567,7 +4717,7 @@ msgid ""
" create __imp_<SYMBOL> as well\n"
msgstr ""
-#: eaarch64pe.c:457 earm64pe.c:457 ei386pep.c:457
+#: eaarch64pe.c:456 earm64pe.c:456 ei386pep.c:456
#, c-format
msgid ""
" --enable-auto-image-base Automatically choose image base for "
@@ -4575,15 +4725,15 @@ msgid ""
" unless user specifies one\n"
msgstr ""
-#: eaarch64pe.c:458 earm64pe.c:458 ei386pep.c:458
+#: eaarch64pe.c:457 earm64pe.c:457 ei386pep.c:457
#, c-format
msgid ""
" --disable-auto-image-base Do not auto-choose image base "
"(default)\n"
msgstr ""
-#: eaarch64pe.c:459 earm64pe.c:459 earm_wince_pe.c:450 earmpe.c:450
-#: ei386pe.c:450 ei386pe_posix.c:450 ei386pep.c:459 emcorepe.c:450 eshpe.c:450
+#: eaarch64pe.c:458 earm64pe.c:458 earm_wince_pe.c:452 earmpe.c:452
+#: ei386pe.c:452 ei386pe_posix.c:452 ei386pep.c:458 emcorepe.c:452 eshpe.c:452
#, c-format
msgid ""
" --dll-search-prefix=<string> When linking dynamically to a dll "
@@ -4593,23 +4743,23 @@ msgid ""
" in preference to lib<basename>.dll \n"
msgstr ""
-#: eaarch64pe.c:460 earm64pe.c:460 earm_wince_pe.c:451 earmpe.c:451
-#: ei386pe.c:451 ei386pe_posix.c:451 ei386pep.c:460 emcorepe.c:451 eshpe.c:451
+#: eaarch64pe.c:459 earm64pe.c:459 earm_wince_pe.c:453 earmpe.c:453
+#: ei386pe.c:453 ei386pe_posix.c:453 ei386pep.c:459 emcorepe.c:453 eshpe.c:453
#, c-format
msgid ""
" --enable-auto-import Do sophisticated linking of _sym to\n"
" __imp_sym for DATA references\n"
msgstr ""
-#: eaarch64pe.c:461 earm64pe.c:461 earm_wince_pe.c:452 earmpe.c:452
-#: ei386pe.c:452 ei386pe_posix.c:452 ei386pep.c:461 emcorepe.c:452 eshpe.c:452
+#: eaarch64pe.c:460 earm64pe.c:460 earm_wince_pe.c:454 earmpe.c:454
+#: ei386pe.c:454 ei386pe_posix.c:454 ei386pep.c:460 emcorepe.c:454 eshpe.c:454
#, c-format
msgid ""
" --disable-auto-import Do not auto-import DATA items from "
"DLLs\n"
msgstr ""
-#: eaarch64pe.c:462 earm64pe.c:462 ei386pep.c:462
+#: eaarch64pe.c:461 earm64pe.c:461 ei386pep.c:461
#, c-format
msgid ""
" --enable-runtime-pseudo-reloc Work around auto-import limitations by\n"
@@ -4618,7 +4768,7 @@ msgid ""
" runtime\n"
msgstr ""
-#: eaarch64pe.c:463 earm64pe.c:463 ei386pep.c:463
+#: eaarch64pe.c:462 earm64pe.c:462 ei386pep.c:462
#, c-format
msgid ""
" --disable-runtime-pseudo-reloc Do not add runtime pseudo-relocations "
@@ -4626,7 +4776,7 @@ msgid ""
" auto-imported DATA\n"
msgstr ""
-#: eaarch64pe.c:464 earm64pe.c:464 ei386pep.c:464
+#: eaarch64pe.c:463 earm64pe.c:463 ei386pep.c:463
#, c-format
msgid ""
" --enable-extra-pep-debug Enable verbose debug output when "
@@ -4635,16 +4785,16 @@ msgid ""
"import)\n"
msgstr ""
-#: eaarch64pe.c:465 earm64pe.c:465 earm_wince_pe.c:459 earmpe.c:459
-#: ei386pe.c:459 ei386pe_posix.c:459 ei386pep.c:465 emcorepe.c:459 eshpe.c:459
+#: eaarch64pe.c:464 earm64pe.c:464 earm_wince_pe.c:461 earmpe.c:461
+#: ei386pe.c:461 ei386pe_posix.c:461 ei386pep.c:464 emcorepe.c:461 eshpe.c:461
#, c-format
msgid ""
" --enable-long-section-names Use long COFF section names even in\n"
" executable image files\n"
msgstr ""
-#: eaarch64pe.c:466 earm64pe.c:466 earm_wince_pe.c:460 earmpe.c:460
-#: ei386pe.c:460 ei386pe_posix.c:460 ei386pep.c:466 emcorepe.c:460 eshpe.c:460
+#: eaarch64pe.c:465 earm64pe.c:465 earm_wince_pe.c:462 earmpe.c:462
+#: ei386pe.c:462 ei386pe_posix.c:462 ei386pep.c:465 emcorepe.c:462 eshpe.c:462
#, c-format
msgid ""
" --disable-long-section-names Never use long COFF section names, "
@@ -4652,7 +4802,7 @@ msgid ""
" in object files\n"
msgstr ""
-#: eaarch64pe.c:467 earm64pe.c:467 ei386pep.c:467
+#: eaarch64pe.c:466 earm64pe.c:466 ei386pep.c:466
#, c-format
msgid ""
" --[disable-]high-entropy-va Image is compatible with 64-bit address "
@@ -4660,8 +4810,8 @@ msgid ""
" layout randomization (ASLR)\n"
msgstr ""
-#: eaarch64pe.c:468 earm64pe.c:468 earm_wince_pe.c:461 earmpe.c:461
-#: ei386pe.c:461 ei386pe_posix.c:461 ei386pep.c:468 emcorepe.c:461 eshpe.c:461
+#: eaarch64pe.c:467 earm64pe.c:467 earm_wince_pe.c:463 earmpe.c:463
+#: ei386pe.c:463 ei386pe_posix.c:463 ei386pep.c:467 emcorepe.c:463 eshpe.c:463
#, c-format
msgid ""
" --[disable-]dynamicbase Image base address may be relocated "
@@ -4670,29 +4820,29 @@ msgid ""
"(ASLR)\n"
msgstr ""
-#: eaarch64pe.c:469 earm64pe.c:469 earm_wince_pe.c:462 earmpe.c:462
-#: ei386pe.c:462 ei386pe_posix.c:462 ei386pep.c:469 emcorepe.c:462 eshpe.c:462
+#: eaarch64pe.c:468 earm64pe.c:468 earm_wince_pe.c:464 earmpe.c:464
+#: ei386pe.c:464 ei386pe_posix.c:464 ei386pep.c:468 emcorepe.c:464 eshpe.c:464
#, c-format
msgid " --enable-reloc-section Create the base relocation table\n"
msgstr ""
-#: eaarch64pe.c:470 earm64pe.c:470 earm_wince_pe.c:463 earmpe.c:463
-#: ei386pe.c:463 ei386pe_posix.c:463 ei386pep.c:470 emcorepe.c:463 eshpe.c:463
+#: eaarch64pe.c:469 earm64pe.c:469 earm_wince_pe.c:465 earmpe.c:465
+#: ei386pe.c:465 ei386pe_posix.c:465 ei386pep.c:469 emcorepe.c:465 eshpe.c:465
#, c-format
msgid ""
" --disable-reloc-section Do not create the base relocation "
"table\n"
msgstr ""
-#: eaarch64pe.c:471 earm64pe.c:471 earm_wince_pe.c:464 earmpe.c:464
-#: ei386pe.c:464 ei386pe_posix.c:464 ei386pep.c:471 emcorepe.c:464 eshpe.c:464
+#: eaarch64pe.c:470 earm64pe.c:470 earm_wince_pe.c:466 earmpe.c:466
+#: ei386pe.c:466 ei386pe_posix.c:466 ei386pep.c:470 emcorepe.c:466 eshpe.c:466
#, c-format
msgid ""
" --[disable-]forceinteg Code integrity checks are enforced\n"
msgstr ""
-#: eaarch64pe.c:472 earm64pe.c:472 earm_wince_pe.c:465 earmpe.c:465
-#: ei386pe.c:465 ei386pe_posix.c:465 ei386pep.c:472 emcorepe.c:465 eshpe.c:465
+#: eaarch64pe.c:471 earm64pe.c:471 earm_wince_pe.c:467 earmpe.c:467
+#: ei386pe.c:467 ei386pe_posix.c:467 ei386pep.c:471 emcorepe.c:467 eshpe.c:467
#, c-format
msgid ""
" --[disable-]nxcompat Image is compatible with data "
@@ -4700,15 +4850,15 @@ msgid ""
" prevention\n"
msgstr ""
-#: eaarch64pe.c:473 earm64pe.c:473 earm_wince_pe.c:466 earmpe.c:466
-#: ei386pe.c:466 ei386pe_posix.c:466 ei386pep.c:473 emcorepe.c:466 eshpe.c:466
+#: eaarch64pe.c:472 earm64pe.c:472 earm_wince_pe.c:468 earmpe.c:468
+#: ei386pe.c:468 ei386pe_posix.c:468 ei386pep.c:472 emcorepe.c:468 eshpe.c:468
#, c-format
msgid ""
" --[disable-]no-isolation Image understands isolation but do not\n"
" isolate the image\n"
msgstr ""
-#: eaarch64pe.c:474 earm64pe.c:474 ei386pep.c:474
+#: eaarch64pe.c:473 earm64pe.c:473 ei386pep.c:473
#, c-format
msgid ""
" --[disable-]no-seh Image does not use SEH; no SE handler "
@@ -4716,123 +4866,129 @@ msgid ""
" be called in this image\n"
msgstr ""
-#: eaarch64pe.c:475 earm64pe.c:475 earm_wince_pe.c:468 earmpe.c:468
-#: ei386pe.c:468 ei386pe_posix.c:468 ei386pep.c:475 emcorepe.c:468 eshpe.c:468
+#: eaarch64pe.c:474 earm64pe.c:474 earm_wince_pe.c:470 earmpe.c:470
+#: ei386pe.c:470 ei386pe_posix.c:470 ei386pep.c:474 emcorepe.c:470 eshpe.c:470
#, c-format
msgid " --[disable-]no-bind Do not bind this image\n"
msgstr ""
-#: eaarch64pe.c:476 earm64pe.c:476 earm_wince_pe.c:469 earmpe.c:469
-#: ei386pe.c:469 ei386pe_posix.c:469 ei386pep.c:476 emcorepe.c:469 eshpe.c:469
+#: eaarch64pe.c:475 earm64pe.c:475 earm_wince_pe.c:471 earmpe.c:471
+#: ei386pe.c:471 ei386pe_posix.c:471 ei386pep.c:475 emcorepe.c:471 eshpe.c:471
#, c-format
msgid " --[disable-]wdmdriver Driver uses the WDM model\n"
msgstr ""
-#: eaarch64pe.c:477 earm64pe.c:477 earm_wince_pe.c:470 earmpe.c:470
-#: ei386pe.c:470 ei386pe_posix.c:470 ei386pep.c:477 emcorepe.c:470 eshpe.c:470
+#: eaarch64pe.c:476 earm64pe.c:476 earm_wince_pe.c:472 earmpe.c:472
+#: ei386pe.c:472 ei386pe_posix.c:472 ei386pep.c:476 emcorepe.c:472 eshpe.c:472
#, c-format
msgid " --[disable-]tsaware Image is Terminal Server aware\n"
msgstr ""
-#: eaarch64pe.c:478 earm64pe.c:478 earm_wince_pe.c:471 earmpe.c:471
-#: ei386pe.c:471 ei386pe_posix.c:471 ei386pep.c:478 emcorepe.c:471 eshpe.c:471
+#: eaarch64pe.c:477 earm64pe.c:477 earm_wince_pe.c:473 earmpe.c:473
+#: ei386pe.c:473 ei386pe_posix.c:473 ei386pep.c:477 emcorepe.c:473 eshpe.c:473
#, c-format
msgid " --build-id[=STYLE] Generate build ID\n"
msgstr ""
-#: eaarch64pe.c:480 earm64pe.c:480 earm_wince_pe.c:473 earmpe.c:473
-#: ei386pe.c:473 ei386pe_posix.c:473 ei386pep.c:480 emcorepe.c:473 eshpe.c:473
+#: eaarch64pe.c:479 earm64pe.c:479 earm_wince_pe.c:475 earmpe.c:475
+#: ei386pe.c:475 ei386pe_posix.c:475 ei386pep.c:479 emcorepe.c:475 eshpe.c:475
#, c-format
msgid " --pdb=[FILENAME] Generate PDB file\n"
msgstr ""
-#: eaarch64pe.c:606 earm64pe.c:606 earm_wince_pe.c:619 earmpe.c:619
-#: ei386beos.c:205 ei386pe.c:619 ei386pe_posix.c:619 ei386pep.c:606
-#: emcorepe.c:619 eshpe.c:619
+#: eaarch64pe.c:608 earm64pe.c:608 earm_wince_pe.c:624 earmpe.c:624
+#: ei386beos.c:205 ei386pe.c:624 ei386pe_posix.c:624 ei386pep.c:608
+#: emcorepe.c:624 eshpe.c:624
msgid "%P: warning: bad version number in -subsystem option\n"
msgstr ""
-#: eaarch64pe.c:631 earm64pe.c:631 earm_wince_pe.c:644 earmpe.c:644
-#: ei386beos.c:222 ei386pe.c:644 ei386pe_posix.c:644 ei386pep.c:631
-#: emcorepe.c:644 eshpe.c:644
+#: eaarch64pe.c:633 earm64pe.c:633 earm_wince_pe.c:649 earmpe.c:649
+#: ei386beos.c:222 ei386pe.c:649 ei386pe_posix.c:649 ei386pep.c:633
+#: emcorepe.c:649 eshpe.c:649
msgid "%F%P: invalid subsystem type %s\n"
msgstr ""
-#: eaarch64pe.c:652 earm64pe.c:652 earm_wince_pe.c:665 earmpe.c:665
-#: ei386beos.c:233 ei386pe.c:665 ei386pe_posix.c:665 ei386pep.c:652
-#: emcorepe.c:665 eshpe.c:665
+#: eaarch64pe.c:654 earm64pe.c:654 earm_wince_pe.c:670 earmpe.c:670
+#: ei386beos.c:233 ei386pe.c:670 ei386pe_posix.c:670 ei386pep.c:654
+#: emcorepe.c:670 eshpe.c:670
msgid "%F%P: invalid hex number for PE parameter '%s'\n"
msgstr ""
-#: eaarch64pe.c:669 earm64pe.c:669 earm_wince_pe.c:682 earmpe.c:682
-#: ei386beos.c:250 ei386pe.c:682 ei386pe_posix.c:682 ei386pep.c:669
-#: emcorepe.c:682 eshpe.c:682
+#: eaarch64pe.c:671 earm64pe.c:671 earm_wince_pe.c:687 earmpe.c:687
+#: ei386beos.c:250 ei386pe.c:687 ei386pe_posix.c:687 ei386pep.c:671
+#: emcorepe.c:687 eshpe.c:687
msgid "%F%P: strange hex info for PE parameter '%s'\n"
msgstr ""
-#: eaarch64pe.c:686 earm64pe.c:686 earm_wince_pe.c:698 earmpe.c:698
-#: eelf32mcore.c:319 ei386beos.c:266 ei386pe.c:698 ei386pe_posix.c:698
-#: ei386pep.c:686 emcorepe.c:698 eshpe.c:698
+#: eaarch64pe.c:688 earm64pe.c:688 earm_wince_pe.c:703 earmpe.c:703
+#: eelf32mcore.c:325 ei386beos.c:266 ei386pe.c:703 ei386pe_posix.c:703
+#: ei386pep.c:688 emcorepe.c:703 eshpe.c:703
msgid "%F%P: cannot open base file %s\n"
msgstr ""
-#: eaarch64pe.c:1003 earm64pe.c:1003 earm_wince_pe.c:1028 earmpe.c:1028
-#: ei386beos.c:362 ei386pe.c:1028 ei386pe_posix.c:1028 ei386pep.c:1003
-#: emcorepe.c:1028 eshpe.c:1028
+#: eaarch64pe.c:1005 earm64pe.c:1005 earm_wince_pe.c:1033 earmpe.c:1033
+#: ei386beos.c:362 ei386pe.c:1033 ei386pe_posix.c:1033 ei386pep.c:1005
+#: emcorepe.c:1033 eshpe.c:1033
msgid "%P: warning, file alignment > section alignment\n"
msgstr ""
-#: eaarch64pe.c:1016 earm64pe.c:1016 ei386pep.c:1016
+#: eaarch64pe.c:1018 earm64pe.c:1018 ei386pep.c:1018
msgid ""
"%P: warning: --export-dynamic is not supported for PE+ targets, did you mean "
"--export-all-symbols?\n"
msgstr ""
-#: eaarch64pe.c:1089 eaarch64pe.c:1116 earm64pe.c:1089 earm64pe.c:1116
-#: ei386pep.c:1089 ei386pep.c:1116
+#: eaarch64pe.c:1070 earm64pe.c:1070 earm_wince_pe.c:1127 earmpe.c:1127
+#: ei386pe.c:1127 ei386pe_posix.c:1127 ei386pep.c:1070 emcorepe.c:1127
+#: eshpe.c:1127
+msgid "%P: warning: overwriting decorated name %s with %s\n"
+msgstr ""
+
+#: eaarch64pe.c:1115 eaarch64pe.c:1143 earm64pe.c:1115 earm64pe.c:1143
+#: ei386pep.c:1115 ei386pep.c:1143
#, c-format
msgid "warning: resolving %s by linking to %s\n"
msgstr ""
-#: eaarch64pe.c:1094 eaarch64pe.c:1121 earm64pe.c:1094 earm64pe.c:1121
-#: earm_wince_pe.c:1096 earmpe.c:1096 ei386pe.c:1096 ei386pe_posix.c:1096
-#: ei386pep.c:1094 ei386pep.c:1121 emcorepe.c:1096 eshpe.c:1096
+#: eaarch64pe.c:1120 eaarch64pe.c:1148 earm64pe.c:1120 earm64pe.c:1148
+#: earm_wince_pe.c:1101 earmpe.c:1101 ei386pe.c:1101 ei386pe_posix.c:1101
+#: ei386pep.c:1120 ei386pep.c:1148 emcorepe.c:1101 eshpe.c:1101
msgid "Use --enable-stdcall-fixup to disable these warnings\n"
msgstr ""
-#: eaarch64pe.c:1095 eaarch64pe.c:1122 earm64pe.c:1095 earm64pe.c:1122
-#: earm_wince_pe.c:1097 earmpe.c:1097 ei386pe.c:1097 ei386pe_posix.c:1097
-#: ei386pep.c:1095 ei386pep.c:1122 emcorepe.c:1097 eshpe.c:1097
+#: eaarch64pe.c:1121 eaarch64pe.c:1149 earm64pe.c:1121 earm64pe.c:1149
+#: earm_wince_pe.c:1102 earmpe.c:1102 ei386pe.c:1102 ei386pe_posix.c:1102
+#: ei386pep.c:1121 ei386pep.c:1149 emcorepe.c:1102 eshpe.c:1102
msgid "Use --disable-stdcall-fixup to disable these fixups\n"
msgstr ""
-#: eaarch64pe.c:1173 earm64pe.c:1173 earm_wince_pe.c:1166 earmpe.c:1166
-#: ei386pe.c:1166 ei386pe_posix.c:1166 ei386pep.c:1173 emcorepe.c:1166
-#: eshpe.c:1166
-msgid "%P: %C: cannot get section contents - auto-import exception\n"
+#: eaarch64pe.c:1204 earm64pe.c:1204 earm_wince_pe.c:1193 earmpe.c:1193
+#: ei386pe.c:1193 ei386pe_posix.c:1193 ei386pep.c:1204 emcorepe.c:1193
+#: eshpe.c:1193
+msgid "%P: %H: cannot get section contents - auto-import exception\n"
msgstr ""
-#: eaarch64pe.c:1267 earm64pe.c:1267 earm_wince_pe.c:1251 earmpe.c:1251
-#: ei386pe.c:1251 ei386pe_posix.c:1251 ei386pep.c:1267 emcorepe.c:1251
-#: eshpe.c:1251
+#: eaarch64pe.c:1334 earm64pe.c:1334 earm_wince_pe.c:1324 earmpe.c:1324
+#: ei386pe.c:1324 ei386pe_posix.c:1324 ei386pep.c:1334 emcorepe.c:1324
+#: eshpe.c:1324
msgid "%P: warning: .buildid section discarded, --build-id ignored\n"
msgstr ""
-#: eaarch64pe.c:1385 earm64pe.c:1385 earm_wince_pe.c:1369 earmpe.c:1369
-#: ei386pe.c:1369 ei386pe_posix.c:1369 ei386pep.c:1385 emcorepe.c:1369
-#: eshpe.c:1369
+#: eaarch64pe.c:1455 earm64pe.c:1455 earm_wince_pe.c:1445 earmpe.c:1445
+#: ei386pe.c:1445 ei386pe_posix.c:1445 ei386pep.c:1455 emcorepe.c:1445
+#: eshpe.c:1445
msgid "%P: warning: cannot create .buildid section, --build-id ignored\n"
msgstr ""
-#: eaarch64pe.c:1461 earm64pe.c:1461 earm_wince_pe.c:1444 earmpe.c:1444
-#: ei386pe.c:1444 ei386pe_posix.c:1444 ei386pep.c:1461 emcorepe.c:1444
-#: eshpe.c:1444
+#: eaarch64pe.c:1541 earm64pe.c:1541 earm_wince_pe.c:1530 earmpe.c:1530
+#: ei386pe.c:1530 ei386pe_posix.c:1530 ei386pep.c:1541 emcorepe.c:1530
+#: eshpe.c:1530
msgid "%F%P: cannot perform PE operations on non PE output file '%pB'\n"
msgstr ""
-#: eaarch64pe.c:1585 earm64pe.c:1585 earm_wince_pe.c:1587 earmpe.c:1587
-#: ei386pe.c:1587 ei386pe_posix.c:1587 ei386pep.c:1585 emcorepe.c:1587
-#: eshpe.c:1587
+#: eaarch64pe.c:1665 earm64pe.c:1665 earm_wince_pe.c:1673 earmpe.c:1673
+#: ei386pe.c:1673 ei386pe_posix.c:1673 ei386pep.c:1665 emcorepe.c:1673
+#: eshpe.c:1673
msgid "%X%P: unable to process relocs: %E\n"
msgstr ""
@@ -4963,38 +5119,38 @@ msgstr ""
msgid "%F%P: can not init BFD: %E\n"
msgstr ""
-#: ealphavms.c:167 eelf64_ia64_vms.c:167
+#: ealphavms.c:168 eelf64_ia64_vms.c:168
#, c-format
msgid ""
" --identification <string> Set the identification of the output\n"
msgstr ""
-#: earm_wince_pe.c:430 earmpe.c:430 ei386pe.c:430 ei386pe_posix.c:430
-#: emcorepe.c:430 eshpe.c:430
+#: earm_wince_pe.c:432 earmpe.c:432 ei386pe.c:432 ei386pe_posix.c:432
+#: emcorepe.c:432 eshpe.c:432
#, c-format
msgid ""
" --thumb-entry=<symbol> Set the entry point to be Thumb "
"<symbol>\n"
msgstr ""
-#: earm_wince_pe.c:431 earmpe.c:431 ei386pe.c:431 ei386pe_posix.c:431
-#: emcorepe.c:431 eshpe.c:431
+#: earm_wince_pe.c:433 earmpe.c:433 ei386pe.c:433 ei386pe_posix.c:433
+#: emcorepe.c:433 eshpe.c:433
#, c-format
msgid ""
" --[no-]insert-timestamp Use a real timestamp rather than zero "
"(default).\n"
msgstr ""
-#: earm_wince_pe.c:442 earmpe.c:442 ei386pe.c:442 ei386pe_posix.c:442
-#: emcorepe.c:442 eshpe.c:442
+#: earm_wince_pe.c:444 earmpe.c:444 ei386pe.c:444 ei386pe_posix.c:444
+#: emcorepe.c:444 eshpe.c:444
#, c-format
msgid ""
" export, place into import library "
"instead.\n"
msgstr ""
-#: earm_wince_pe.c:447 earmpe.c:447 ei386pe.c:447 ei386pe_posix.c:447
-#: emcorepe.c:447 eshpe.c:447
+#: earm_wince_pe.c:449 earmpe.c:449 ei386pe.c:449 ei386pe_posix.c:449
+#: emcorepe.c:449 eshpe.c:449
#, c-format
msgid ""
" --compat-implib Create backward compatible import "
@@ -5002,8 +5158,8 @@ msgid ""
" create __imp_<SYMBOL> as well.\n"
msgstr ""
-#: earm_wince_pe.c:448 earmpe.c:448 ei386pe.c:448 ei386pe_posix.c:448
-#: emcorepe.c:448 eshpe.c:448
+#: earm_wince_pe.c:450 earmpe.c:450 ei386pe.c:450 ei386pe_posix.c:450
+#: emcorepe.c:450 eshpe.c:450
#, c-format
msgid ""
" --enable-auto-image-base[=<address>] Automatically choose image base for "
@@ -5013,16 +5169,16 @@ msgid ""
" specifically set with --image-base\n"
msgstr ""
-#: earm_wince_pe.c:449 earmpe.c:449 ei386pe.c:449 ei386pe_posix.c:449
-#: emcorepe.c:449 eshpe.c:449
+#: earm_wince_pe.c:451 earmpe.c:451 ei386pe.c:451 ei386pe_posix.c:451
+#: emcorepe.c:451 eshpe.c:451
#, c-format
msgid ""
" --disable-auto-image-base Do not auto-choose image base. "
"(default)\n"
msgstr ""
-#: earm_wince_pe.c:453 earmpe.c:453 ei386pe.c:453 ei386pe_posix.c:453
-#: emcorepe.c:453 eshpe.c:453
+#: earm_wince_pe.c:455 earmpe.c:455 ei386pe.c:455 ei386pe_posix.c:455
+#: emcorepe.c:455 eshpe.c:455
#, c-format
msgid ""
" --enable-runtime-pseudo-reloc Work around auto-import limitations by\n"
@@ -5031,8 +5187,8 @@ msgid ""
" runtime.\n"
msgstr ""
-#: earm_wince_pe.c:454 earmpe.c:454 ei386pe.c:454 ei386pe_posix.c:454
-#: emcorepe.c:454 eshpe.c:454
+#: earm_wince_pe.c:456 earmpe.c:456 ei386pe.c:456 ei386pe_posix.c:456
+#: emcorepe.c:456 eshpe.c:456
#, c-format
msgid ""
" --disable-runtime-pseudo-reloc Do not add runtime pseudo-relocations "
@@ -5040,8 +5196,8 @@ msgid ""
" auto-imported DATA.\n"
msgstr ""
-#: earm_wince_pe.c:455 earmpe.c:455 ei386pe.c:455 ei386pe_posix.c:455
-#: emcorepe.c:455 eshpe.c:455
+#: earm_wince_pe.c:457 earmpe.c:457 ei386pe.c:457 ei386pe_posix.c:457
+#: emcorepe.c:457 eshpe.c:457
#, c-format
msgid ""
" --enable-extra-pe-debug Enable verbose debug output when "
@@ -5050,24 +5206,24 @@ msgid ""
"import)\n"
msgstr ""
-#: earm_wince_pe.c:457 earmpe.c:457 ei386pe.c:457 ei386pe_posix.c:457
-#: emcorepe.c:457 eshpe.c:457
+#: earm_wince_pe.c:459 earmpe.c:459 ei386pe.c:459 ei386pe_posix.c:459
+#: emcorepe.c:459 eshpe.c:459
#, c-format
msgid ""
" --large-address-aware Executable supports virtual addresses\n"
" greater than 2 gigabytes\n"
msgstr ""
-#: earm_wince_pe.c:458 earmpe.c:458 ei386pe.c:458 ei386pe_posix.c:458
-#: emcorepe.c:458 eshpe.c:458
+#: earm_wince_pe.c:460 earmpe.c:460 ei386pe.c:460 ei386pe_posix.c:460
+#: emcorepe.c:460 eshpe.c:460
#, c-format
msgid ""
" --disable-large-address-aware Executable does not support virtual\n"
" addresses greater than 2 gigabytes\n"
msgstr ""
-#: earm_wince_pe.c:467 earmpe.c:467 ei386pe.c:467 ei386pe_posix.c:467
-#: emcorepe.c:467 eshpe.c:467
+#: earm_wince_pe.c:469 earmpe.c:469 ei386pe.c:469 ei386pe_posix.c:469
+#: emcorepe.c:469 eshpe.c:469
#, c-format
msgid ""
" --[disable-]no-seh Image does not use SEH. No SE handler "
@@ -5075,43 +5231,43 @@ msgid ""
" be called in this image\n"
msgstr ""
-#: earm_wince_pe.c:1041 earmpe.c:1041 ei386pe.c:1041 ei386pe_posix.c:1041
-#: emcorepe.c:1041 eshpe.c:1041
+#: earm_wince_pe.c:1046 earmpe.c:1046 ei386pe.c:1046 ei386pe_posix.c:1046
+#: emcorepe.c:1046 eshpe.c:1046
msgid ""
"%P: warning: --export-dynamic is not supported for PE targets, did you mean "
"--export-all-symbols?\n"
msgstr ""
-#: earm_wince_pe.c:1091 earmpe.c:1091 ei386pe.c:1091 ei386pe_posix.c:1091
-#: emcorepe.c:1091 eshpe.c:1091
+#: earm_wince_pe.c:1096 earmpe.c:1096 ei386pe.c:1096 ei386pe_posix.c:1096
+#: emcorepe.c:1096 eshpe.c:1096
msgid "%P: warning: resolving %s by linking to %s\n"
msgstr ""
-#: earm_wince_pe.c:1796 earmpe.c:1796 ei386pe.c:1796 ei386pe_posix.c:1796
-#: emcorepe.c:1796 eshpe.c:1796
+#: earm_wince_pe.c:1882 earmpe.c:1882 ei386pe.c:1882 ei386pe_posix.c:1882
+#: emcorepe.c:1882 eshpe.c:1882
#, c-format
msgid "%P: errors encountered processing file %s for interworking\n"
msgstr ""
-#: earm_wince_pe.c:1960 earmelf.c:523 earmelf_fbsd.c:523 earmelf_fuchsia.c:524
+#: earm_wince_pe.c:2046 earmelf.c:523 earmelf_fbsd.c:523 earmelf_fuchsia.c:524
#: earmelf_haiku.c:524 earmelf_linux.c:524 earmelf_linux_eabi.c:524
#: earmelf_linux_fdpiceabi.c:524 earmelf_nacl.c:524 earmelf_nbsd.c:523
#: earmelf_phoenix.c:524 earmelf_vxworks.c:523 earmelfb.c:523
#: earmelfb_fbsd.c:523 earmelfb_fuchsia.c:524 earmelfb_linux.c:524
#: earmelfb_linux_eabi.c:524 earmelfb_linux_fdpiceabi.c:524
-#: earmelfb_nacl.c:524 earmelfb_nbsd.c:523 earmnto.c:523 earmpe.c:1960
-#: ei386pe.c:1960 ei386pe_posix.c:1960 emcorepe.c:1960 eshpe.c:1960
+#: earmelfb_nacl.c:524 earmelfb_nbsd.c:523 earmnto.c:523 earmpe.c:2046
+#: ei386pe.c:2046 ei386pe_posix.c:2046 emcorepe.c:2046 eshpe.c:2046
msgid "%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"
msgstr ""
-#: earm_wince_pe.c:1965 earmelf.c:528 earmelf_fbsd.c:528 earmelf_fuchsia.c:529
+#: earm_wince_pe.c:2051 earmelf.c:528 earmelf_fbsd.c:528 earmelf_fuchsia.c:529
#: earmelf_haiku.c:529 earmelf_linux.c:529 earmelf_linux_eabi.c:529
#: earmelf_linux_fdpiceabi.c:529 earmelf_nacl.c:529 earmelf_nbsd.c:528
#: earmelf_phoenix.c:529 earmelf_vxworks.c:528 earmelfb.c:528
#: earmelfb_fbsd.c:528 earmelfb_fuchsia.c:529 earmelfb_linux.c:529
#: earmelfb_linux_eabi.c:529 earmelfb_linux_fdpiceabi.c:529
-#: earmelfb_nacl.c:529 earmelfb_nbsd.c:528 earmnto.c:528 earmpe.c:1965
-#: ei386pe.c:1965 ei386pe_posix.c:1965 emcorepe.c:1965 eshpe.c:1965
+#: earmelfb_nacl.c:529 earmelfb_nbsd.c:528 earmnto.c:528 earmpe.c:2051
+#: ei386pe.c:2051 ei386pe_posix.c:2051 emcorepe.c:2051 eshpe.c:2051
msgid "%P: warning: cannot find thumb start symbol %s\n"
msgstr ""
@@ -5146,71 +5302,26 @@ msgstr ""
msgid "%F%P: %s: not a relocatable file: %E\n"
msgstr ""
-#: earmelf.c:1069 earmelf_fbsd.c:1069 earmelf_fuchsia.c:1074
-#: earmelf_haiku.c:1074 earmelf_linux.c:1074 earmelf_linux_eabi.c:1074
-#: earmelf_linux_fdpiceabi.c:1074 earmelf_nacl.c:1074 earmelf_nbsd.c:1069
-#: earmelf_phoenix.c:1074 earmelf_vxworks.c:1105 earmelfb.c:1069
-#: earmelfb_fbsd.c:1069 earmelfb_fuchsia.c:1074 earmelfb_linux.c:1074
-#: earmelfb_linux_eabi.c:1074 earmelfb_linux_fdpiceabi.c:1074
-#: earmelfb_nacl.c:1074 earmelfb_nbsd.c:1069 earmnto.c:1044
+#: earmelf.c:1073 earmelf_fbsd.c:1073 earmelf_fuchsia.c:1078
+#: earmelf_haiku.c:1078 earmelf_linux.c:1078 earmelf_linux_eabi.c:1078
+#: earmelf_linux_fdpiceabi.c:1078 earmelf_nacl.c:1078 earmelf_nbsd.c:1073
+#: earmelf_phoenix.c:1078 earmelf_vxworks.c:1109 earmelfb.c:1073
+#: earmelfb_fbsd.c:1073 earmelfb_fuchsia.c:1078 earmelfb_linux.c:1078
+#: earmelfb_linux_eabi.c:1078 earmelfb_linux_fdpiceabi.c:1078
+#: earmelfb_nacl.c:1078 earmelfb_nbsd.c:1073 earmnto.c:1048
msgid "%P: unrecognized VFP11 fix type '%s'\n"
msgstr ""
-#: earmelf.c:1082 earmelf_fbsd.c:1082 earmelf_fuchsia.c:1087
-#: earmelf_haiku.c:1087 earmelf_linux.c:1087 earmelf_linux_eabi.c:1087
-#: earmelf_linux_fdpiceabi.c:1087 earmelf_nacl.c:1087 earmelf_nbsd.c:1082
-#: earmelf_phoenix.c:1087 earmelf_vxworks.c:1118 earmelfb.c:1082
-#: earmelfb_fbsd.c:1082 earmelfb_fuchsia.c:1087 earmelfb_linux.c:1087
-#: earmelfb_linux_eabi.c:1087 earmelfb_linux_fdpiceabi.c:1087
-#: earmelfb_nacl.c:1087 earmelfb_nbsd.c:1082 earmnto.c:1057
+#: earmelf.c:1086 earmelf_fbsd.c:1086 earmelf_fuchsia.c:1091
+#: earmelf_haiku.c:1091 earmelf_linux.c:1091 earmelf_linux_eabi.c:1091
+#: earmelf_linux_fdpiceabi.c:1091 earmelf_nacl.c:1091 earmelf_nbsd.c:1086
+#: earmelf_phoenix.c:1091 earmelf_vxworks.c:1122 earmelfb.c:1086
+#: earmelfb_fbsd.c:1086 earmelfb_fuchsia.c:1091 earmelfb_linux.c:1091
+#: earmelfb_linux_eabi.c:1091 earmelfb_linux_fdpiceabi.c:1091
+#: earmelfb_nacl.c:1091 earmelfb_nbsd.c:1086 earmnto.c:1061
msgid "%P: unrecognized STM32L4XX fix type '%s'\n"
msgstr ""
-#: earmelf.c:1149 earmelf_fbsd.c:1149 earmelf_fuchsia.c:1154
-#: earmelf_haiku.c:1154 earmelf_linux.c:1154 earmelf_linux_eabi.c:1154
-#: earmelf_linux_fdpiceabi.c:1154 earmelf_nacl.c:1154 earmelf_nbsd.c:1149
-#: earmelf_phoenix.c:1154 earmelf_vxworks.c:1189 earmelfb.c:1149
-#: earmelfb_fbsd.c:1149 earmelfb_fuchsia.c:1154 earmelfb_linux.c:1154
-#: earmelfb_linux_eabi.c:1154 earmelfb_linux_fdpiceabi.c:1154
-#: earmelfb_nacl.c:1154 earmelfb_nbsd.c:1149 earmnto.c:1124
-#, c-format
-msgid ""
-" --thumb-entry=<sym> Set the entry point to be Thumb symbol <sym>\n"
-msgstr ""
-
-#: earmelf.c:1150 earmelf_fbsd.c:1150 earmelf_fuchsia.c:1155
-#: earmelf_haiku.c:1155 earmelf_linux.c:1155 earmelf_linux_eabi.c:1155
-#: earmelf_linux_fdpiceabi.c:1155 earmelf_nacl.c:1155 earmelf_nbsd.c:1150
-#: earmelf_phoenix.c:1155 earmelf_vxworks.c:1190 earmelfb.c:1150
-#: earmelfb_fbsd.c:1150 earmelfb_fuchsia.c:1155 earmelfb_linux.c:1155
-#: earmelfb_linux_eabi.c:1155 earmelfb_linux_fdpiceabi.c:1155
-#: earmelfb_nacl.c:1155 earmelfb_nbsd.c:1150 earmnto.c:1125
-#, c-format
-msgid " --be8 Output BE8 format image\n"
-msgstr ""
-
-#: earmelf.c:1151 earmelf_fbsd.c:1151 earmelf_fuchsia.c:1156
-#: earmelf_haiku.c:1156 earmelf_linux.c:1156 earmelf_linux_eabi.c:1156
-#: earmelf_linux_fdpiceabi.c:1156 earmelf_nacl.c:1156 earmelf_nbsd.c:1151
-#: earmelf_phoenix.c:1156 earmelf_vxworks.c:1191 earmelfb.c:1151
-#: earmelfb_fbsd.c:1151 earmelfb_fuchsia.c:1156 earmelfb_linux.c:1156
-#: earmelfb_linux_eabi.c:1156 earmelfb_linux_fdpiceabi.c:1156
-#: earmelfb_nacl.c:1156 earmelfb_nbsd.c:1151 earmnto.c:1126
-#, c-format
-msgid " --target1-rel Interpret R_ARM_TARGET1 as R_ARM_REL32\n"
-msgstr ""
-
-#: earmelf.c:1152 earmelf_fbsd.c:1152 earmelf_fuchsia.c:1157
-#: earmelf_haiku.c:1157 earmelf_linux.c:1157 earmelf_linux_eabi.c:1157
-#: earmelf_linux_fdpiceabi.c:1157 earmelf_nacl.c:1157 earmelf_nbsd.c:1152
-#: earmelf_phoenix.c:1157 earmelf_vxworks.c:1192 earmelfb.c:1152
-#: earmelfb_fbsd.c:1152 earmelfb_fuchsia.c:1157 earmelfb_linux.c:1157
-#: earmelfb_linux_eabi.c:1157 earmelfb_linux_fdpiceabi.c:1157
-#: earmelfb_nacl.c:1157 earmelfb_nbsd.c:1152 earmnto.c:1127
-#, c-format
-msgid " --target1-abs Interpret R_ARM_TARGET1 as R_ARM_ABS32\n"
-msgstr ""
-
#: earmelf.c:1153 earmelf_fbsd.c:1153 earmelf_fuchsia.c:1158
#: earmelf_haiku.c:1158 earmelf_linux.c:1158 earmelf_linux_eabi.c:1158
#: earmelf_linux_fdpiceabi.c:1158 earmelf_nacl.c:1158 earmelf_nbsd.c:1153
@@ -5219,7 +5330,8 @@ msgstr ""
#: earmelfb_linux_eabi.c:1158 earmelfb_linux_fdpiceabi.c:1158
#: earmelfb_nacl.c:1158 earmelfb_nbsd.c:1153 earmnto.c:1128
#, c-format
-msgid " --target2=<type> Specify definition of R_ARM_TARGET2\n"
+msgid ""
+" --thumb-entry=<sym> Set the entry point to be Thumb symbol <sym>\n"
msgstr ""
#: earmelf.c:1154 earmelf_fbsd.c:1154 earmelf_fuchsia.c:1159
@@ -5230,7 +5342,7 @@ msgstr ""
#: earmelfb_linux_eabi.c:1159 earmelfb_linux_fdpiceabi.c:1159
#: earmelfb_nacl.c:1159 earmelfb_nbsd.c:1154 earmnto.c:1129
#, c-format
-msgid " --fix-v4bx Rewrite BX rn as MOV pc, rn for ARMv4\n"
+msgid " --be8 Output BE8 format image\n"
msgstr ""
#: earmelf.c:1155 earmelf_fbsd.c:1155 earmelf_fuchsia.c:1160
@@ -5241,9 +5353,7 @@ msgstr ""
#: earmelfb_linux_eabi.c:1160 earmelfb_linux_fdpiceabi.c:1160
#: earmelfb_nacl.c:1160 earmelfb_nbsd.c:1155 earmnto.c:1130
#, c-format
-msgid ""
-" --fix-v4bx-interworking Rewrite BX rn branch to ARMv4 interworking "
-"veneer\n"
+msgid " --target1-rel Interpret R_ARM_TARGET1 as R_ARM_REL32\n"
msgstr ""
#: earmelf.c:1156 earmelf_fbsd.c:1156 earmelf_fuchsia.c:1161
@@ -5254,7 +5364,7 @@ msgstr ""
#: earmelfb_linux_eabi.c:1161 earmelfb_linux_fdpiceabi.c:1161
#: earmelfb_nacl.c:1161 earmelfb_nbsd.c:1156 earmnto.c:1131
#, c-format
-msgid " --use-blx Enable use of BLX instructions\n"
+msgid " --target1-abs Interpret R_ARM_TARGET1 as R_ARM_ABS32\n"
msgstr ""
#: earmelf.c:1157 earmelf_fbsd.c:1157 earmelf_fuchsia.c:1162
@@ -5265,7 +5375,7 @@ msgstr ""
#: earmelfb_linux_eabi.c:1162 earmelfb_linux_fdpiceabi.c:1162
#: earmelfb_nacl.c:1162 earmelfb_nbsd.c:1157 earmnto.c:1132
#, c-format
-msgid " --vfp11-denorm-fix Specify how to fix VFP11 denorm erratum\n"
+msgid " --target2=<type> Specify definition of R_ARM_TARGET2\n"
msgstr ""
#: earmelf.c:1158 earmelf_fbsd.c:1158 earmelf_fuchsia.c:1163
@@ -5276,35 +5386,54 @@ msgstr ""
#: earmelfb_linux_eabi.c:1163 earmelfb_linux_fdpiceabi.c:1163
#: earmelfb_nacl.c:1163 earmelfb_nbsd.c:1158 earmnto.c:1133
#, c-format
-msgid ""
-" --fix-stm32l4xx-629360 Specify how to fix STM32L4XX 629360 erratum\n"
+msgid " --fix-v4bx Rewrite BX rn as MOV pc, rn for ARMv4\n"
msgstr ""
-#: earmelf.c:1164 earmelf_fbsd.c:1164 earmelf_fuchsia.c:1169
-#: earmelf_haiku.c:1169 earmelf_linux.c:1169 earmelf_linux_eabi.c:1169
-#: earmelf_linux_fdpiceabi.c:1169 earmelf_nacl.c:1169 earmelf_nbsd.c:1164
-#: earmelf_phoenix.c:1169 earmelf_vxworks.c:1204 earmelfb.c:1164
-#: earmelfb_fbsd.c:1164 earmelfb_fuchsia.c:1169 earmelfb_linux.c:1169
-#: earmelfb_linux_eabi.c:1169 earmelfb_linux_fdpiceabi.c:1169
-#: earmelfb_nacl.c:1169 earmelfb_nbsd.c:1164 earmnto.c:1139
+#: earmelf.c:1159 earmelf_fbsd.c:1159 earmelf_fuchsia.c:1164
+#: earmelf_haiku.c:1164 earmelf_linux.c:1164 earmelf_linux_eabi.c:1164
+#: earmelf_linux_fdpiceabi.c:1164 earmelf_nacl.c:1164 earmelf_nbsd.c:1159
+#: earmelf_phoenix.c:1164 earmelf_vxworks.c:1199 earmelfb.c:1159
+#: earmelfb_fbsd.c:1159 earmelfb_fuchsia.c:1164 earmelfb_linux.c:1164
+#: earmelfb_linux_eabi.c:1164 earmelfb_linux_fdpiceabi.c:1164
+#: earmelfb_nacl.c:1164 earmelfb_nbsd.c:1159 earmnto.c:1134
#, c-format
msgid ""
-" --long-plt Generate long .plt entries\n"
-" to handle large .plt/.got displacements\n"
+" --fix-v4bx-interworking Rewrite BX rn branch to ARMv4 interworking "
+"veneer\n"
+msgstr ""
+
+#: earmelf.c:1160 earmelf_fbsd.c:1160 earmelf_fuchsia.c:1165
+#: earmelf_haiku.c:1165 earmelf_linux.c:1165 earmelf_linux_eabi.c:1165
+#: earmelf_linux_fdpiceabi.c:1165 earmelf_nacl.c:1165 earmelf_nbsd.c:1160
+#: earmelf_phoenix.c:1165 earmelf_vxworks.c:1200 earmelfb.c:1160
+#: earmelfb_fbsd.c:1160 earmelfb_fuchsia.c:1165 earmelfb_linux.c:1165
+#: earmelfb_linux_eabi.c:1165 earmelfb_linux_fdpiceabi.c:1165
+#: earmelfb_nacl.c:1165 earmelfb_nbsd.c:1160 earmnto.c:1135
+#, c-format
+msgid " --use-blx Enable use of BLX instructions\n"
msgstr ""
-#: earmelf.c:1166 earmelf_fbsd.c:1166 earmelf_fuchsia.c:1171
-#: earmelf_haiku.c:1171 earmelf_linux.c:1171 earmelf_linux_eabi.c:1171
-#: earmelf_linux_fdpiceabi.c:1171 earmelf_nacl.c:1171 earmelf_nbsd.c:1166
-#: earmelf_phoenix.c:1171 earmelf_vxworks.c:1206 earmelfb.c:1166
-#: earmelfb_fbsd.c:1166 earmelfb_fuchsia.c:1171 earmelfb_linux.c:1171
-#: earmelfb_linux_eabi.c:1171 earmelfb_linux_fdpiceabi.c:1171
-#: earmelfb_nacl.c:1171 earmelfb_nbsd.c:1166 earmnto.c:1141
+#: earmelf.c:1161 earmelf_fbsd.c:1161 earmelf_fuchsia.c:1166
+#: earmelf_haiku.c:1166 earmelf_linux.c:1166 earmelf_linux_eabi.c:1166
+#: earmelf_linux_fdpiceabi.c:1166 earmelf_nacl.c:1166 earmelf_nbsd.c:1161
+#: earmelf_phoenix.c:1166 earmelf_vxworks.c:1201 earmelfb.c:1161
+#: earmelfb_fbsd.c:1161 earmelfb_fuchsia.c:1166 earmelfb_linux.c:1166
+#: earmelfb_linux_eabi.c:1166 earmelfb_linux_fdpiceabi.c:1166
+#: earmelfb_nacl.c:1166 earmelfb_nbsd.c:1161 earmnto.c:1136
+#, c-format
+msgid " --vfp11-denorm-fix Specify how to fix VFP11 denorm erratum\n"
+msgstr ""
+
+#: earmelf.c:1162 earmelf_fbsd.c:1162 earmelf_fuchsia.c:1167
+#: earmelf_haiku.c:1167 earmelf_linux.c:1167 earmelf_linux_eabi.c:1167
+#: earmelf_linux_fdpiceabi.c:1167 earmelf_nacl.c:1167 earmelf_nbsd.c:1162
+#: earmelf_phoenix.c:1167 earmelf_vxworks.c:1202 earmelfb.c:1162
+#: earmelfb_fbsd.c:1162 earmelfb_fuchsia.c:1167 earmelfb_linux.c:1167
+#: earmelfb_linux_eabi.c:1167 earmelfb_linux_fdpiceabi.c:1167
+#: earmelfb_nacl.c:1167 earmelfb_nbsd.c:1162 earmnto.c:1137
#, c-format
msgid ""
-" --cmse-implib Make import library to be a secure gateway "
-"import\n"
-" library as per ARMv8-M Security Extensions\n"
+" --fix-stm32l4xx-629360 Specify how to fix STM32L4XX 629360 erratum\n"
msgstr ""
#: earmelf.c:1168 earmelf_fbsd.c:1168 earmelf_fuchsia.c:1173
@@ -5316,41 +5445,68 @@ msgstr ""
#: earmelfb_nacl.c:1173 earmelfb_nbsd.c:1168 earmnto.c:1143
#, c-format
msgid ""
+" --long-plt Generate long .plt entries\n"
+" to handle large .plt/.got displacements\n"
+msgstr ""
+
+#: earmelf.c:1170 earmelf_fbsd.c:1170 earmelf_fuchsia.c:1175
+#: earmelf_haiku.c:1175 earmelf_linux.c:1175 earmelf_linux_eabi.c:1175
+#: earmelf_linux_fdpiceabi.c:1175 earmelf_nacl.c:1175 earmelf_nbsd.c:1170
+#: earmelf_phoenix.c:1175 earmelf_vxworks.c:1210 earmelfb.c:1170
+#: earmelfb_fbsd.c:1170 earmelfb_fuchsia.c:1175 earmelfb_linux.c:1175
+#: earmelfb_linux_eabi.c:1175 earmelfb_linux_fdpiceabi.c:1175
+#: earmelfb_nacl.c:1175 earmelfb_nbsd.c:1170 earmnto.c:1145
+#, c-format
+msgid ""
+" --cmse-implib Make import library to be a secure gateway "
+"import\n"
+" library as per ARMv8-M Security Extensions\n"
+msgstr ""
+
+#: earmelf.c:1172 earmelf_fbsd.c:1172 earmelf_fuchsia.c:1177
+#: earmelf_haiku.c:1177 earmelf_linux.c:1177 earmelf_linux_eabi.c:1177
+#: earmelf_linux_fdpiceabi.c:1177 earmelf_nacl.c:1177 earmelf_nbsd.c:1172
+#: earmelf_phoenix.c:1177 earmelf_vxworks.c:1212 earmelfb.c:1172
+#: earmelfb_fbsd.c:1172 earmelfb_fuchsia.c:1177 earmelfb_linux.c:1177
+#: earmelfb_linux_eabi.c:1177 earmelfb_linux_fdpiceabi.c:1177
+#: earmelfb_nacl.c:1177 earmelfb_nbsd.c:1172 earmnto.c:1147
+#, c-format
+msgid ""
" --in-implib Import library whose symbols address must\n"
" remain stable\n"
msgstr ""
-#: earmelf.c:1179 earmelf_fbsd.c:1179 earmelf_fuchsia.c:1184
-#: earmelf_haiku.c:1184 earmelf_linux.c:1184 earmelf_linux_eabi.c:1184
-#: earmelf_linux_fdpiceabi.c:1184 earmelf_nacl.c:1184 earmelf_nbsd.c:1179
-#: earmelf_phoenix.c:1184 earmelf_vxworks.c:1219 earmelfb.c:1179
-#: earmelfb_fbsd.c:1179 earmelfb_fuchsia.c:1184 earmelfb_linux.c:1184
-#: earmelfb_linux_eabi.c:1184 earmelfb_linux_fdpiceabi.c:1184
-#: earmelfb_nacl.c:1184 earmelfb_nbsd.c:1179 earmnto.c:1154
+#: earmelf.c:1183 earmelf_fbsd.c:1183 earmelf_fuchsia.c:1188
+#: earmelf_haiku.c:1188 earmelf_linux.c:1188 earmelf_linux_eabi.c:1188
+#: earmelf_linux_fdpiceabi.c:1188 earmelf_nacl.c:1188 earmelf_nbsd.c:1183
+#: earmelf_phoenix.c:1188 earmelf_vxworks.c:1223 earmelfb.c:1183
+#: earmelfb_fbsd.c:1183 earmelfb_fuchsia.c:1188 earmelfb_linux.c:1188
+#: earmelfb_linux_eabi.c:1188 earmelfb_linux_fdpiceabi.c:1188
+#: earmelfb_nacl.c:1188 earmelfb_nbsd.c:1183 earmnto.c:1158
#, c-format
msgid ""
" --[no-]fix-cortex-a8 Disable/enable Cortex-A8 Thumb-2 branch "
"erratum fix\n"
msgstr ""
-#: earmelf.c:1180 earmelf_fbsd.c:1180 earmelf_fuchsia.c:1185
-#: earmelf_haiku.c:1185 earmelf_linux.c:1185 earmelf_linux_eabi.c:1185
-#: earmelf_linux_fdpiceabi.c:1185 earmelf_nacl.c:1185 earmelf_nbsd.c:1180
-#: earmelf_phoenix.c:1185 earmelf_vxworks.c:1220 earmelfb.c:1180
-#: earmelfb_fbsd.c:1180 earmelfb_fuchsia.c:1185 earmelfb_linux.c:1185
-#: earmelfb_linux_eabi.c:1185 earmelfb_linux_fdpiceabi.c:1185
-#: earmelfb_nacl.c:1185 earmelfb_nbsd.c:1180 earmnto.c:1155
+#: earmelf.c:1184 earmelf_fbsd.c:1184 earmelf_fuchsia.c:1189
+#: earmelf_haiku.c:1189 earmelf_linux.c:1189 earmelf_linux_eabi.c:1189
+#: earmelf_linux_fdpiceabi.c:1189 earmelf_nacl.c:1189 earmelf_nbsd.c:1184
+#: earmelf_phoenix.c:1189 earmelf_vxworks.c:1224 earmelfb.c:1184
+#: earmelfb_fbsd.c:1184 earmelfb_fuchsia.c:1189 earmelfb_linux.c:1189
+#: earmelfb_linux_eabi.c:1189 earmelfb_linux_fdpiceabi.c:1189
+#: earmelfb_nacl.c:1189 earmelfb_nbsd.c:1184 earmnto.c:1159
#, c-format
msgid " --no-merge-exidx-entries Disable merging exidx entries\n"
msgstr ""
-#: earmelf.c:1181 earmelf_fbsd.c:1181 earmelf_fuchsia.c:1186
-#: earmelf_haiku.c:1186 earmelf_linux.c:1186 earmelf_linux_eabi.c:1186
-#: earmelf_linux_fdpiceabi.c:1186 earmelf_nacl.c:1186 earmelf_nbsd.c:1181
-#: earmelf_phoenix.c:1186 earmelf_vxworks.c:1221 earmelfb.c:1181
-#: earmelfb_fbsd.c:1181 earmelfb_fuchsia.c:1186 earmelfb_linux.c:1186
-#: earmelfb_linux_eabi.c:1186 earmelfb_linux_fdpiceabi.c:1186
-#: earmelfb_nacl.c:1186 earmelfb_nbsd.c:1181 earmnto.c:1156
+#: earmelf.c:1185 earmelf_fbsd.c:1185 earmelf_fuchsia.c:1190
+#: earmelf_haiku.c:1190 earmelf_linux.c:1190 earmelf_linux_eabi.c:1190
+#: earmelf_linux_fdpiceabi.c:1190 earmelf_nacl.c:1190 earmelf_nbsd.c:1185
+#: earmelf_phoenix.c:1190 earmelf_vxworks.c:1225 earmelfb.c:1185
+#: earmelfb_fbsd.c:1185 earmelfb_fuchsia.c:1190 earmelfb_linux.c:1190
+#: earmelfb_linux_eabi.c:1190 earmelfb_linux_fdpiceabi.c:1190
+#: earmelfb_nacl.c:1190 earmelfb_nbsd.c:1185 earmnto.c:1160
#, c-format
msgid ""
" --[no-]fix-arm1176 Disable/enable ARM1176 BLX immediate erratum "
@@ -5369,9 +5525,9 @@ msgstr ""
msgid "%X%P: dynamic sections created in non-dynamic link\n"
msgstr ""
-#: earmelf_vxworks.c:1223 eelf32_sparc_vxworks.c:528 eelf32ebmipvxworks.c:786
-#: eelf32elmipvxworks.c:786 eelf32ppcvxworks.c:851 eelf_i386_vxworks.c:613
-#: eshelf_vxworks.c:498 eshlelf_vxworks.c:498
+#: earmelf_vxworks.c:1227 eelf32_sparc_vxworks.c:534 eelf32ebmipvxworks.c:792
+#: eelf32elmipvxworks.c:792 eelf32ppcvxworks.c:857 eelf_i386_vxworks.c:619
+#: eshelf_vxworks.c:504 eshlelf_vxworks.c:504
#, c-format
msgid " --force-dynamic Always create dynamic sections\n"
msgstr ""
@@ -5390,10 +5546,10 @@ msgstr ""
msgid "%X%P: can not create stub BFD: %E\n"
msgstr ""
-#: eavr1.c:565 eavr2.c:565 eavr25.c:565 eavr3.c:565 eavr31.c:565 eavr35.c:565
-#: eavr4.c:565 eavr5.c:565 eavr51.c:565 eavr6.c:565 eavrtiny.c:565
-#: eavrxmega1.c:565 eavrxmega2.c:565 eavrxmega3.c:565 eavrxmega4.c:565
-#: eavrxmega5.c:565 eavrxmega6.c:565 eavrxmega7.c:565
+#: eavr1.c:571 eavr2.c:571 eavr25.c:571 eavr3.c:571 eavr31.c:571 eavr35.c:571
+#: eavr4.c:571 eavr5.c:571 eavr51.c:571 eavr6.c:571 eavrtiny.c:571
+#: eavrxmega1.c:571 eavrxmega2.c:571 eavrxmega3.c:571 eavrxmega4.c:571
+#: eavrxmega5.c:571 eavrxmega6.c:571 eavrxmega7.c:571
#, c-format
msgid ""
" --pmem-wrap-around=<val> Make the linker relaxation machine assume that "
@@ -5404,10 +5560,10 @@ msgid ""
"64k.\n"
msgstr ""
-#: eavr1.c:571 eavr2.c:571 eavr25.c:571 eavr3.c:571 eavr31.c:571 eavr35.c:571
-#: eavr4.c:571 eavr5.c:571 eavr51.c:571 eavr6.c:571 eavrtiny.c:571
-#: eavrxmega1.c:571 eavrxmega2.c:571 eavrxmega3.c:571 eavrxmega4.c:571
-#: eavrxmega5.c:571 eavrxmega6.c:571 eavrxmega7.c:571
+#: eavr1.c:577 eavr2.c:577 eavr25.c:577 eavr3.c:577 eavr31.c:577 eavr35.c:577
+#: eavr4.c:577 eavr5.c:577 eavr51.c:577 eavr6.c:577 eavrtiny.c:577
+#: eavrxmega1.c:577 eavrxmega2.c:577 eavrxmega3.c:577 eavrxmega4.c:577
+#: eavrxmega5.c:577 eavrxmega6.c:577 eavrxmega7.c:577
#, c-format
msgid ""
" --no-call-ret-replacement The relaxation machine normally will\n"
@@ -5417,10 +5573,10 @@ msgid ""
" This option disables this optimization.\n"
msgstr ""
-#: eavr1.c:579 eavr2.c:579 eavr25.c:579 eavr3.c:579 eavr31.c:579 eavr35.c:579
-#: eavr4.c:579 eavr5.c:579 eavr51.c:579 eavr6.c:579 eavrtiny.c:579
-#: eavrxmega1.c:579 eavrxmega2.c:579 eavrxmega3.c:579 eavrxmega4.c:579
-#: eavrxmega5.c:579 eavrxmega6.c:579 eavrxmega7.c:579
+#: eavr1.c:585 eavr2.c:585 eavr25.c:585 eavr3.c:585 eavr31.c:585 eavr35.c:585
+#: eavr4.c:585 eavr5.c:585 eavr51.c:585 eavr6.c:585 eavrtiny.c:585
+#: eavrxmega1.c:585 eavrxmega2.c:585 eavrxmega3.c:585 eavrxmega4.c:585
+#: eavrxmega5.c:585 eavrxmega6.c:585 eavrxmega7.c:585
#, c-format
msgid ""
" --no-stubs If the linker detects to attempt to access\n"
@@ -5430,18 +5586,18 @@ msgid ""
"switch.\n"
msgstr ""
-#: eavr1.c:587 eavr2.c:587 eavr25.c:587 eavr3.c:587 eavr31.c:587 eavr35.c:587
-#: eavr4.c:587 eavr5.c:587 eavr51.c:587 eavr6.c:587 eavrtiny.c:587
-#: eavrxmega1.c:587 eavrxmega2.c:587 eavrxmega3.c:587 eavrxmega4.c:587
-#: eavrxmega5.c:587 eavrxmega6.c:587 eavrxmega7.c:587
+#: eavr1.c:593 eavr2.c:593 eavr25.c:593 eavr3.c:593 eavr31.c:593 eavr35.c:593
+#: eavr4.c:593 eavr5.c:593 eavr51.c:593 eavr6.c:593 eavrtiny.c:593
+#: eavrxmega1.c:593 eavrxmega2.c:593 eavrxmega3.c:593 eavrxmega4.c:593
+#: eavrxmega5.c:593 eavrxmega6.c:593 eavrxmega7.c:593
#, c-format
msgid " --debug-stubs Used for debugging avr-ld.\n"
msgstr ""
-#: eavr1.c:589 eavr2.c:589 eavr25.c:589 eavr3.c:589 eavr31.c:589 eavr35.c:589
-#: eavr4.c:589 eavr5.c:589 eavr51.c:589 eavr6.c:589 eavrtiny.c:589
-#: eavrxmega1.c:589 eavrxmega2.c:589 eavrxmega3.c:589 eavrxmega4.c:589
-#: eavrxmega5.c:589 eavrxmega6.c:589 eavrxmega7.c:589
+#: eavr1.c:595 eavr2.c:595 eavr25.c:595 eavr3.c:595 eavr31.c:595 eavr35.c:595
+#: eavr4.c:595 eavr5.c:595 eavr51.c:595 eavr6.c:595 eavrtiny.c:595
+#: eavrxmega1.c:595 eavrxmega2.c:595 eavrxmega3.c:595 eavrxmega4.c:595
+#: eavrxmega5.c:595 eavrxmega6.c:595 eavrxmega7.c:595
#, c-format
msgid " --debug-relax Used for debugging avr-ld.\n"
msgstr ""
@@ -5454,14 +5610,14 @@ msgstr ""
msgid "%X%P: cannot build stubs: %E\n"
msgstr ""
-#: ecskyelf.c:581 ecskyelf_linux.c:748
+#: ecskyelf.c:587 ecskyelf_linux.c:754
#, c-format
msgid ""
" --[no-]branch-stub Disable/enable use of stubs to expand branch\n"
" instructions that cannot reach the target.\n"
msgstr ""
-#: ecskyelf.c:585 ecskyelf_linux.c:752
+#: ecskyelf.c:591 ecskyelf_linux.c:758
#, c-format
msgid ""
" --stub-group-size=N Maximum size of a group of input sections\n"
@@ -5520,118 +5676,118 @@ msgstr ""
msgid "running: %s \"%s\" \"%s\" \"%s\" \"%s\"\n"
msgstr ""
-#: eelf32_spu.c:1058
+#: eelf32_spu.c:1064
msgid "%F%P: invalid --local-store address range `%s'\n"
msgstr ""
-#: eelf32_spu.c:1094
+#: eelf32_spu.c:1100
msgid "%F%P: invalid --num-lines/--num-regions `%u'\n"
msgstr ""
-#: eelf32_spu.c:1099
+#: eelf32_spu.c:1105
msgid "%F%P: invalid --line-size/--region-size `%u'\n"
msgstr ""
-#: eelf32_spu.c:1120
+#: eelf32_spu.c:1126
msgid "%F%P: invalid --num-lines/--num-regions `%s'\n"
msgstr ""
-#: eelf32_spu.c:1133
+#: eelf32_spu.c:1139
msgid "%F%P: invalid --line-size/--region-size `%s'\n"
msgstr ""
-#: eelf32_spu.c:1142
+#: eelf32_spu.c:1148
msgid "%F%P: invalid --fixed-space value `%s'\n"
msgstr ""
-#: eelf32_spu.c:1151
+#: eelf32_spu.c:1157
msgid "%F%P: invalid --reserved-space value `%s'\n"
msgstr ""
-#: eelf32_spu.c:1160
+#: eelf32_spu.c:1166
msgid "%F%P: invalid --extra-stack-space value `%s'\n"
msgstr ""
-#: eelf32_spu.c:1197
+#: eelf32_spu.c:1203
#, c-format
msgid " --plugin Make SPU plugin\n"
msgstr ""
-#: eelf32_spu.c:1199
+#: eelf32_spu.c:1205
#, c-format
msgid " --no-overlays No overlay handling\n"
msgstr ""
-#: eelf32_spu.c:1201
+#: eelf32_spu.c:1207
#, c-format
msgid ""
" --compact-stubs Use smaller and possibly slower call stubs\n"
msgstr ""
-#: eelf32_spu.c:1203
+#: eelf32_spu.c:1209
#, c-format
msgid " --emit-stub-syms Add symbols on overlay call stubs\n"
msgstr ""
-#: eelf32_spu.c:1205
+#: eelf32_spu.c:1211
#, c-format
msgid ""
" --extra-overlay-stubs Add stubs on all calls out of overlay regions\n"
msgstr ""
-#: eelf32_spu.c:1207
+#: eelf32_spu.c:1213
#, c-format
msgid " --local-store=lo:hi Valid address range\n"
msgstr ""
-#: eelf32_spu.c:1209
+#: eelf32_spu.c:1215
#, c-format
msgid " --stack-analysis Estimate maximum stack requirement\n"
msgstr ""
-#: eelf32_spu.c:1211
+#: eelf32_spu.c:1217
#, c-format
msgid ""
" --emit-stack-syms Add sym giving stack needed for each func\n"
msgstr ""
-#: eelf32_spu.c:1213
+#: eelf32_spu.c:1219
#, c-format
msgid ""
" --auto-overlay [=filename] Create an overlay script in filename if\n"
" executable does not fit in local store\n"
msgstr ""
-#: eelf32_spu.c:1216
+#: eelf32_spu.c:1222
#, c-format
msgid " --auto-relink Rerun linker using auto-overlay script\n"
msgstr ""
-#: eelf32_spu.c:1218
+#: eelf32_spu.c:1224
#, c-format
msgid ""
" --overlay-rodata Place read-only data with associated function\n"
" code in overlays\n"
msgstr ""
-#: eelf32_spu.c:1221
+#: eelf32_spu.c:1227
#, c-format
msgid " --num-regions Number of overlay buffers (default 1)\n"
msgstr ""
-#: eelf32_spu.c:1223
+#: eelf32_spu.c:1229
#, c-format
msgid ""
" --region-size Size of overlay buffers (default 0, auto)\n"
msgstr ""
-#: eelf32_spu.c:1225
+#: eelf32_spu.c:1231
#, c-format
msgid ""
" --fixed-space=bytes Local store for non-overlay code and data\n"
msgstr ""
-#: eelf32_spu.c:1227
+#: eelf32_spu.c:1233
#, c-format
msgid ""
" --reserved-space=bytes Local store for stack and heap. If not "
@@ -5640,7 +5796,7 @@ msgid ""
"heap\n"
msgstr ""
-#: eelf32_spu.c:1230
+#: eelf32_spu.c:1236
#, c-format
msgid ""
" --extra-stack-space=bytes Space for negative sp access (default 2000) "
@@ -5648,28 +5804,28 @@ msgid ""
" --reserved-space not given\n"
msgstr ""
-#: eelf32_spu.c:1233
+#: eelf32_spu.c:1239
#, c-format
msgid " --soft-icache Generate software icache overlays\n"
msgstr ""
-#: eelf32_spu.c:1235
+#: eelf32_spu.c:1241
#, c-format
msgid ""
" --num-lines Number of soft-icache lines (default 32)\n"
msgstr ""
-#: eelf32_spu.c:1237
+#: eelf32_spu.c:1243
#, c-format
msgid " --line-size Size of soft-icache lines (default 1k)\n"
msgstr ""
-#: eelf32_spu.c:1239
+#: eelf32_spu.c:1245
#, c-format
msgid " --non-ia-text Allow non-icache code in icache lines\n"
msgstr ""
-#: eelf32_spu.c:1241
+#: eelf32_spu.c:1247
#, c-format
msgid " --lrlive-analysis Scan function prologue for lr liveness\n"
msgstr ""
@@ -5679,237 +5835,218 @@ msgstr ""
msgid "%F%P: invalid --dsbt-index %d, outside DSBT size\n"
msgstr ""
-#: 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:597 eelf32_tic6x_elf_be.c:597 eelf32_tic6x_elf_le.c:597
+#: eelf32_tic6x_le.c:597 eelf32_tic6x_linux_be.c:597
+#: eelf32_tic6x_linux_le.c:597
msgid "%F%P: invalid --dsbt-index %s\n"
msgstr ""
-#: eelf32_tic6x_be.c:601 eelf32_tic6x_elf_be.c:601 eelf32_tic6x_elf_le.c:601
-#: eelf32_tic6x_le.c:601 eelf32_tic6x_linux_be.c:601
-#: eelf32_tic6x_linux_le.c:601
+#: eelf32_tic6x_be.c:607 eelf32_tic6x_elf_be.c:607 eelf32_tic6x_elf_le.c:607
+#: eelf32_tic6x_le.c:607 eelf32_tic6x_linux_be.c:607
+#: eelf32_tic6x_linux_le.c:607
msgid "%F%P: invalid --dsbt-size %s\n"
msgstr ""
-#: eelf32_tic6x_be.c:617 eelf32_tic6x_elf_be.c:617 eelf32_tic6x_elf_le.c:617
-#: eelf32_tic6x_le.c:617 eelf32_tic6x_linux_be.c:617
-#: eelf32_tic6x_linux_le.c:617
+#: eelf32_tic6x_be.c:623 eelf32_tic6x_elf_be.c:623 eelf32_tic6x_elf_le.c:623
+#: eelf32_tic6x_le.c:623 eelf32_tic6x_linux_be.c:623
+#: eelf32_tic6x_linux_le.c:623
#, c-format
msgid ""
" --dsbt-index <index> Use this as the DSBT index for the output object\n"
msgstr ""
-#: eelf32_tic6x_be.c:618 eelf32_tic6x_elf_be.c:618 eelf32_tic6x_elf_le.c:618
-#: eelf32_tic6x_le.c:618 eelf32_tic6x_linux_be.c:618
-#: eelf32_tic6x_linux_le.c:618
+#: eelf32_tic6x_be.c:624 eelf32_tic6x_elf_be.c:624 eelf32_tic6x_elf_le.c:624
+#: eelf32_tic6x_le.c:624 eelf32_tic6x_linux_be.c:624
+#: eelf32_tic6x_linux_le.c:624
#, c-format
msgid ""
" --dsbt-size <index> Use this as the number of entries in the DSBT "
"table\n"
msgstr ""
-#: eelf32_tic6x_be.c:619 eelf32_tic6x_elf_be.c:619 eelf32_tic6x_elf_le.c:619
-#: eelf32_tic6x_le.c:619 eelf32_tic6x_linux_be.c:619
-#: eelf32_tic6x_linux_le.c:619
+#: eelf32_tic6x_be.c:625 eelf32_tic6x_elf_be.c:625 eelf32_tic6x_elf_le.c:625
+#: eelf32_tic6x_le.c:625 eelf32_tic6x_linux_be.c:625
+#: eelf32_tic6x_linux_le.c:625
#, c-format
msgid " --no-merge-exidx-entries\n"
msgstr ""
-#: eelf32_tic6x_be.c:620 eelf32_tic6x_elf_be.c:620 eelf32_tic6x_elf_le.c:620
-#: eelf32_tic6x_le.c:620 eelf32_tic6x_linux_be.c:620
-#: eelf32_tic6x_linux_le.c:620
+#: eelf32_tic6x_be.c:626 eelf32_tic6x_elf_be.c:626 eelf32_tic6x_elf_le.c:626
+#: eelf32_tic6x_le.c:626 eelf32_tic6x_linux_be.c:626
+#: eelf32_tic6x_linux_le.c:626
#, c-format
msgid " Disable merging exidx entries\n"
msgstr ""
-#: eelf32_x86_64.c:5641 eelf_i386.c:5260 eelf_i386_be.c:497
-#: eelf_i386_fbsd.c:537 eelf_i386_haiku.c:537 eelf_i386_ldso.c:512
-#: eelf_i386_sol2.c:669 eelf_i386_vxworks.c:564 eelf_iamcu.c:537
-#: eelf_x86_64.c:5641 eelf_x86_64_cloudabi.c:540 eelf_x86_64_fbsd.c:540
-#: eelf_x86_64_haiku.c:540 eelf_x86_64_sol2.c:672
+#: eelf32_x86_64.c:5647 eelf_i386.c:5266 eelf_i386_be.c:503
+#: eelf_i386_fbsd.c:543 eelf_i386_haiku.c:543 eelf_i386_ldso.c:518
+#: eelf_i386_sol2.c:675 eelf_i386_vxworks.c:570 eelf_iamcu.c:543
+#: eelf_x86_64.c:5647 eelf_x86_64_cloudabi.c:546 eelf_x86_64_fbsd.c:546
+#: eelf_x86_64_haiku.c:546 eelf_x86_64_sol2.c:678
msgid "%F%P: invalid number for -z call-nop=prefix-: %s\n"
msgstr ""
-#: eelf32_x86_64.c:5650 eelf_i386.c:5269 eelf_i386_be.c:506
-#: eelf_i386_fbsd.c:546 eelf_i386_haiku.c:546 eelf_i386_ldso.c:521
-#: eelf_i386_sol2.c:678 eelf_i386_vxworks.c:573 eelf_iamcu.c:546
-#: eelf_x86_64.c:5650 eelf_x86_64_cloudabi.c:549 eelf_x86_64_fbsd.c:549
-#: eelf_x86_64_haiku.c:549 eelf_x86_64_sol2.c:681
+#: eelf32_x86_64.c:5656 eelf_i386.c:5275 eelf_i386_be.c:512
+#: eelf_i386_fbsd.c:552 eelf_i386_haiku.c:552 eelf_i386_ldso.c:527
+#: eelf_i386_sol2.c:684 eelf_i386_vxworks.c:579 eelf_iamcu.c:552
+#: eelf_x86_64.c:5656 eelf_x86_64_cloudabi.c:555 eelf_x86_64_fbsd.c:555
+#: eelf_x86_64_haiku.c:555 eelf_x86_64_sol2.c:687
msgid "%F%P: invalid number for -z call-nop=suffix-: %s\n"
msgstr ""
-#: eelf32_x86_64.c:5655 eelf_i386.c:5274 eelf_i386_be.c:511
-#: eelf_i386_fbsd.c:551 eelf_i386_haiku.c:551 eelf_i386_ldso.c:526
-#: eelf_i386_sol2.c:683 eelf_i386_vxworks.c:578 eelf_iamcu.c:551
-#: eelf_x86_64.c:5655 eelf_x86_64_cloudabi.c:554 eelf_x86_64_fbsd.c:554
-#: eelf_x86_64_haiku.c:554 eelf_x86_64_sol2.c:686
+#: eelf32_x86_64.c:5661 eelf_i386.c:5280 eelf_i386_be.c:517
+#: eelf_i386_fbsd.c:557 eelf_i386_haiku.c:557 eelf_i386_ldso.c:532
+#: eelf_i386_sol2.c:689 eelf_i386_vxworks.c:584 eelf_iamcu.c:557
+#: eelf_x86_64.c:5661 eelf_x86_64_cloudabi.c:560 eelf_x86_64_fbsd.c:560
+#: eelf_x86_64_haiku.c:560 eelf_x86_64_sol2.c:692
msgid "%F%P: unsupported option: -z %s\n"
msgstr ""
-#: eelf32_x86_64.c:5677 eelf_i386.c:5296 eelf_i386_fbsd.c:573
-#: eelf_i386_haiku.c:573 eelf_x86_64.c:5677 eelf_x86_64_cloudabi.c:576
-#: eelf_x86_64_fbsd.c:576 eelf_x86_64_haiku.c:576 eelf_x86_64_sol2.c:708
+#: eelf32_x86_64.c:5683 eelf_i386.c:5302 eelf_i386_fbsd.c:579
+#: eelf_i386_haiku.c:579 eelf_x86_64.c:5683 eelf_x86_64_cloudabi.c:582
+#: eelf_x86_64_fbsd.c:582 eelf_x86_64_haiku.c:582 eelf_x86_64_sol2.c:714
msgid "%F%P: invalid option for -z cet-report=: %s\n"
msgstr ""
-#: eelf32_x86_64.c:5691 eelf_i386.c:5310 eelf_i386_fbsd.c:587
-#: eelf_i386_haiku.c:587 eelf_x86_64.c:5691 eelf_x86_64_cloudabi.c:590
-#: eelf_x86_64_fbsd.c:590 eelf_x86_64_haiku.c:590 eelf_x86_64_sol2.c:722
+#: eelf32_x86_64.c:5697 eelf_i386.c:5316 eelf_i386_fbsd.c:593
+#: eelf_i386_haiku.c:593 eelf_x86_64.c:5697 eelf_x86_64_cloudabi.c:596
+#: eelf_x86_64_fbsd.c:596 eelf_x86_64_haiku.c:596 eelf_x86_64_sol2.c:728
msgid "%F%P: invalid x86-64 ISA level: %s\n"
msgstr ""
-#: eelf32_x86_64.c:5733 eelf_i386.c:5352 eelf_i386_be.c:527
-#: eelf_i386_fbsd.c:629 eelf_i386_haiku.c:629 eelf_i386_ldso.c:551
-#: eelf_i386_sol2.c:708 eelf_i386_vxworks.c:599 eelf_iamcu.c:576
-#: eelf_x86_64.c:5783 eelf_x86_64_cloudabi.c:682 eelf_x86_64_fbsd.c:682
-#: eelf_x86_64_haiku.c:682 eelf_x86_64_sol2.c:814
+#: eelf32_x86_64.c:5744 eelf_i386.c:5358 eelf_i386_be.c:533
+#: eelf_i386_fbsd.c:635 eelf_i386_haiku.c:635 eelf_i386_ldso.c:557
+#: eelf_i386_sol2.c:714 eelf_i386_vxworks.c:605 eelf_iamcu.c:582
+#: eelf_x86_64.c:5794 eelf_x86_64_cloudabi.c:693 eelf_x86_64_fbsd.c:693
+#: eelf_x86_64_haiku.c:693 eelf_x86_64_sol2.c:825
#, c-format
msgid ""
" -z noextern-protected-data Do not treat protected data symbol as "
"external\n"
msgstr ""
-#: eelf32_x86_64.c:5735 eelf_i386.c:5354 eelf_i386_be.c:529
-#: eelf_i386_fbsd.c:631 eelf_i386_haiku.c:631 eelf_i386_ldso.c:553
-#: eelf_i386_sol2.c:710 eelf_i386_vxworks.c:601 eelf_iamcu.c:578
-#: eelf_x86_64.c:5785 eelf_x86_64_cloudabi.c:684 eelf_x86_64_fbsd.c:684
-#: eelf_x86_64_haiku.c:684 eelf_x86_64_sol2.c:816
+#: eelf32_x86_64.c:5746 eelf_i386.c:5360 eelf_i386_be.c:535
+#: eelf_i386_fbsd.c:637 eelf_i386_haiku.c:637 eelf_i386_ldso.c:559
+#: eelf_i386_sol2.c:716 eelf_i386_vxworks.c:607 eelf_iamcu.c:584
+#: eelf_x86_64.c:5796 eelf_x86_64_cloudabi.c:695 eelf_x86_64_fbsd.c:695
+#: eelf_x86_64_haiku.c:695 eelf_x86_64_sol2.c:827
#, c-format
msgid " -z indirect-extern-access Enable indirect external access\n"
msgstr ""
-#: eelf32_x86_64.c:5737 eelf_i386.c:5356 eelf_i386_be.c:531
-#: eelf_i386_fbsd.c:633 eelf_i386_haiku.c:633 eelf_i386_ldso.c:555
-#: eelf_i386_sol2.c:712 eelf_i386_vxworks.c:603 eelf_iamcu.c:580
-#: eelf_x86_64.c:5787 eelf_x86_64_cloudabi.c:686 eelf_x86_64_fbsd.c:686
-#: eelf_x86_64_haiku.c:686 eelf_x86_64_sol2.c:818
+#: eelf32_x86_64.c:5748 eelf_i386.c:5362 eelf_i386_be.c:537
+#: eelf_i386_fbsd.c:639 eelf_i386_haiku.c:639 eelf_i386_ldso.c:561
+#: eelf_i386_sol2.c:718 eelf_i386_vxworks.c:609 eelf_iamcu.c:586
+#: eelf_x86_64.c:5798 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 noindirect-extern-access Disable indirect external access (default)\n"
msgstr ""
-#: eelf32_x86_64.c:5740 eelf32lppc.c:843 eelf32lppclinux.c:843
-#: eelf32lppcnto.c:843 eelf32lppcsim.c:843 eelf32ppc.c:843
-#: eelf32ppc_fbsd.c:843 eelf32ppchaiku.c:843 eelf32ppclinux.c:843
-#: eelf32ppcnto.c:843 eelf32ppcsim.c:843 eelf32ppcvxworks.c:821
-#: eelf32ppcwindiss.c:843 eelf64lppc.c:1372 eelf64lppc_fbsd.c:1372
-#: eelf64ppc.c:1372 eelf64ppc_fbsd.c:1372 eelf_i386.c:5359 eelf_i386_be.c:534
-#: eelf_i386_fbsd.c:636 eelf_i386_haiku.c:636 eelf_i386_ldso.c:558
-#: eelf_i386_sol2.c:715 eelf_i386_vxworks.c:606 eelf_iamcu.c:583
-#: eelf_x86_64.c:5790 eelf_x86_64_cloudabi.c:689 eelf_x86_64_fbsd.c:689
-#: eelf_x86_64_haiku.c:689 eelf_x86_64_sol2.c:821
+#: eelf32_x86_64.c:5751 eelf32lppc.c:849 eelf32lppclinux.c:849
+#: eelf32lppcnto.c:849 eelf32lppcsim.c:849 eelf32ppc.c:849
+#: eelf32ppc_fbsd.c:849 eelf32ppchaiku.c:849 eelf32ppclinux.c:849
+#: eelf32ppcnto.c:849 eelf32ppcsim.c:849 eelf32ppcvxworks.c:827
+#: eelf32ppcwindiss.c:849 eelf64lppc.c:1378 eelf64lppc_fbsd.c:1378
+#: eelf64ppc.c:1378 eelf64ppc_fbsd.c:1378 eelf_i386.c:5365 eelf_i386_be.c:540
+#: eelf_i386_fbsd.c:642 eelf_i386_haiku.c:642 eelf_i386_ldso.c:564
+#: eelf_i386_sol2.c:721 eelf_i386_vxworks.c:612 eelf_iamcu.c:589
+#: eelf_x86_64.c:5801 eelf_x86_64_cloudabi.c:700 eelf_x86_64_fbsd.c:700
+#: eelf_x86_64_haiku.c:700 eelf_x86_64_sol2.c:832
#, c-format
msgid ""
" -z dynamic-undefined-weak Make undefined weak symbols dynamic\n"
" -z nodynamic-undefined-weak Do not make undefined weak symbols dynamic\n"
msgstr ""
-#: eelf32_x86_64.c:5744 eelf_x86_64.c:5794 eelf_x86_64_cloudabi.c:693
-#: eelf_x86_64_fbsd.c:693 eelf_x86_64_haiku.c:693 eelf_x86_64_sol2.c:825
+#: eelf32_x86_64.c:5755 eelf_x86_64.c:5805 eelf_x86_64_cloudabi.c:704
+#: eelf_x86_64_fbsd.c:704 eelf_x86_64_haiku.c:704 eelf_x86_64_sol2.c:836
#, c-format
msgid " -z noreloc-overflow Disable relocation overflow check\n"
msgstr ""
-#: eelf32_x86_64.c:5747 eelf_i386.c:5363 eelf_i386_be.c:538
-#: eelf_i386_fbsd.c:640 eelf_i386_haiku.c:640 eelf_i386_ldso.c:562
-#: eelf_i386_sol2.c:719 eelf_i386_vxworks.c:610 eelf_iamcu.c:587
-#: eelf_x86_64.c:5797 eelf_x86_64_cloudabi.c:696 eelf_x86_64_fbsd.c:696
-#: eelf_x86_64_haiku.c:696 eelf_x86_64_sol2.c:828
+#: eelf32_x86_64.c:5758 eelf_i386.c:5369 eelf_i386_be.c:544
+#: eelf_i386_fbsd.c:646 eelf_i386_haiku.c:646 eelf_i386_ldso.c:568
+#: eelf_i386_sol2.c:725 eelf_i386_vxworks.c:616 eelf_iamcu.c:593
+#: eelf_x86_64.c:5808 eelf_x86_64_cloudabi.c:707 eelf_x86_64_fbsd.c:707
+#: eelf_x86_64_haiku.c:707 eelf_x86_64_sol2.c:839
#, c-format
msgid " -z call-nop=PADDING Use PADDING as 1-byte NOP for branch\n"
msgstr ""
-#: eelf32_x86_64.c:5750 eelf_i386.c:5366 eelf_i386_fbsd.c:643
-#: eelf_i386_haiku.c:643 eelf_x86_64.c:5800 eelf_x86_64_cloudabi.c:699
-#: eelf_x86_64_fbsd.c:699 eelf_x86_64_haiku.c:699 eelf_x86_64_sol2.c:831
+#: eelf32_x86_64.c:5761 eelf_i386.c:5372 eelf_i386_fbsd.c:649
+#: eelf_i386_haiku.c:649 eelf_x86_64.c:5811 eelf_x86_64_cloudabi.c:710
+#: eelf_x86_64_fbsd.c:710 eelf_x86_64_haiku.c:710 eelf_x86_64_sol2.c:842
#, c-format
msgid " -z ibtplt Generate IBT-enabled PLT entries\n"
msgstr ""
-#: eelf32_x86_64.c:5752 eelf_i386.c:5368 eelf_i386_fbsd.c:645
-#: eelf_i386_haiku.c:645 eelf_x86_64.c:5802 eelf_x86_64_cloudabi.c:701
-#: eelf_x86_64_fbsd.c:701 eelf_x86_64_haiku.c:701 eelf_x86_64_sol2.c:833
+#: eelf32_x86_64.c:5763 eelf_i386.c:5374 eelf_i386_fbsd.c:651
+#: eelf_i386_haiku.c:651 eelf_x86_64.c:5813 eelf_x86_64_cloudabi.c:712
+#: eelf_x86_64_fbsd.c:712 eelf_x86_64_haiku.c:712 eelf_x86_64_sol2.c:844
#, c-format
msgid " -z ibt Generate GNU_PROPERTY_X86_FEATURE_1_IBT\n"
msgstr ""
-#: eelf32_x86_64.c:5754 eelf_i386.c:5370 eelf_i386_fbsd.c:647
-#: eelf_i386_haiku.c:647 eelf_x86_64.c:5804 eelf_x86_64_cloudabi.c:703
-#: eelf_x86_64_fbsd.c:703 eelf_x86_64_haiku.c:703 eelf_x86_64_sol2.c:835
+#: eelf32_x86_64.c:5765 eelf_i386.c:5376 eelf_i386_fbsd.c:653
+#: eelf_i386_haiku.c:653 eelf_x86_64.c:5815 eelf_x86_64_cloudabi.c:714
+#: eelf_x86_64_fbsd.c:714 eelf_x86_64_haiku.c:714 eelf_x86_64_sol2.c:846
#, c-format
msgid ""
" -z shstk Generate GNU_PROPERTY_X86_FEATURE_1_SHSTK\n"
msgstr ""
-#: eelf32_x86_64.c:5756 eelf_i386.c:5372 eelf_i386_fbsd.c:649
-#: eelf_i386_haiku.c:649 eelf_x86_64.c:5806 eelf_x86_64_cloudabi.c:705
-#: eelf_x86_64_fbsd.c:705 eelf_x86_64_haiku.c:705 eelf_x86_64_sol2.c:837
+#: eelf32_x86_64.c:5767 eelf_i386.c:5378 eelf_i386_fbsd.c:655
+#: eelf_i386_haiku.c:655 eelf_x86_64.c:5817 eelf_x86_64_cloudabi.c:716
+#: eelf_x86_64_fbsd.c:716 eelf_x86_64_haiku.c:716 eelf_x86_64_sol2.c:848
#, c-format
msgid ""
" -z cet-report=[none|warning|error] (default: none)\n"
" Report missing IBT and SHSTK properties\n"
msgstr ""
-#: eelf32_x86_64.c:5760 eelf_i386.c:5376 eelf_i386_fbsd.c:653
-#: eelf_i386_haiku.c:653 eelf_x86_64.c:5810 eelf_x86_64_cloudabi.c:709
-#: eelf_x86_64_fbsd.c:709 eelf_x86_64_haiku.c:709 eelf_x86_64_sol2.c:841
+#: eelf32_x86_64.c:5771 eelf_i386.c:5382 eelf_i386_fbsd.c:659
+#: eelf_i386_haiku.c:659 eelf_x86_64.c:5821 eelf_x86_64_cloudabi.c:720
+#: eelf_x86_64_fbsd.c:720 eelf_x86_64_haiku.c:720 eelf_x86_64_sol2.c:852
#, c-format
msgid " -z report-relative-reloc Report relative relocations\n"
msgstr ""
-#: eelf32_x86_64.c:5763 eelf_i386.c:5379 eelf_i386_fbsd.c:656
-#: eelf_i386_haiku.c:656 eelf_x86_64.c:5813 eelf_x86_64_cloudabi.c:712
-#: eelf_x86_64_fbsd.c:712 eelf_x86_64_haiku.c:712 eelf_x86_64_sol2.c:844
+#: eelf32_x86_64.c:5774 eelf_i386.c:5385 eelf_i386_fbsd.c:662
+#: eelf_i386_haiku.c:662 eelf_x86_64.c:5824 eelf_x86_64_cloudabi.c:723
+#: eelf_x86_64_fbsd.c:723 eelf_x86_64_haiku.c:723 eelf_x86_64_sol2.c:855
#, c-format
msgid ""
" -z x86-64-{baseline|v[234]} Mark x86-64-{baseline|v[234]} ISA level as "
"needed\n"
msgstr ""
-#: eelf32_x86_64.c:5766 eelf64lppc.c:1376 eelf64lppc_fbsd.c:1376
-#: eelf64ppc.c:1376 eelf64ppc_fbsd.c:1376 eelf_i386.c:5382
-#: eelf_i386_fbsd.c:659 eelf_i386_haiku.c:659 eelf_x86_64.c:5830
-#: eelf_x86_64_cloudabi.c:729 eelf_x86_64_fbsd.c:729 eelf_x86_64_haiku.c:729
-#: eelf_x86_64_sol2.c:861
-#, c-format
-msgid " -z pack-relative-relocs Pack relative relocations\n"
-msgstr ""
-
-#: eelf32_x86_64.c:5768 eelf64lppc.c:1378 eelf64lppc_fbsd.c:1378
-#: eelf64ppc.c:1378 eelf64ppc_fbsd.c:1378 eelf_i386.c:5384
-#: eelf_i386_fbsd.c:661 eelf_i386_haiku.c:661 eelf_x86_64.c:5832
-#: eelf_x86_64_cloudabi.c:731 eelf_x86_64_fbsd.c:731 eelf_x86_64_haiku.c:731
-#: eelf_x86_64_sol2.c:863
+#: eelf32_x86_64.c:5777 eelf_x86_64.c:5841 eelf_x86_64_cloudabi.c:740
+#: eelf_x86_64_fbsd.c:740 eelf_x86_64_haiku.c:740 eelf_x86_64_sol2.c:872
#, c-format
msgid ""
-" -z nopack-relative-relocs Do not pack relative relocations (default)\n"
+" -z mark-plt Mark PLT with dynamic tags\n"
+" -z nomark-plt Do not mark PLT with dynamic tags (default)\n"
msgstr ""
-#: eelf32b4300.c:726 eelf32bmip.c:726 eelf32bmipn32.c:740 eelf32bsmip.c:740
-#: eelf32btsmip.c:726 eelf32btsmip_fbsd.c:726 eelf32btsmipn32.c:726
-#: eelf32btsmipn32_fbsd.c:726 eelf32ebmip.c:726 eelf32ebmipvxworks.c:765
-#: eelf32elmip.c:726 eelf32elmipvxworks.c:765 eelf32l4300.c:726
-#: eelf32lmip.c:726 eelf32lr5900.c:585 eelf32lr5900n32.c:584 eelf32lsmip.c:726
-#: eelf32ltsmip.c:726 eelf32ltsmip_fbsd.c:726 eelf32ltsmipn32.c:726
-#: eelf32ltsmipn32_fbsd.c:726 eelf32mipswindiss.c:559 eelf64bmip.c:740
-#: eelf64btsmip.c:726 eelf64btsmip_fbsd.c:726 eelf64ltsmip.c:726
-#: eelf64ltsmip_fbsd.c:726 eelf_mipsel_haiku.c:726
+#: eelf32_x86_64.c:5781 eelf64lppc.c:1382 eelf64lppc_fbsd.c:1382
+#: eelf64ppc.c:1382 eelf64ppc_fbsd.c:1382 eelf_i386.c:5388
+#: eelf_i386_fbsd.c:665 eelf_i386_haiku.c:665 eelf_x86_64.c:5845
+#: eelf_x86_64_cloudabi.c:744 eelf_x86_64_fbsd.c:744 eelf_x86_64_haiku.c:744
+#: eelf_x86_64_sol2.c:876
#, c-format
-msgid ""
-" --insn32 Only generate 32-bit microMIPS instructions\n"
+msgid " -z pack-relative-relocs Pack relative relocations\n"
msgstr ""
-#: eelf32b4300.c:729 eelf32bmip.c:729 eelf32bmipn32.c:743 eelf32bsmip.c:743
-#: eelf32btsmip.c:729 eelf32btsmip_fbsd.c:729 eelf32btsmipn32.c:729
-#: eelf32btsmipn32_fbsd.c:729 eelf32ebmip.c:729 eelf32ebmipvxworks.c:768
-#: eelf32elmip.c:729 eelf32elmipvxworks.c:768 eelf32l4300.c:729
-#: eelf32lmip.c:729 eelf32lr5900.c:588 eelf32lr5900n32.c:587 eelf32lsmip.c:729
-#: eelf32ltsmip.c:729 eelf32ltsmip_fbsd.c:729 eelf32ltsmipn32.c:729
-#: eelf32ltsmipn32_fbsd.c:729 eelf32mipswindiss.c:562 eelf64bmip.c:743
-#: eelf64btsmip.c:729 eelf64btsmip_fbsd.c:729 eelf64ltsmip.c:729
-#: eelf64ltsmip_fbsd.c:729 eelf_mipsel_haiku.c:729
+#: eelf32_x86_64.c:5783 eelf64lppc.c:1384 eelf64lppc_fbsd.c:1384
+#: eelf64ppc.c:1384 eelf64ppc_fbsd.c:1384 eelf_i386.c:5390
+#: eelf_i386_fbsd.c:667 eelf_i386_haiku.c:667 eelf_x86_64.c:5847
+#: eelf_x86_64_cloudabi.c:746 eelf_x86_64_fbsd.c:746 eelf_x86_64_haiku.c:746
+#: eelf_x86_64_sol2.c:878
#, c-format
-msgid " --no-insn32 Generate all microMIPS instructions\n"
+msgid ""
+" -z nopack-relative-relocs Do not pack relative relocations (default)\n"
msgstr ""
#: eelf32b4300.c:732 eelf32bmip.c:732 eelf32bmipn32.c:746 eelf32bsmip.c:746
@@ -5923,64 +6060,107 @@ msgstr ""
#: eelf64ltsmip_fbsd.c:732 eelf_mipsel_haiku.c:732
#, c-format
msgid ""
+" --insn32 Only generate 32-bit microMIPS instructions\n"
+msgstr ""
+
+#: eelf32b4300.c:735 eelf32bmip.c:735 eelf32bmipn32.c:749 eelf32bsmip.c:749
+#: eelf32btsmip.c:735 eelf32btsmip_fbsd.c:735 eelf32btsmipn32.c:735
+#: eelf32btsmipn32_fbsd.c:735 eelf32ebmip.c:735 eelf32ebmipvxworks.c:774
+#: eelf32elmip.c:735 eelf32elmipvxworks.c:774 eelf32l4300.c:735
+#: eelf32lmip.c:735 eelf32lr5900.c:594 eelf32lr5900n32.c:593 eelf32lsmip.c:735
+#: eelf32ltsmip.c:735 eelf32ltsmip_fbsd.c:735 eelf32ltsmipn32.c:735
+#: eelf32ltsmipn32_fbsd.c:735 eelf32mipswindiss.c:568 eelf64bmip.c:749
+#: eelf64btsmip.c:735 eelf64btsmip_fbsd.c:735 eelf64ltsmip.c:735
+#: eelf64ltsmip_fbsd.c:735 eelf_mipsel_haiku.c:735
+#, c-format
+msgid " --no-insn32 Generate all microMIPS instructions\n"
+msgstr ""
+
+#: eelf32b4300.c:738 eelf32bmip.c:738 eelf32bmipn32.c:752 eelf32bsmip.c:752
+#: eelf32btsmip.c:738 eelf32btsmip_fbsd.c:738 eelf32btsmipn32.c:738
+#: eelf32btsmipn32_fbsd.c:738 eelf32ebmip.c:738 eelf32ebmipvxworks.c:777
+#: eelf32elmip.c:738 eelf32elmipvxworks.c:777 eelf32l4300.c:738
+#: eelf32lmip.c:738 eelf32lr5900.c:597 eelf32lr5900n32.c:596 eelf32lsmip.c:738
+#: eelf32ltsmip.c:738 eelf32ltsmip_fbsd.c:738 eelf32ltsmipn32.c:738
+#: eelf32ltsmipn32_fbsd.c:738 eelf32mipswindiss.c:571 eelf64bmip.c:752
+#: eelf64btsmip.c:738 eelf64btsmip_fbsd.c:738 eelf64ltsmip.c:738
+#: eelf64ltsmip_fbsd.c:738 eelf_mipsel_haiku.c:738
+#, c-format
+msgid ""
" --ignore-branch-isa Accept invalid branch relocations requiring\n"
" an ISA mode switch\n"
msgstr ""
-#: eelf32b4300.c:736 eelf32bmip.c:736 eelf32bmipn32.c:750 eelf32bsmip.c:750
-#: eelf32btsmip.c:736 eelf32btsmip_fbsd.c:736 eelf32btsmipn32.c:736
-#: eelf32btsmipn32_fbsd.c:736 eelf32ebmip.c:736 eelf32ebmipvxworks.c:775
-#: eelf32elmip.c:736 eelf32elmipvxworks.c:775 eelf32l4300.c:736
-#: eelf32lmip.c:736 eelf32lr5900.c:595 eelf32lr5900n32.c:594 eelf32lsmip.c:736
-#: eelf32ltsmip.c:736 eelf32ltsmip_fbsd.c:736 eelf32ltsmipn32.c:736
-#: eelf32ltsmipn32_fbsd.c:736 eelf32mipswindiss.c:569 eelf64bmip.c:750
-#: eelf64btsmip.c:736 eelf64btsmip_fbsd.c:736 eelf64ltsmip.c:736
-#: eelf64ltsmip_fbsd.c:736 eelf_mipsel_haiku.c:736
+#: eelf32b4300.c:742 eelf32bmip.c:742 eelf32bmipn32.c:756 eelf32bsmip.c:756
+#: eelf32btsmip.c:742 eelf32btsmip_fbsd.c:742 eelf32btsmipn32.c:742
+#: eelf32btsmipn32_fbsd.c:742 eelf32ebmip.c:742 eelf32ebmipvxworks.c:781
+#: eelf32elmip.c:742 eelf32elmipvxworks.c:781 eelf32l4300.c:742
+#: eelf32lmip.c:742 eelf32lr5900.c:601 eelf32lr5900n32.c:600 eelf32lsmip.c:742
+#: eelf32ltsmip.c:742 eelf32ltsmip_fbsd.c:742 eelf32ltsmipn32.c:742
+#: eelf32ltsmipn32_fbsd.c:742 eelf32mipswindiss.c:575 eelf64bmip.c:756
+#: eelf64btsmip.c:742 eelf64btsmip_fbsd.c:742 eelf64ltsmip.c:742
+#: eelf64ltsmip_fbsd.c:742 eelf_mipsel_haiku.c:742
#, c-format
msgid ""
" --no-ignore-branch-isa Reject invalid branch relocations requiring\n"
" an ISA mode switch\n"
msgstr ""
-#: eelf32b4300.c:740 eelf32bmip.c:740 eelf32bmipn32.c:754 eelf32bsmip.c:754
-#: eelf32btsmip.c:740 eelf32btsmip_fbsd.c:740 eelf32btsmipn32.c:740
-#: eelf32btsmipn32_fbsd.c:740 eelf32ebmip.c:740 eelf32ebmipvxworks.c:779
-#: eelf32elmip.c:740 eelf32elmipvxworks.c:779 eelf32l4300.c:740
-#: eelf32lmip.c:740 eelf32lr5900.c:599 eelf32lr5900n32.c:598 eelf32lsmip.c:740
-#: eelf32ltsmip.c:740 eelf32ltsmip_fbsd.c:740 eelf32ltsmipn32.c:740
-#: eelf32ltsmipn32_fbsd.c:740 eelf32mipswindiss.c:573 eelf64bmip.c:754
-#: eelf64btsmip.c:740 eelf64btsmip_fbsd.c:740 eelf64ltsmip.c:740
-#: eelf64ltsmip_fbsd.c:740 eelf_mipsel_haiku.c:740
+#: eelf32b4300.c:746 eelf32bmip.c:746 eelf32bmipn32.c:760 eelf32bsmip.c:760
+#: eelf32btsmip.c:746 eelf32btsmip_fbsd.c:746 eelf32btsmipn32.c:746
+#: eelf32btsmipn32_fbsd.c:746 eelf32ebmip.c:746 eelf32ebmipvxworks.c:785
+#: eelf32elmip.c:746 eelf32elmipvxworks.c:785 eelf32l4300.c:746
+#: eelf32lmip.c:746 eelf32lr5900.c:605 eelf32lr5900n32.c:604 eelf32lsmip.c:746
+#: eelf32ltsmip.c:746 eelf32ltsmip_fbsd.c:746 eelf32ltsmipn32.c:746
+#: eelf32ltsmipn32_fbsd.c:746 eelf32mipswindiss.c:579 eelf64bmip.c:760
+#: eelf64btsmip.c:746 eelf64btsmip_fbsd.c:746 eelf64ltsmip.c:746
+#: eelf64ltsmip_fbsd.c:746 eelf_mipsel_haiku.c:746
#, c-format
msgid ""
" --compact-branches Generate compact branches/jumps for MIPS R6\n"
msgstr ""
-#: eelf32b4300.c:743 eelf32bmip.c:743 eelf32bmipn32.c:757 eelf32bsmip.c:757
-#: eelf32btsmip.c:743 eelf32btsmip_fbsd.c:743 eelf32btsmipn32.c:743
-#: eelf32btsmipn32_fbsd.c:743 eelf32ebmip.c:743 eelf32ebmipvxworks.c:782
-#: eelf32elmip.c:743 eelf32elmipvxworks.c:782 eelf32l4300.c:743
-#: eelf32lmip.c:743 eelf32lr5900.c:602 eelf32lr5900n32.c:601 eelf32lsmip.c:743
-#: eelf32ltsmip.c:743 eelf32ltsmip_fbsd.c:743 eelf32ltsmipn32.c:743
-#: eelf32ltsmipn32_fbsd.c:743 eelf32mipswindiss.c:576 eelf64bmip.c:757
-#: eelf64btsmip.c:743 eelf64btsmip_fbsd.c:743 eelf64ltsmip.c:743
-#: eelf64ltsmip_fbsd.c:743 eelf_mipsel_haiku.c:743
+#: eelf32b4300.c:749 eelf32bmip.c:749 eelf32bmipn32.c:763 eelf32bsmip.c:763
+#: eelf32btsmip.c:749 eelf32btsmip_fbsd.c:749 eelf32btsmipn32.c:749
+#: eelf32btsmipn32_fbsd.c:749 eelf32ebmip.c:749 eelf32ebmipvxworks.c:788
+#: eelf32elmip.c:749 eelf32elmipvxworks.c:788 eelf32l4300.c:749
+#: eelf32lmip.c:749 eelf32lr5900.c:608 eelf32lr5900n32.c:607 eelf32lsmip.c:749
+#: eelf32ltsmip.c:749 eelf32ltsmip_fbsd.c:749 eelf32ltsmipn32.c:749
+#: eelf32ltsmipn32_fbsd.c:749 eelf32mipswindiss.c:582 eelf64bmip.c:763
+#: eelf64btsmip.c:749 eelf64btsmip_fbsd.c:749 eelf64ltsmip.c:749
+#: eelf64ltsmip_fbsd.c:749 eelf_mipsel_haiku.c:749
#, c-format
msgid ""
" --no-compact-branches Generate delay slot branches/jumps for MIPS "
"R6\n"
msgstr ""
-#: eelf32bfin.c:482 eelf32bfinfd.c:507
+#: eelf32bfin.c:488 eelf32bfinfd.c:513
#, c-format
msgid " --code-in-l1 Put code in L1\n"
msgstr ""
-#: eelf32bfin.c:484 eelf32bfinfd.c:509
+#: eelf32bfin.c:490 eelf32bfinfd.c:515
#, c-format
msgid " --data-in-l1 Put data in L1\n"
msgstr ""
+#: eelf32briscv.c:583 eelf32briscv_ilp32.c:583 eelf32briscv_ilp32f.c:583
+#: eelf32lriscv.c:583 eelf32lriscv_ilp32.c:583 eelf32lriscv_ilp32f.c:583
+#: eelf64briscv.c:583 eelf64briscv_lp64.c:583 eelf64briscv_lp64f.c:583
+#: eelf64lriscv.c:583 eelf64lriscv_lp64.c:583 eelf64lriscv_lp64f.c:583
+#, c-format
+msgid " --relax-gp Perform GP relaxation\n"
+msgstr ""
+
+#: eelf32briscv.c:584 eelf32briscv_ilp32.c:584 eelf32briscv_ilp32f.c:584
+#: eelf32lriscv.c:584 eelf32lriscv_ilp32.c:584 eelf32lriscv_ilp32f.c:584
+#: eelf64briscv.c:584 eelf64briscv_lp64.c:584 eelf64briscv_lp64f.c:584
+#: eelf64lriscv.c:584 eelf64lriscv_lp64.c:584 eelf64lriscv_lp64f.c:584
+#, c-format
+msgid " --no-relax-gp Don't perform GP relaxation\n"
+msgstr ""
+
#: eelf32cr16.c:87
msgid ""
"%F%P: %pB: all input objects must be COFF or ELF for --embedded-relocs\n"
@@ -6002,6 +6182,10 @@ msgstr ""
msgid "%X%P: %pB: can not create runtime reloc information: %s\n"
msgstr ""
+#: eelf32kvx.c:63 eelf64kvx.c:63
+msgid "%F:%P: -pie not supported\n"
+msgstr ""
+
#: eelf32lppc.c:98 eelf32lppclinux.c:98 eelf32lppcnto.c:98 eelf32lppcsim.c:98
#: eelf32ppc.c:98 eelf32ppc_fbsd.c:98 eelf32ppchaiku.c:98 eelf32ppclinux.c:98
#: eelf32ppcnto.c:98 eelf32ppcsim.c:98 eelf32ppcwindiss.c:98
@@ -6033,76 +6217,60 @@ msgstr ""
msgid "%X%P: ppc_finish_symbols problem %E\n"
msgstr ""
-#: eelf32lppc.c:784 eelf32lppclinux.c:784 eelf32lppcnto.c:784
-#: eelf32lppcsim.c:784 eelf32ppc.c:784 eelf32ppc_fbsd.c:784
-#: eelf32ppchaiku.c:784 eelf32ppclinux.c:784 eelf32ppcnto.c:784
-#: eelf32ppcsim.c:784 eelf32ppcvxworks.c:758 eelf32ppcwindiss.c:784
-#: eelf64lppc.c:1239 eelf64lppc_fbsd.c:1239 eelf64ppc.c:1239
-#: eelf64ppc_fbsd.c:1239
+#: eelf32lppc.c:790 eelf32lppclinux.c:790 eelf32lppcnto.c:790
+#: eelf32lppcsim.c:790 eelf32ppc.c:790 eelf32ppc_fbsd.c:790
+#: eelf32ppchaiku.c:790 eelf32ppclinux.c:790 eelf32ppcnto.c:790
+#: eelf32ppcsim.c:790 eelf32ppcvxworks.c:764 eelf32ppcwindiss.c:790
+#: eelf64lppc.c:1245 eelf64lppc_fbsd.c:1245 eelf64ppc.c:1245
+#: eelf64ppc_fbsd.c:1245
msgid "%F%P: invalid --plt-align `%s'\n"
msgstr ""
-#: 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:791 eelf32ppcwindiss.c:817
+#: eelf32lppc.c:823 eelf32lppclinux.c:823 eelf32lppcnto.c:823
+#: eelf32lppcsim.c:823 eelf32ppc.c:823 eelf32ppc_fbsd.c:823
+#: eelf32ppchaiku.c:823 eelf32ppclinux.c:823 eelf32ppcnto.c:823
+#: eelf32ppcsim.c:823 eelf32ppcvxworks.c:797 eelf32ppcwindiss.c:823
msgid "%F%P: invalid pagesize `%s'\n"
msgstr ""
-#: eelf32lppc.c:847 eelf32lppclinux.c:847 eelf32lppcnto.c:847
-#: eelf32lppcsim.c:847 eelf32ppc.c:847 eelf32ppc_fbsd.c:847
-#: eelf32ppchaiku.c:847 eelf32ppclinux.c:847 eelf32ppcnto.c:847
-#: eelf32ppcsim.c:847 eelf32ppcvxworks.c:825 eelf32ppcwindiss.c:847
-#: eelf64lppc.c:1424 eelf64lppc_fbsd.c:1424 eelf64ppc.c:1424
-#: eelf64ppc_fbsd.c:1424
-#, c-format
-msgid " --emit-stub-syms Label linker stubs with a symbol\n"
-msgstr ""
-
-#: eelf32lppc.c:850 eelf32lppclinux.c:850 eelf32lppcnto.c:850
-#: eelf32lppcsim.c:850 eelf32ppc.c:850 eelf32ppc_fbsd.c:850
-#: eelf32ppchaiku.c:850 eelf32ppclinux.c:850 eelf32ppcnto.c:850
-#: eelf32ppcsim.c:850 eelf32ppcvxworks.c:828 eelf32ppcwindiss.c:850
-#: eelf64lppc.c:1427 eelf64lppc_fbsd.c:1427 eelf64ppc.c:1427
-#: eelf64ppc_fbsd.c:1427
-#, c-format
-msgid " --no-emit-stub-syms Don't label linker stubs with a symbol\n"
-msgstr ""
-
#: eelf32lppc.c:853 eelf32lppclinux.c:853 eelf32lppcnto.c:853
#: eelf32lppcsim.c:853 eelf32ppc.c:853 eelf32ppc_fbsd.c:853
#: eelf32ppchaiku.c:853 eelf32ppclinux.c:853 eelf32ppcnto.c:853
#: eelf32ppcsim.c:853 eelf32ppcvxworks.c:831 eelf32ppcwindiss.c:853
-#: eelf64lppc.c:1447 eelf64lppc_fbsd.c:1447 eelf64ppc.c:1447
-#: eelf64ppc_fbsd.c:1447
+#: eelf64lppc.c:1430 eelf64lppc_fbsd.c:1430 eelf64ppc.c:1430
+#: eelf64ppc_fbsd.c:1430
#, c-format
-msgid " --no-tls-optimize Don't try to optimize TLS accesses\n"
+msgid " --emit-stub-syms Label linker stubs with a symbol\n"
msgstr ""
#: eelf32lppc.c:856 eelf32lppclinux.c:856 eelf32lppcnto.c:856
#: eelf32lppcsim.c:856 eelf32ppc.c:856 eelf32ppc_fbsd.c:856
#: eelf32ppchaiku.c:856 eelf32ppclinux.c:856 eelf32ppcnto.c:856
#: eelf32ppcsim.c:856 eelf32ppcvxworks.c:834 eelf32ppcwindiss.c:856
-#: eelf64lppc.c:1453 eelf64lppc_fbsd.c:1453 eelf64ppc.c:1453
-#: eelf64ppc_fbsd.c:1453
+#: eelf64lppc.c:1433 eelf64lppc_fbsd.c:1433 eelf64ppc.c:1433
+#: eelf64ppc_fbsd.c:1433
#, c-format
-msgid " --no-tls-get-addr-optimize Don't use a special __tls_get_addr call\n"
+msgid " --no-emit-stub-syms Don't label linker stubs with a symbol\n"
msgstr ""
#: eelf32lppc.c:859 eelf32lppclinux.c:859 eelf32lppcnto.c:859
#: eelf32lppcsim.c:859 eelf32ppc.c:859 eelf32ppc_fbsd.c:859
#: eelf32ppchaiku.c:859 eelf32ppclinux.c:859 eelf32ppcnto.c:859
-#: eelf32ppcsim.c:859 eelf32ppcwindiss.c:859
+#: eelf32ppcsim.c:859 eelf32ppcvxworks.c:837 eelf32ppcwindiss.c:859
+#: eelf64lppc.c:1453 eelf64lppc_fbsd.c:1453 eelf64ppc.c:1453
+#: eelf64ppc_fbsd.c:1453
#, c-format
-msgid " --secure-plt Use new-style PLT if possible\n"
+msgid " --no-tls-optimize Don't try to optimize TLS accesses\n"
msgstr ""
#: eelf32lppc.c:862 eelf32lppclinux.c:862 eelf32lppcnto.c:862
#: eelf32lppcsim.c:862 eelf32ppc.c:862 eelf32ppc_fbsd.c:862
#: eelf32ppchaiku.c:862 eelf32ppclinux.c:862 eelf32ppcnto.c:862
-#: eelf32ppcsim.c:862 eelf32ppcwindiss.c:862
+#: eelf32ppcsim.c:862 eelf32ppcvxworks.c:840 eelf32ppcwindiss.c:862
+#: eelf64lppc.c:1459 eelf64lppc_fbsd.c:1459 eelf64ppc.c:1459
+#: eelf64ppc_fbsd.c:1459
#, c-format
-msgid " --bss-plt Force old-style BSS PLT\n"
+msgid " --no-tls-get-addr-optimize Don't use a special __tls_get_addr call\n"
msgstr ""
#: eelf32lppc.c:865 eelf32lppclinux.c:865 eelf32lppcnto.c:865
@@ -6110,60 +6278,60 @@ msgstr ""
#: eelf32ppchaiku.c:865 eelf32ppclinux.c:865 eelf32ppcnto.c:865
#: eelf32ppcsim.c:865 eelf32ppcwindiss.c:865
#, c-format
-msgid " --plt-align Align PLT call stubs to fit cache lines\n"
+msgid " --secure-plt Use new-style PLT if possible\n"
msgstr ""
#: eelf32lppc.c:868 eelf32lppclinux.c:868 eelf32lppcnto.c:868
#: eelf32lppcsim.c:868 eelf32ppc.c:868 eelf32ppc_fbsd.c:868
#: eelf32ppchaiku.c:868 eelf32ppclinux.c:868 eelf32ppcnto.c:868
-#: eelf32ppcsim.c:868 eelf32ppcwindiss.c:868 eelf64lppc.c:1406
-#: eelf64lppc_fbsd.c:1406 eelf64ppc.c:1406 eelf64ppc_fbsd.c:1406
+#: eelf32ppcsim.c:868 eelf32ppcwindiss.c:868
#, c-format
-msgid " --no-plt-align Dont't align individual PLT call stubs\n"
+msgid " --bss-plt Force old-style BSS PLT\n"
msgstr ""
#: eelf32lppc.c:871 eelf32lppclinux.c:871 eelf32lppcnto.c:871
#: eelf32lppcsim.c:871 eelf32ppc.c:871 eelf32ppc_fbsd.c:871
#: eelf32ppchaiku.c:871 eelf32ppclinux.c:871 eelf32ppcnto.c:871
-#: eelf32ppcsim.c:871 eelf32ppcwindiss.c:871 eelf64lppc.c:1465
-#: eelf64lppc_fbsd.c:1465 eelf64ppc.c:1465 eelf64ppc_fbsd.c:1465
+#: eelf32ppcsim.c:871 eelf32ppcwindiss.c:871
#, c-format
-msgid ""
-" --no-inline-optimize Don't convert inline PLT to direct calls\n"
+msgid " --plt-align Align PLT call stubs to fit cache lines\n"
msgstr ""
#: eelf32lppc.c:874 eelf32lppclinux.c:874 eelf32lppcnto.c:874
#: eelf32lppcsim.c:874 eelf32ppc.c:874 eelf32ppc_fbsd.c:874
#: eelf32ppchaiku.c:874 eelf32ppclinux.c:874 eelf32ppcnto.c:874
-#: eelf32ppcsim.c:874 eelf32ppcwindiss.c:874
+#: eelf32ppcsim.c:874 eelf32ppcwindiss.c:874 eelf64lppc.c:1412
+#: eelf64lppc_fbsd.c:1412 eelf64ppc.c:1412 eelf64ppc_fbsd.c:1412
#, c-format
-msgid " --sdata-got Force GOT location just before .sdata\n"
+msgid " --no-plt-align Dont't align individual PLT call stubs\n"
msgstr ""
#: eelf32lppc.c:877 eelf32lppclinux.c:877 eelf32lppcnto.c:877
#: eelf32lppcsim.c:877 eelf32ppc.c:877 eelf32ppc_fbsd.c:877
#: eelf32ppchaiku.c:877 eelf32ppclinux.c:877 eelf32ppcnto.c:877
-#: eelf32ppcsim.c:877 eelf32ppcvxworks.c:837 eelf32ppcwindiss.c:877
+#: eelf32ppcsim.c:877 eelf32ppcwindiss.c:877 eelf64lppc.c:1471
+#: eelf64lppc_fbsd.c:1471 eelf64ppc.c:1471 eelf64ppc_fbsd.c:1471
#, c-format
msgid ""
-" --ppc476-workaround [=pagesize]\n"
-" Avoid a cache bug on ppc476\n"
+" --no-inline-optimize Don't convert inline PLT to direct calls\n"
msgstr ""
-#: eelf32lppc.c:881 eelf32lppclinux.c:881 eelf32lppcnto.c:881
-#: eelf32lppcsim.c:881 eelf32ppc.c:881 eelf32ppc_fbsd.c:881
-#: eelf32ppchaiku.c:881 eelf32ppclinux.c:881 eelf32ppcnto.c:881
-#: eelf32ppcsim.c:881 eelf32ppcvxworks.c:841 eelf32ppcwindiss.c:881
+#: eelf32lppc.c:880 eelf32lppclinux.c:880 eelf32lppcnto.c:880
+#: eelf32lppcsim.c:880 eelf32ppc.c:880 eelf32ppc_fbsd.c:880
+#: eelf32ppchaiku.c:880 eelf32ppclinux.c:880 eelf32ppcnto.c:880
+#: eelf32ppcsim.c:880 eelf32ppcwindiss.c:880
#, c-format
-msgid " --no-ppc476-workaround Disable workaround\n"
+msgid " --sdata-got Force GOT location just before .sdata\n"
msgstr ""
-#: eelf32lppc.c:884 eelf32lppclinux.c:884 eelf32lppcnto.c:884
-#: eelf32lppcsim.c:884 eelf32ppc.c:884 eelf32ppc_fbsd.c:884
-#: eelf32ppchaiku.c:884 eelf32ppclinux.c:884 eelf32ppcnto.c:884
-#: eelf32ppcsim.c:884 eelf32ppcvxworks.c:844 eelf32ppcwindiss.c:884
+#: eelf32lppc.c:883 eelf32lppclinux.c:883 eelf32lppcnto.c:883
+#: eelf32lppcsim.c:883 eelf32ppc.c:883 eelf32ppc_fbsd.c:883
+#: eelf32ppchaiku.c:883 eelf32ppclinux.c:883 eelf32ppcnto.c:883
+#: eelf32ppcsim.c:883 eelf32ppcvxworks.c:843 eelf32ppcwindiss.c:883
#, c-format
-msgid " --no-pic-fixup Don't edit non-pic to pic\n"
+msgid ""
+" --ppc476-workaround [=pagesize]\n"
+" Avoid a cache bug on ppc476\n"
msgstr ""
#: eelf32lppc.c:887 eelf32lppclinux.c:887 eelf32lppcnto.c:887
@@ -6171,19 +6339,35 @@ msgstr ""
#: eelf32ppchaiku.c:887 eelf32ppclinux.c:887 eelf32ppcnto.c:887
#: eelf32ppcsim.c:887 eelf32ppcvxworks.c:847 eelf32ppcwindiss.c:887
#, c-format
+msgid " --no-ppc476-workaround Disable workaround\n"
+msgstr ""
+
+#: eelf32lppc.c:890 eelf32lppclinux.c:890 eelf32lppcnto.c:890
+#: eelf32lppcsim.c:890 eelf32ppc.c:890 eelf32ppc_fbsd.c:890
+#: eelf32ppchaiku.c:890 eelf32ppclinux.c:890 eelf32ppcnto.c:890
+#: eelf32ppcsim.c:890 eelf32ppcvxworks.c:850 eelf32ppcwindiss.c:890
+#, c-format
+msgid " --no-pic-fixup Don't edit non-pic to pic\n"
+msgstr ""
+
+#: eelf32lppc.c:893 eelf32lppclinux.c:893 eelf32lppcnto.c:893
+#: eelf32lppcsim.c:893 eelf32ppc.c:893 eelf32ppc_fbsd.c:893
+#: eelf32ppchaiku.c:893 eelf32ppclinux.c:893 eelf32ppcnto.c:893
+#: eelf32ppcsim.c:893 eelf32ppcvxworks.c:853 eelf32ppcwindiss.c:893
+#, c-format
msgid ""
" --vle-reloc-fixup Correct old object file 16A/16D relocation\n"
msgstr ""
-#: eelf32mcore.c:332
+#: eelf32mcore.c:338
#, c-format
msgid ""
" --base_file <basefile> Generate a base file for relocatable DLLs\n"
msgstr ""
-#: eelf32metag.c:745 eelf64lppc.c:1381 eelf64lppc_fbsd.c:1381 eelf64ppc.c:1381
-#: eelf64ppc_fbsd.c:1381 ehppaelf.c:605 ehppalinux.c:787 ehppanbsd.c:787
-#: ehppaobsd.c:787
+#: eelf32metag.c:751 eelf64lppc.c:1387 eelf64lppc_fbsd.c:1387 eelf64ppc.c:1387
+#: eelf64ppc_fbsd.c:1387 ehppaelf.c:611 ehppalinux.c:793 ehppanbsd.c:793
+#: ehppaobsd.c:793
#, c-format
msgid ""
" --stub-group-size=N Maximum size of a group of input sections "
@@ -6200,28 +6384,28 @@ msgid ""
" choose suitable defaults.\n"
msgstr ""
-#: eelf32rx.c:364
+#: eelf32rx.c:370
#, c-format
msgid ""
" --no-flag-mismatch-warnings Don't warn about objects with incompatible\n"
" endian or dsp settings\n"
msgstr ""
-#: eelf32rx.c:366
+#: eelf32rx.c:372
#, c-format
msgid ""
" --flag-mismatch-warnings Warn about objects with incompatible\n"
" endian, dsp or ABI settings\n"
msgstr ""
-#: eelf32rx.c:368
+#: eelf32rx.c:374
#, c-format
msgid ""
" --ignore-lma Ignore segment LMAs [default]\n"
" (for Renesas Tools compatibility)\n"
msgstr ""
-#: eelf32rx.c:370
+#: eelf32rx.c:376
#, c-format
msgid " --no-ignore-lma Don't ignore segment LMAs\n"
msgstr ""
@@ -6280,24 +6464,24 @@ msgstr ""
msgid "%F%P: failed to create .xtensa.info section\n"
msgstr ""
-#: eelf32xtensa.c:1256
+#: eelf32xtensa.c:1254
msgid "%F%P: Relaxation not supported with --enable-non-contiguous-regions.\n"
msgstr ""
-#: eelf32xtensa.c:2416
+#: eelf32xtensa.c:2420
#, c-format
msgid ""
" --size-opt When relaxing longcalls, prefer size\n"
" optimization over branch target alignment\n"
msgstr ""
-#: eelf32xtensa.c:2419
+#: eelf32xtensa.c:2423
#, c-format
msgid ""
" --abi-windowed Choose windowed ABI for the output object\n"
msgstr ""
-#: eelf32xtensa.c:2421
+#: eelf32xtensa.c:2425
#, c-format
msgid " --abi-call0 Choose call0 ABI for the output object\n"
msgstr ""
@@ -6306,19 +6490,19 @@ msgstr ""
msgid "%F%P: %pB: Instruction sets of object files incompatible\n"
msgstr ""
-#: eelf64_ia64.c:518 eelf64_ia64_fbsd.c:518
+#: eelf64_ia64.c:524 eelf64_ia64_fbsd.c:524
#, c-format
msgid ""
" --itanium Generate code for Intel Itanium processor\n"
msgstr ""
-#: eelf64_s390.c:561
+#: eelf64_s390.c:567
#, c-format
msgid ""
" --s390-pgste Tell the kernel to allocate 4k page tables\n"
msgstr ""
-#: eelf64alpha.c:590 eelf64alpha_fbsd.c:590 eelf64alpha_nbsd.c:590
+#: eelf64alpha.c:596 eelf64alpha_fbsd.c:596 eelf64alpha_nbsd.c:596
#, c-format
msgid ""
" --taso Load executable in the lower 31-bit "
@@ -6326,12 +6510,12 @@ msgid ""
" virtual address range\n"
msgstr ""
-#: eelf64alpha.c:593 eelf64alpha_fbsd.c:593 eelf64alpha_nbsd.c:593
+#: eelf64alpha.c:599 eelf64alpha_fbsd.c:599 eelf64alpha_nbsd.c:599
#, c-format
msgid " --secureplt Force PLT in text segment\n"
msgstr ""
-#: eelf64alpha.c:595 eelf64alpha_fbsd.c:595 eelf64alpha_nbsd.c:595
+#: eelf64alpha.c:601 eelf64alpha_fbsd.c:601 eelf64alpha_nbsd.c:601
#, c-format
msgid " --no-secureplt Force PLT in data segment\n"
msgstr ""
@@ -6350,76 +6534,76 @@ msgstr ""
msgid "%P: .init/.fini fragments use differing TOC pointers\n"
msgstr ""
-#: eelf64lppc.c:1268 eelf64lppc_fbsd.c:1268 eelf64ppc.c:1268
-#: eelf64ppc_fbsd.c:1268
+#: eelf64lppc.c:1274 eelf64lppc_fbsd.c:1274 eelf64ppc.c:1274
+#: eelf64ppc_fbsd.c:1274
msgid "%F%P: invalid --power10-stubs argument `%s'\n"
msgstr ""
-#: eelf64lppc.c:1391 eelf64ppc.c:1391
+#: eelf64lppc.c:1397 eelf64ppc.c:1397
#, c-format
msgid ""
" --plt-static-chain PLT call stubs should load r11 (default)\n"
msgstr ""
-#: eelf64lppc.c:1394 eelf64ppc.c:1394
+#: eelf64lppc.c:1400 eelf64ppc.c:1400
#, c-format
msgid " --no-plt-static-chain PLT call stubs should not load r11\n"
msgstr ""
-#: eelf64lppc.c:1397 eelf64lppc_fbsd.c:1397 eelf64ppc.c:1397
-#: eelf64ppc_fbsd.c:1397
+#: eelf64lppc.c:1403 eelf64lppc_fbsd.c:1403 eelf64ppc.c:1403
+#: eelf64ppc_fbsd.c:1403
#, c-format
msgid " --plt-thread-safe PLT call stubs with load-load barrier\n"
msgstr ""
-#: eelf64lppc.c:1400 eelf64lppc_fbsd.c:1400 eelf64ppc.c:1400
-#: eelf64ppc_fbsd.c:1400
+#: eelf64lppc.c:1406 eelf64lppc_fbsd.c:1406 eelf64ppc.c:1406
+#: eelf64ppc_fbsd.c:1406
#, c-format
msgid " --no-plt-thread-safe PLT call stubs without barrier\n"
msgstr ""
-#: eelf64lppc.c:1403 eelf64lppc_fbsd.c:1403 eelf64ppc.c:1403
-#: eelf64ppc_fbsd.c:1403
+#: eelf64lppc.c:1409 eelf64lppc_fbsd.c:1409 eelf64ppc.c:1409
+#: eelf64ppc_fbsd.c:1409
#, c-format
msgid " --plt-align [=<align>] Align PLT call stubs to fit cache lines\n"
msgstr ""
-#: eelf64lppc.c:1409 eelf64lppc_fbsd.c:1409 eelf64ppc.c:1409
-#: eelf64ppc_fbsd.c:1409
+#: eelf64lppc.c:1415 eelf64lppc_fbsd.c:1415 eelf64ppc.c:1415
+#: eelf64ppc_fbsd.c:1415
#, c-format
msgid ""
" --plt-localentry Optimize calls to ELFv2 localentry:0 "
"functions\n"
msgstr ""
-#: eelf64lppc.c:1412 eelf64lppc_fbsd.c:1412 eelf64ppc.c:1412
-#: eelf64ppc_fbsd.c:1412
+#: eelf64lppc.c:1418 eelf64lppc_fbsd.c:1418 eelf64ppc.c:1418
+#: eelf64ppc_fbsd.c:1418
#, c-format
msgid " --no-plt-localentry Don't optimize ELFv2 calls\n"
msgstr ""
-#: eelf64lppc.c:1415 eelf64lppc_fbsd.c:1415 eelf64ppc.c:1415
-#: eelf64ppc_fbsd.c:1415
+#: eelf64lppc.c:1421 eelf64lppc_fbsd.c:1421 eelf64ppc.c:1421
+#: eelf64ppc_fbsd.c:1421
#, c-format
msgid ""
" --power10-stubs [=auto] Use Power10 PLT call stubs (default auto)\n"
msgstr ""
-#: eelf64lppc.c:1418 eelf64lppc_fbsd.c:1418 eelf64ppc.c:1418
-#: eelf64ppc_fbsd.c:1418
+#: eelf64lppc.c:1424 eelf64lppc_fbsd.c:1424 eelf64ppc.c:1424
+#: eelf64ppc_fbsd.c:1424
#, c-format
msgid ""
" --no-pcrel-optimize Don't perform R_PPC64_PCREL_OPT optimization\n"
msgstr ""
-#: eelf64lppc.c:1421 eelf64lppc_fbsd.c:1421 eelf64ppc.c:1421
-#: eelf64ppc_fbsd.c:1421
+#: eelf64lppc.c:1427 eelf64lppc_fbsd.c:1427 eelf64ppc.c:1427
+#: eelf64ppc_fbsd.c:1427
#, c-format
msgid " --no-power10-stubs Don't use Power10 PLT call stubs\n"
msgstr ""
-#: eelf64lppc.c:1430 eelf64lppc_fbsd.c:1430 eelf64ppc.c:1430
-#: eelf64ppc_fbsd.c:1430
+#: eelf64lppc.c:1436 eelf64lppc_fbsd.c:1436 eelf64ppc.c:1436
+#: eelf64ppc_fbsd.c:1436
#, c-format
msgid ""
" --dotsyms For every version pattern \"foo\" in a "
@@ -6429,15 +6613,15 @@ msgid ""
" descriptor symbols. Defaults to on.\n"
msgstr ""
-#: eelf64lppc.c:1436 eelf64lppc_fbsd.c:1436 eelf64ppc.c:1436
-#: eelf64ppc_fbsd.c:1436
+#: eelf64lppc.c:1442 eelf64lppc_fbsd.c:1442 eelf64ppc.c:1442
+#: eelf64ppc_fbsd.c:1442
#, c-format
msgid ""
" --no-dotsyms Don't do anything special in version scripts\n"
msgstr ""
-#: eelf64lppc.c:1439 eelf64lppc_fbsd.c:1439 eelf64ppc.c:1439
-#: eelf64ppc_fbsd.c:1439
+#: eelf64lppc.c:1445 eelf64lppc_fbsd.c:1445 eelf64ppc.c:1445
+#: eelf64ppc_fbsd.c:1445
#, c-format
msgid ""
" --save-restore-funcs Provide register save and restore routines "
@@ -6446,71 +6630,71 @@ msgid ""
" final link, off for ld -r.\n"
msgstr ""
-#: eelf64lppc.c:1444 eelf64lppc_fbsd.c:1444 eelf64ppc.c:1444
-#: eelf64ppc_fbsd.c:1444
+#: eelf64lppc.c:1450 eelf64lppc_fbsd.c:1450 eelf64ppc.c:1450
+#: eelf64ppc_fbsd.c:1450
#, c-format
msgid " --no-save-restore-funcs Don't provide these routines\n"
msgstr ""
-#: eelf64lppc.c:1450 eelf64lppc_fbsd.c:1450 eelf64ppc.c:1450
-#: eelf64ppc_fbsd.c:1450
+#: eelf64lppc.c:1456 eelf64lppc_fbsd.c:1456 eelf64ppc.c:1456
+#: eelf64ppc_fbsd.c:1456
#, c-format
msgid ""
" --tls-get-addr-optimize Force use of special __tls_get_addr call\n"
msgstr ""
-#: eelf64lppc.c:1456 eelf64lppc_fbsd.c:1456 eelf64ppc.c:1456
-#: eelf64ppc_fbsd.c:1456
+#: eelf64lppc.c:1462 eelf64lppc_fbsd.c:1462 eelf64ppc.c:1462
+#: eelf64ppc_fbsd.c:1462
#, c-format
msgid " --tls-get-addr-regsave Force register save __tls_get_addr stub\n"
msgstr ""
-#: eelf64lppc.c:1459 eelf64lppc_fbsd.c:1459 eelf64ppc.c:1459
-#: eelf64ppc_fbsd.c:1459
+#: eelf64lppc.c:1465 eelf64lppc_fbsd.c:1465 eelf64ppc.c:1465
+#: eelf64ppc_fbsd.c:1465
#, c-format
msgid ""
" --no-tls-get-addr-regsave Don't use register save __tls_get_addr stub\n"
msgstr ""
-#: eelf64lppc.c:1462 eelf64lppc_fbsd.c:1462 eelf64ppc.c:1462
-#: eelf64ppc_fbsd.c:1462
+#: eelf64lppc.c:1468 eelf64lppc_fbsd.c:1468 eelf64ppc.c:1468
+#: eelf64ppc_fbsd.c:1468
#, c-format
msgid " --no-opd-optimize Don't optimize the OPD section\n"
msgstr ""
-#: eelf64lppc.c:1468 eelf64lppc_fbsd.c:1468 eelf64ppc.c:1468
-#: eelf64ppc_fbsd.c:1468
+#: eelf64lppc.c:1474 eelf64lppc_fbsd.c:1474 eelf64ppc.c:1474
+#: eelf64ppc_fbsd.c:1474
#, c-format
msgid " --no-toc-optimize Don't optimize the TOC section\n"
msgstr ""
-#: eelf64lppc.c:1471 eelf64lppc_fbsd.c:1471 eelf64ppc.c:1471
-#: eelf64ppc_fbsd.c:1471
+#: eelf64lppc.c:1477 eelf64lppc_fbsd.c:1477 eelf64ppc.c:1477
+#: eelf64ppc_fbsd.c:1477
#, c-format
msgid ""
" --no-multi-toc Disallow automatic multiple toc sections\n"
msgstr ""
-#: eelf64lppc.c:1474 eelf64lppc_fbsd.c:1474 eelf64ppc.c:1474
-#: eelf64ppc_fbsd.c:1474
+#: eelf64lppc.c:1480 eelf64lppc_fbsd.c:1480 eelf64ppc.c:1480
+#: eelf64ppc_fbsd.c:1480
#, c-format
msgid " --no-toc-sort Don't sort TOC and GOT sections\n"
msgstr ""
-#: eelf64lppc.c:1477 eelf64lppc_fbsd.c:1477 eelf64ppc.c:1477
-#: eelf64ppc_fbsd.c:1477
+#: eelf64lppc.c:1483 eelf64lppc_fbsd.c:1483 eelf64ppc.c:1483
+#: eelf64ppc_fbsd.c:1483
#, c-format
msgid ""
" --non-overlapping-opd Canonicalize .opd, so that there are no\n"
" overlapping .opd entries\n"
msgstr ""
-#: eelf64lppc_fbsd.c:1391 eelf64ppc_fbsd.c:1391
+#: eelf64lppc_fbsd.c:1397 eelf64ppc_fbsd.c:1397
#, c-format
msgid " --plt-static-chain PLT call stubs should load r111\n"
msgstr ""
-#: eelf64lppc_fbsd.c:1394 eelf64ppc_fbsd.c:1394
+#: eelf64lppc_fbsd.c:1400 eelf64ppc_fbsd.c:1400
#, c-format
msgid ""
" --no-plt-static-chain PLT call stubs should not load r11 (default)\n"
@@ -6529,53 +6713,53 @@ msgstr ""
msgid "%F%P: can't finalize linker-allocated global registers\n"
msgstr ""
-#: eelf_x86_64.c:5706 eelf_x86_64_cloudabi.c:605 eelf_x86_64_fbsd.c:605
-#: eelf_x86_64_haiku.c:605 eelf_x86_64_sol2.c:737
+#: eelf_x86_64.c:5712 eelf_x86_64_cloudabi.c:611 eelf_x86_64_fbsd.c:611
+#: eelf_x86_64_haiku.c:611 eelf_x86_64_sol2.c:743
msgid "%F%P: invalid option for -z lam-u48-report=: %s\n"
msgstr ""
-#: eelf_x86_64.c:5720 eelf_x86_64_cloudabi.c:619 eelf_x86_64_fbsd.c:619
-#: eelf_x86_64_haiku.c:619 eelf_x86_64_sol2.c:751
+#: eelf_x86_64.c:5726 eelf_x86_64_cloudabi.c:625 eelf_x86_64_fbsd.c:625
+#: eelf_x86_64_haiku.c:625 eelf_x86_64_sol2.c:757
msgid "%F%P: invalid option for -z lam-u57-report=: %s\n"
msgstr ""
-#: eelf_x86_64.c:5741 eelf_x86_64_cloudabi.c:640 eelf_x86_64_fbsd.c:640
-#: eelf_x86_64_haiku.c:640 eelf_x86_64_sol2.c:772
+#: eelf_x86_64.c:5747 eelf_x86_64_cloudabi.c:646 eelf_x86_64_fbsd.c:646
+#: eelf_x86_64_haiku.c:646 eelf_x86_64_sol2.c:778
msgid "%F%P: invalid option for -z lam-report=: %s\n"
msgstr ""
-#: eelf_x86_64.c:5816 eelf_x86_64_cloudabi.c:715 eelf_x86_64_fbsd.c:715
-#: eelf_x86_64_haiku.c:715 eelf_x86_64_sol2.c:847
+#: eelf_x86_64.c:5827 eelf_x86_64_cloudabi.c:726 eelf_x86_64_fbsd.c:726
+#: eelf_x86_64_haiku.c:726 eelf_x86_64_sol2.c:858
#, c-format
msgid ""
" -z lam-u48 Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U48\n"
msgstr ""
-#: eelf_x86_64.c:5818 eelf_x86_64_cloudabi.c:717 eelf_x86_64_fbsd.c:717
-#: eelf_x86_64_haiku.c:717 eelf_x86_64_sol2.c:849
+#: eelf_x86_64.c:5829 eelf_x86_64_cloudabi.c:728 eelf_x86_64_fbsd.c:728
+#: eelf_x86_64_haiku.c:728 eelf_x86_64_sol2.c:860
#, c-format
msgid ""
" -z lam-u48-report=[none|warning|error] (default: none)\n"
" Report missing LAM_U48 property\n"
msgstr ""
-#: eelf_x86_64.c:5821 eelf_x86_64_cloudabi.c:720 eelf_x86_64_fbsd.c:720
-#: eelf_x86_64_haiku.c:720 eelf_x86_64_sol2.c:852
+#: eelf_x86_64.c:5832 eelf_x86_64_cloudabi.c:731 eelf_x86_64_fbsd.c:731
+#: eelf_x86_64_haiku.c:731 eelf_x86_64_sol2.c:863
#, c-format
msgid ""
" -z lam-u57 Generate GNU_PROPERTY_X86_FEATURE_1_LAM_U57\n"
msgstr ""
-#: eelf_x86_64.c:5823 eelf_x86_64_cloudabi.c:722 eelf_x86_64_fbsd.c:722
-#: eelf_x86_64_haiku.c:722 eelf_x86_64_sol2.c:854
+#: eelf_x86_64.c:5834 eelf_x86_64_cloudabi.c:733 eelf_x86_64_fbsd.c:733
+#: eelf_x86_64_haiku.c:733 eelf_x86_64_sol2.c:865
#, c-format
msgid ""
" -z lam-u57-report=[none|warning|error] (default: none)\n"
" Report missing LAM_U57 property\n"
msgstr ""
-#: eelf_x86_64.c:5826 eelf_x86_64_cloudabi.c:725 eelf_x86_64_fbsd.c:725
-#: eelf_x86_64_haiku.c:725 eelf_x86_64_sol2.c:857
+#: eelf_x86_64.c:5837 eelf_x86_64_cloudabi.c:736 eelf_x86_64_fbsd.c:736
+#: eelf_x86_64_haiku.c:736 eelf_x86_64_sol2.c:868
#, c-format
msgid ""
" -z lam-report=[none|warning|error] (default: none)\n"
@@ -6586,7 +6770,7 @@ msgstr ""
msgid "%X%P: can not set gp\n"
msgstr ""
-#: ehppaelf.c:601 ehppalinux.c:783 ehppanbsd.c:783 ehppaobsd.c:783
+#: ehppaelf.c:607 ehppalinux.c:789 ehppanbsd.c:789 ehppaobsd.c:789
#, c-format
msgid ""
" --multi-subspace Generate import and export stubs to support\n"
@@ -6619,7 +6803,7 @@ msgstr ""
msgid "%X%P: changing output format whilst linking is not supported\n"
msgstr ""
-#: em68hc11elf.c:598 em68hc11elfb.c:598 em68hc12elf.c:598 em68hc12elfb.c:598
+#: em68hc11elf.c:604 em68hc11elfb.c:604 em68hc12elf.c:604 em68hc12elfb.c:604
#, c-format
msgid ""
" --no-trampoline Do not generate the far trampolines used to "
@@ -6627,7 +6811,7 @@ msgid ""
" a far function using jsr or bsr\n"
msgstr ""
-#: em68hc11elf.c:601 em68hc11elfb.c:601 em68hc12elf.c:601 em68hc12elfb.c:601
+#: em68hc11elf.c:607 em68hc11elfb.c:607 em68hc12elf.c:607 em68hc12elfb.c:607
#, c-format
msgid ""
" --bank-window NAME Specify the name of the memory region "
@@ -6639,11 +6823,11 @@ msgstr ""
msgid "%F%P: %pB: all input objects must be ELF for --embedded-relocs\n"
msgstr ""
-#: em68kelf.c:644 em68kelfnbsd.c:644
+#: em68kelf.c:650 em68kelfnbsd.c:650
msgid "%P: unrecognized --got argument '%s'\n"
msgstr ""
-#: em68kelf.c:657 em68kelfnbsd.c:657
+#: em68kelf.c:663 em68kelfnbsd.c:663
#, c-format
msgid " --got=<type> Specify GOT handling scheme\n"
msgstr ""
@@ -6710,82 +6894,82 @@ msgstr ""
msgid "%F%P: %pB: ABI version of object files mismatched\n"
msgstr ""
-#: ends32belf.c:432 ends32belf16m.c:432 ends32belf_linux.c:565 ends32elf.c:432
-#: ends32elf16m.c:432 ends32elf_linux.c:565
+#: ends32belf.c:438 ends32belf16m.c:438 ends32belf_linux.c:571 ends32elf.c:438
+#: ends32elf16m.c:438 ends32elf_linux.c:571
msgid "%P: --mbaseline is not used anymore\n"
msgstr ""
-#: ends32belf.c:443 ends32belf16m.c:443 ends32belf_linux.c:576 ends32elf.c:443
-#: ends32elf16m.c:443 ends32elf_linux.c:576
+#: ends32belf.c:449 ends32belf16m.c:449 ends32belf_linux.c:582 ends32elf.c:449
+#: ends32elf16m.c:449 ends32elf_linux.c:582
msgid "%P: --relax-[no-]reduce-fp-updat is not used anymore\n"
msgstr ""
-#: ends32belf.c:447 ends32belf16m.c:447 ends32belf_linux.c:580 ends32elf.c:447
-#: ends32elf16m.c:447 ends32elf_linux.c:580
+#: ends32belf.c:453 ends32belf16m.c:453 ends32belf_linux.c:586 ends32elf.c:453
+#: ends32elf16m.c:453 ends32elf_linux.c:586
msgid "%P: missing file for --mexport-symbols\n"
msgstr ""
-#: ends32belf.c:460 ends32belf.c:469 ends32belf16m.c:460 ends32belf16m.c:469
-#: ends32belf_linux.c:593 ends32belf_linux.c:602 ends32elf.c:460
-#: ends32elf.c:469 ends32elf16m.c:460 ends32elf16m.c:469 ends32elf_linux.c:593
-#: ends32elf_linux.c:602
+#: ends32belf.c:466 ends32belf.c:475 ends32belf16m.c:466 ends32belf16m.c:475
+#: ends32belf_linux.c:599 ends32belf_linux.c:608 ends32elf.c:466
+#: ends32elf.c:475 ends32elf16m.c:466 ends32elf16m.c:475 ends32elf_linux.c:599
+#: ends32elf_linux.c:608
msgid "%P: valid arguments to --mhyper-relax=(low|medium|high)\n"
msgstr ""
-#: ends32belf.c:489 ends32belf16m.c:489 ends32belf_linux.c:622 ends32elf.c:489
-#: ends32elf16m.c:489 ends32elf_linux.c:622
+#: ends32belf.c:495 ends32belf16m.c:495 ends32belf_linux.c:628 ends32elf.c:495
+#: ends32elf16m.c:495 ends32elf_linux.c:628
#, c-format
msgid " --m[no-]fp-as-gp Disable/enable fp-as-gp relaxation\n"
msgstr ""
-#: ends32belf.c:491 ends32belf16m.c:491 ends32belf_linux.c:624 ends32elf.c:491
-#: ends32elf16m.c:491 ends32elf_linux.c:624
+#: ends32belf.c:497 ends32belf16m.c:497 ends32belf_linux.c:630 ends32elf.c:497
+#: ends32elf16m.c:497 ends32elf_linux.c:630
#, c-format
msgid " --mexport-symbols=FILE Exporting symbols in linker script\n"
msgstr ""
-#: ends32belf.c:493 ends32belf16m.c:493 ends32belf_linux.c:626 ends32elf.c:493
-#: ends32elf16m.c:493 ends32elf_linux.c:626
+#: ends32belf.c:499 ends32belf16m.c:499 ends32belf_linux.c:632 ends32elf.c:499
+#: ends32elf16m.c:499 ends32elf_linux.c:632
#, c-format
msgid ""
" --mhyper-relax=level Adjust relax level (low|medium|high). default: "
"medium\n"
msgstr ""
-#: ends32belf.c:495 ends32belf16m.c:495 ends32belf_linux.c:628 ends32elf.c:495
-#: ends32elf16m.c:495 ends32elf_linux.c:628
+#: ends32belf.c:501 ends32belf16m.c:501 ends32belf_linux.c:634 ends32elf.c:501
+#: ends32elf16m.c:501 ends32elf_linux.c:634
#, c-format
msgid " --m[no-]tlsdesc-trampoline Disable/enable TLS DESC trampoline\n"
msgstr ""
-#: epdp11.c:82
+#: epdp11.c:83
#, c-format
msgid ""
" -N, --omagic Do not make text readonly, do not page align data "
"(default)\n"
msgstr ""
-#: epdp11.c:83
+#: epdp11.c:84
#, c-format
msgid " -n, --nmagic Make text readonly, align data to next page\n"
msgstr ""
-#: epdp11.c:84
+#: epdp11.c:85
#, c-format
msgid ""
" -z, --imagic Make text readonly, separate instruction and data spaces\n"
msgstr ""
-#: epdp11.c:85
+#: epdp11.c:86
#, c-format
msgid " --no-omagic Equivalent to --nmagic\n"
msgstr ""
-#: etic3xcoff.c:69 etic3xcoff_onchip.c:69 etic4xcoff.c:69 etic54xcoff.c:69
+#: etic3xcoff.c:70 etic3xcoff_onchip.c:70 etic4xcoff.c:70 etic54xcoff.c:70
#, c-format
msgid " --format 0|1|2 Specify which COFF version to use\n"
msgstr ""
-#: etic3xcoff.c:91 etic3xcoff_onchip.c:91 etic4xcoff.c:91 etic54xcoff.c:91
+#: etic3xcoff.c:92 etic3xcoff_onchip.c:92 etic4xcoff.c:92 etic54xcoff.c:92
msgid "%F%P: invalid COFF format version %s\n"
msgstr ""