Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
binutils-gdb
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
redox-os
binutils-gdb
Commits
af127c21
Commit
af127c21
authored
Jul 14, 2018
by
Nick Clifton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.31 Release point
parent
0373ccfd
Changes
23
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
808 additions
and
711 deletions
+808
-711
ChangeLog
bfd/ChangeLog
+8
-0
configure
bfd/configure
+10
-10
development.sh
bfd/development.sh
+1
-1
bfd.pot
bfd/po/bfd.pot
+315
-316
version.m4
bfd/version.m4
+1
-1
ChangeLog
binutils/ChangeLog
+5
-0
configure
binutils/configure
+10
-10
ChangeLog
cpu/ChangeLog
+4
-0
ChangeLog
elfcpp/ChangeLog
+4
-0
ChangeLog
etc/ChangeLog
+4
-0
ChangeLog
gas/ChangeLog
+6
-0
configure
gas/configure
+10
-10
gas.pot
gas/po/gas.pot
+289
-278
ChangeLog
gold/ChangeLog
+5
-0
gold.pot
gold/po/gold.pot
+63
-32
ChangeLog
gprof/ChangeLog
+5
-0
configure
gprof/configure
+10
-10
ChangeLog
include/ChangeLog
+4
-0
ChangeLog
ld/ChangeLog
+5
-0
configure
ld/configure
+10
-10
ChangeLog
opcodes/ChangeLog
+6
-0
configure
opcodes/configure
+10
-10
opcodes.pot
opcodes/po/opcodes.pot
+23
-23
No files found.
bfd/ChangeLog
View file @
af127c21
2018-07-14 Nick Clifton <nickc@redhat.com>
2.31 Release point.
* version.m4: Update to 2.31.
* development.sh: Set to false.
* configure: Regenerate.
* po/bfd.pot: Regenerate.
2018-07-03 Alan Modra <amodra@gmail.com>
PR 17550
...
...
bfd/configure
View file @
af127c21
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for bfd 2.3
0.90
.
# Generated by GNU Autoconf 2.69 for bfd 2.3
1
.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
...
...
@@ -587,8 +587,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME
=
'bfd'
PACKAGE_TARNAME
=
'bfd'
PACKAGE_VERSION
=
'2.3
0.90
'
PACKAGE_STRING
=
'bfd 2.3
0.90
'
PACKAGE_VERSION
=
'2.3
1
'
PACKAGE_STRING
=
'bfd 2.3
1
'
PACKAGE_BUGREPORT
=
''
PACKAGE_URL
=
''
...
...
@@ -1391,7 +1391,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat
<<
_ACEOF
\`
configure' configures bfd 2.3
0.90
to adapt to many kinds of systems.
\`
configure' configures bfd 2.3
1
to adapt to many kinds of systems.
Usage:
$0
[OPTION]... [VAR=VALUE]...
...
...
@@ -1462,7 +1462,7 @@ fi
if
test
-n
"
$ac_init_help
"
;
then
case
$ac_init_help
in
short
|
recursive
)
echo
"Configuration of bfd 2.3
0.90
:"
;;
short
|
recursive
)
echo
"Configuration of bfd 2.3
1
:"
;;
esac
cat
<<
\
_ACEOF
...
...
@@ -1589,7 +1589,7 @@ fi
test
-n
"
$ac_init_help
"
&&
exit
$ac_status
if
$ac_init_version
;
then
cat
<<
\
_ACEOF
bfd configure 2.3
0.90
bfd configure 2.3
1
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
...
...
@@ -2237,7 +2237,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by bfd
$as_me
2.3
0.90
, which was
It was created by bfd
$as_me
2.3
1
, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0
$@
...
...
@@ -4187,7 +4187,7 @@ fi
# Define the identity of the package.
PACKAGE
=
'bfd'
VERSION
=
'2.3
0.90
'
VERSION
=
'2.3
1
'
cat
>>
confdefs.h
<<
_ACEOF
...
...
@@ -16916,7 +16916,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by bfd
$as_me
2.3
0.90
, which was
This file was extended by bfd
$as_me
2.3
1
, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
$CONFIG_FILES
...
...
@@ -16982,7 +16982,7 @@ _ACEOF
cat
>>
$CONFIG_STATUS
<<
_ACEOF
|| ac_write_fail=1
ac_cs_config="`
$as_echo
"
$ac_configure_args
" | sed 's/^ //; s/[
\\
""
\`\$
]/
\\\\
&/g'`"
ac_cs_version="
\\
bfd config.status 2.3
0.90
bfd config.status 2.3
1
configured by
$0
, generated by GNU Autoconf 2.69,
with options
\\
"
\$
ac_cs_config
\\
"
...
...
bfd/development.sh
View file @
af127c21
...
...
@@ -16,4 +16,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Controls whether to enable development-mode features by default.
development
=
tru
e
development
=
fals
e
bfd/po/bfd.pot
View file @
af127c21
This diff is collapsed.
Click to expand it.
bfd/version.m4
View file @
af127c21
m4_define([BFD_VERSION], [2.3
0.90
])
m4_define([BFD_VERSION], [2.3
1
])
binutils/ChangeLog
View file @
af127c21
2018-07-14 Nick Clifton <nickc@redhat.com>
2.31 Release point.
* configure: Regenerate.
2018-07-05 Nick Clifton <nickc@redhat.com>
* po/bg.po: Updated Bulgarian translation.
...
...
binutils/configure
View file @
af127c21
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for binutils 2.3
0.90
.
# Generated by GNU Autoconf 2.69 for binutils 2.3
1
.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
...
...
@@ -587,8 +587,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME
=
'binutils'
PACKAGE_TARNAME
=
'binutils'
PACKAGE_VERSION
=
'2.3
0.90
'
PACKAGE_STRING
=
'binutils 2.3
0.90
'
PACKAGE_VERSION
=
'2.3
1
'
PACKAGE_STRING
=
'binutils 2.3
1
'
PACKAGE_BUGREPORT
=
''
PACKAGE_URL
=
''
...
...
@@ -1371,7 +1371,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat
<<
_ACEOF
\`
configure' configures binutils 2.3
0.90
to adapt to many kinds of systems.
\`
configure' configures binutils 2.3
1
to adapt to many kinds of systems.
Usage:
$0
[OPTION]... [VAR=VALUE]...
...
...
@@ -1442,7 +1442,7 @@ fi
if
test
-n
"
$ac_init_help
"
;
then
case
$ac_init_help
in
short
|
recursive
)
echo
"Configuration of binutils 2.3
0.90
:"
;;
short
|
recursive
)
echo
"Configuration of binutils 2.3
1
:"
;;
esac
cat
<<
\
_ACEOF
...
...
@@ -1569,7 +1569,7 @@ fi
test
-n
"
$ac_init_help
"
&&
exit
$ac_status
if
$ac_init_version
;
then
cat
<<
\
_ACEOF
binutils configure 2.3
0.90
binutils configure 2.3
1
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
...
...
@@ -2217,7 +2217,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by binutils
$as_me
2.3
0.90
, which was
It was created by binutils
$as_me
2.3
1
, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0
$@
...
...
@@ -4164,7 +4164,7 @@ fi
# Define the identity of the package.
PACKAGE
=
'binutils'
VERSION
=
'2.3
0.90
'
VERSION
=
'2.3
1
'
cat
>>
confdefs.h
<<
_ACEOF
...
...
@@ -15508,7 +15508,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by binutils
$as_me
2.3
0.90
, which was
This file was extended by binutils
$as_me
2.3
1
, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
$CONFIG_FILES
...
...
@@ -15574,7 +15574,7 @@ _ACEOF
cat
>>
$CONFIG_STATUS
<<
_ACEOF
|| ac_write_fail=1
ac_cs_config="`
$as_echo
"
$ac_configure_args
" | sed 's/^ //; s/[
\\
""
\`\$
]/
\\\\
&/g'`"
ac_cs_version="
\\
binutils config.status 2.3
0.90
binutils config.status 2.3
1
configured by
$0
, generated by GNU Autoconf 2.69,
with options
\\
"
\$
ac_cs_config
\\
"
...
...
cpu/ChangeLog
View file @
af127c21
2018-07-14 Nick Clifton <nickc@redhat.com>
2.31 Release point.
2018-05-09 Sebastian Rasmussen <sebras@gmail.com>
* or1kcommon.cpu (spr-reg-info): Typo fix.
...
...
elfcpp/ChangeLog
View file @
af127c21
2018-07-14 Nick Clifton <nickc@redhat.com>
2.31 Release point.
2018-07-06 Alan Modra <amodra@gmail.com>
* powerpc.h (Tag_GNU_Power_ABI_FP): Define.
...
...
etc/ChangeLog
View file @
af127c21
2018-07-14 Nick Clifton <nickc@redhat.com>
2.31 Release point.
2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
* configure.in: Remove AC_PREREQ.
...
...
gas/ChangeLog
View file @
af127c21
2018-07-14 Nick Clifton <nickc@redhat.com>
2.31 Release point.
* configure: Regenerate.
* po/gas.pot: Regenerate.
2018-07-13 Nick Clifton <nickc@redhat.com>
* config/tc-arm.c (do_neon_mov): When converting an integer
...
...
gas/configure
View file @
af127c21
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for gas 2.3
0.90
.
# Generated by GNU Autoconf 2.69 for gas 2.3
1
.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
...
...
@@ -587,8 +587,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME
=
'gas'
PACKAGE_TARNAME
=
'gas'
PACKAGE_VERSION
=
'2.3
0.90
'
PACKAGE_STRING
=
'gas 2.3
0.90
'
PACKAGE_VERSION
=
'2.3
1
'
PACKAGE_STRING
=
'gas 2.3
1
'
PACKAGE_BUGREPORT
=
''
PACKAGE_URL
=
''
...
...
@@ -1366,7 +1366,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat
<<
_ACEOF
\`
configure' configures gas 2.3
0.90
to adapt to many kinds of systems.
\`
configure' configures gas 2.3
1
to adapt to many kinds of systems.
Usage:
$0
[OPTION]... [VAR=VALUE]...
...
...
@@ -1437,7 +1437,7 @@ fi
if
test
-n
"
$ac_init_help
"
;
then
case
$ac_init_help
in
short
|
recursive
)
echo
"Configuration of gas 2.3
0.90
:"
;;
short
|
recursive
)
echo
"Configuration of gas 2.3
1
:"
;;
esac
cat
<<
\
_ACEOF
...
...
@@ -1568,7 +1568,7 @@ fi
test
-n
"
$ac_init_help
"
&&
exit
$ac_status
if
$ac_init_version
;
then
cat
<<
\
_ACEOF
gas configure 2.3
0.90
gas configure 2.3
1
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
...
...
@@ -2033,7 +2033,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by gas
$as_me
2.3
0.90
, which was
It was created by gas
$as_me
2.3
1
, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0
$@
...
...
@@ -3980,7 +3980,7 @@ fi
# Define the identity of the package.
PACKAGE
=
'gas'
VERSION
=
'2.3
0.90
'
VERSION
=
'2.3
1
'
cat
>>
confdefs.h
<<
_ACEOF
...
...
@@ -15580,7 +15580,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by gas
$as_me
2.3
0.90
, which was
This file was extended by gas
$as_me
2.3
1
, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
$CONFIG_FILES
...
...
@@ -15646,7 +15646,7 @@ _ACEOF
cat
>>
$CONFIG_STATUS
<<
_ACEOF
|| ac_write_fail=1
ac_cs_config="`
$as_echo
"
$ac_configure_args
" | sed 's/^ //; s/[
\\
""
\`\$
]/
\\\\
&/g'`"
ac_cs_version="
\\
gas config.status 2.3
0.90
gas config.status 2.3
1
configured by
$0
, generated by GNU Autoconf 2.69,
with options
\\
"
\$
ac_cs_config
\\
"
...
...
gas/po/gas.pot
View file @
af127c21
This diff is collapsed.
Click to expand it.
gold/ChangeLog
View file @
af127c21
2018-07-14 Nick Clifton <nickc@redhat.com>
2.31 Release point.
* po/gold.pot: Regenerate.
2018-07-11 Franz Sirl <franz.sirl-kernel@lauterbach.com>
* main.cc: Print m.arena as long long.
...
...
gold/po/gold.pot
View file @
af127c21
...
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
"POT-Creation-Date: 2018-0
6-24 19:43
+0100\n"
"POT-Creation-Date: 2018-0
7-14 19:00
+0100\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"
...
...
@@ -59,7 +59,7 @@ msgstr ""
msgid "symbol table name section has wrong type: %u"
msgstr ""
#: aarch64.cc:3831 arm.cc:10905 mips.cc:9604 powerpc.cc:2
659
target.cc:94
#: aarch64.cc:3831 arm.cc:10905 mips.cc:9604 powerpc.cc:2
762
target.cc:94
#, c-format
msgid "%s: unsupported ELF file type %d"
msgstr ""
...
...
@@ -81,14 +81,14 @@ msgid ""
"current value is 0x%lx."
msgstr ""
#: aarch64.cc:6015 arm.cc:8477 i386.cc:1772 mips.cc:12457 powerpc.cc:6
422
#: aarch64.cc:6015 arm.cc:8477 i386.cc:1772 mips.cc:12457 powerpc.cc:6
525
#: s390.cc:2180 s390.cc:2628 sparc.cc:2134 tilegx.cc:3137 tilegx.cc:3589
#: x86_64.cc:3412 x86_64.cc:3864
#, c-format
msgid "%s: unsupported reloc %u against local symbol"
msgstr ""
#: aarch64.cc:6056 powerpc.cc:6
527
s390.cc:2254 sparc.cc:2230
#: aarch64.cc:6056 powerpc.cc:6
630
s390.cc:2254 sparc.cc:2230
msgid "requires unsupported dynamic reloc; recompile with -fPIC"
msgstr ""
...
...
@@ -107,7 +107,7 @@ msgstr ""
msgid "%s: unsupported TLSLE reloc %u in shared code."
msgstr ""
#: aarch64.cc:6372 arm.cc:8885 i386.cc:2127 mips.cc:12470 powerpc.cc:7
211
#: aarch64.cc:6372 arm.cc:8885 i386.cc:2127 mips.cc:12470 powerpc.cc:7
314
#: s390.cc:3059 s390.cc:3076 sparc.cc:2572 tilegx.cc:3605 tilegx.cc:4144
#: x86_64.cc:3880 x86_64.cc:4399
#, c-format
...
...
@@ -124,7 +124,7 @@ msgstr ""
msgid "%s: unsupported reloc type in global scan"
msgstr ""
#: aarch64.cc:6896 powerpc.cc:8
195
s390.cc:4009 sparc.cc:3164 tilegx.cc:4211
#: aarch64.cc:6896 powerpc.cc:8
298
s390.cc:4009 sparc.cc:3164 tilegx.cc:4211
#: x86_64.cc:4464
#, c-format
msgid "%s: unsupported REL reloc section"
...
...
@@ -135,7 +135,7 @@ msgstr ""
msgid "cannot relocate %s in object file"
msgstr ""
#: aarch64.cc:7332 i386.cc:2988 i386.cc:3754 mips.cc:10072 powerpc.cc:
975
6
#: aarch64.cc:7332 i386.cc:2988 i386.cc:3754 mips.cc:10072 powerpc.cc:
1009
6
#: s390.cc:3460 sparc.cc:3695 tilegx.cc:4726 x86_64.cc:4947
#, c-format
msgid "unexpected reloc %u in object file"
...
...
@@ -390,7 +390,7 @@ msgstr ""
msgid "%s: unsupported TLS reloc %u for IFUNC symbol"
msgstr ""
#: arm.cc:8643 i386.cc:1862 powerpc.cc:6
801
s390.cc:2364 x86_64.cc:3620
#: arm.cc:8643 i386.cc:1862 powerpc.cc:6
904
s390.cc:2364 x86_64.cc:3620
#, c-format
msgid "section symbol %u has bad shndx %u"
msgstr ""
...
...
@@ -422,7 +422,7 @@ msgid ""
msgstr ""
#: arm.cc:10247 i386.cc:3020 i386.cc:3102 i386.cc:3167 i386.cc:3203
#: i386.cc:3275 mips.cc:12292 powerpc.cc:
980
7 s390.cc:3466 s390.cc:3537
#: i386.cc:3275 mips.cc:12292 powerpc.cc:
1014
7 s390.cc:3466 s390.cc:3537
#: s390.cc:3574 s390.cc:3596 s390.cc:3621 sparc.cc:3701 sparc.cc:3892
#: sparc.cc:3953 sparc.cc:4060 tilegx.cc:4732 x86_64.cc:4968 x86_64.cc:5094
#: x86_64.cc:5166 x86_64.cc:5200
...
...
@@ -1110,7 +1110,7 @@ msgstr ""
msgid "unsupported reloc %u in object file"
msgstr ""
#: i386.cc:4037 powerpc.cc:8
149
s390.cc:4877 x86_64.cc:6005
#: i386.cc:4037 powerpc.cc:8
252
s390.cc:4877 x86_64.cc:6005
#, c-format
msgid "failed to match split-stack sequence at section %u offset %0zx"
msgstr ""
...
...
@@ -3436,107 +3436,138 @@ msgstr ""
msgid "input files added by plug-ins in --incremental mode not supported yet"
msgstr ""
#: powerpc.cc:1
188
#: powerpc.cc:1
213
msgid "missing expected __tls_get_addr call"
msgstr ""
#: powerpc.cc:2
097 powerpc.cc:2363
#: powerpc.cc:2
131 powerpc.cc:2449
#, c-format
msgid "%s: ABI version %d is not compatible with ABI version %d output"
msgstr ""
#: powerpc.cc:21
31 powerpc.cc:2405
#: powerpc.cc:21
65 powerpc.cc:2508
#, c-format
msgid "%s: .opd invalid in abiv%d"
msgstr ""
#: powerpc.cc:22
09
#: powerpc.cc:22
43
#, c-format
msgid "%s: unexpected reloc type %u in .opd section"
msgstr ""
#: powerpc.cc:22
20
#: powerpc.cc:22
54
#, c-format
msgid "%s: .opd is not a regular array of opd entries"
msgstr ""
#: powerpc.cc:23
41
#: powerpc.cc:23
77
#, c-format
msgid "%s: local symbol %d has invalid st_other for ABI version 1"
msgstr ""
#: powerpc.cc:3
016
#: powerpc.cc:3
119
#, c-format
msgid "%s:%s exceeds group size"
msgstr ""
#: powerpc.cc:3
352
#: powerpc.cc:3
455
#, c-format
msgid "%s:%s: branch in non-executable section, no long branch stub for you"
msgstr ""
#: powerpc.cc:3
470
#: powerpc.cc:3
573
#, c-format
msgid "%s: stub group size is too large; retrying with %#x"
msgstr ""
#: powerpc.cc:5
089
#: powerpc.cc:5
192
msgid "** glink"
msgstr ""
#: powerpc.cc:5
324 powerpc.cc:5771
#: powerpc.cc:5
427 powerpc.cc:5874
#, c-format
msgid "%s: linkage table error against `%s'"
msgstr ""
#: powerpc.cc:
5901
#: powerpc.cc:
6004
msgid "** save/restore"
msgstr ""
#: powerpc.cc:6
610
#: powerpc.cc:6
713
#, c-format
msgid "%s: unsupported reloc %u for IFUNC symbol"
msgstr ""
#: powerpc.cc:6
849 powerpc.cc:7488
#: powerpc.cc:6
952 powerpc.cc:7591
#, c-format
msgid "tocsave symbol %u has bad shndx %u"
msgstr ""
#: powerpc.cc:7
111 powerpc.cc:7791
#: powerpc.cc:7
214 powerpc.cc:7894
#, c-format
msgid "%s: toc optimization is not supported for %#08x instruction"
msgstr ""
#: powerpc.cc:7
177 powerpc.cc:7853
#: powerpc.cc:7
280 powerpc.cc:7956
#, c-format
msgid "%s: unsupported -mbss-plt code"
msgstr ""
#: powerpc.cc:8
115
#: powerpc.cc:8
218
#, c-format
msgid "split-stack stack size overflow at section %u offset %0zx"
msgstr ""
#: powerpc.cc:8
186
#: powerpc.cc:8
289
msgid ""
"--plt-localentry is especially dangerous without ld.so support to detect ABI "
"violations"
msgstr ""
#: powerpc.cc:8527
#: powerpc.cc:8584 powerpc.cc:8590
#, c-format
msgid "%s uses hard float, %s uses soft float"
msgstr ""
#: powerpc.cc:8596 powerpc.cc:8603
#, c-format
msgid ""
"%s uses double-precision hard float, %s uses single-precision hard float"
msgstr ""
#: powerpc.cc:8620 powerpc.cc:8626
#, c-format
msgid "%s uses 64-bit long double, %s uses 128-bit long double"
msgstr ""
#: powerpc.cc:8632 powerpc.cc:8638
#, c-format
msgid "%s uses IBM long double, %s uses IEEE long double"
msgstr ""
#: powerpc.cc:8686 powerpc.cc:8692
#, c-format
msgid "%s uses AltiVec vector ABI, %s uses SPE vector ABI"
msgstr ""
#: powerpc.cc:8721 powerpc.cc:8728
#, c-format
msgid "%s uses r3/r4 for small structure returns, %s uses memory"
msgstr ""
#: powerpc.cc:8867
msgid "__tls_get_addr call lacks marker reloc"
msgstr ""
#: powerpc.cc:
875
7
#: powerpc.cc:
909
7
msgid "call lacks nop, can't restore toc; recompile with -fPIC"
msgstr ""
#: powerpc.cc:
983
8 s390.cc:3474
#: powerpc.cc:
1017
8 s390.cc:3474
msgid "relocation overflow"
msgstr ""
#: powerpc.cc:
984
0
#: powerpc.cc:
1018
0
msgid "try relinking with a smaller --stub-group-size"
msgstr ""
...
...
gprof/ChangeLog
View file @
af127c21
2018-07-14 Nick Clifton <nickc@redhat.com>
2.31 Release point.
* configure: Regenerate.
2018-06-24 Nick Clifton <nickc@redhat.com>
* configure: Regenerate.
...
...
gprof/configure
View file @
af127c21
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for gprof 2.3
0.90
.
# Generated by GNU Autoconf 2.69 for gprof 2.3
1
.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
...
...
@@ -587,8 +587,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME
=
'gprof'
PACKAGE_TARNAME
=
'gprof'
PACKAGE_VERSION
=
'2.3
0.90
'
PACKAGE_STRING
=
'gprof 2.3
0.90
'
PACKAGE_VERSION
=
'2.3
1
'
PACKAGE_STRING
=
'gprof 2.3
1
'
PACKAGE_BUGREPORT
=
''
PACKAGE_URL
=
''
...
...
@@ -1337,7 +1337,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat
<<
_ACEOF
\`
configure' configures gprof 2.3
0.90
to adapt to many kinds of systems.
\`
configure' configures gprof 2.3
1
to adapt to many kinds of systems.
Usage:
$0
[OPTION]... [VAR=VALUE]...
...
...
@@ -1408,7 +1408,7 @@ fi
if
test
-n
"
$ac_init_help
"
;
then
case
$ac_init_help
in
short
|
recursive
)
echo
"Configuration of gprof 2.3
0.90
:"
;;
short
|
recursive
)
echo
"Configuration of gprof 2.3
1
:"
;;
esac
cat
<<
\
_ACEOF
...
...
@@ -1519,7 +1519,7 @@ fi
test
-n
"
$ac_init_help
"
&&
exit
$ac_status
if
$ac_init_version
;
then
cat
<<
\
_ACEOF
gprof configure 2.3
0.90
gprof configure 2.3
1
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
...
...
@@ -1884,7 +1884,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by gprof
$as_me
2.3
0.90
, which was
It was created by gprof
$as_me
2.3
1
, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0
$@
...
...
@@ -3831,7 +3831,7 @@ fi
# Define the identity of the package.
PACKAGE
=
'gprof'
VERSION
=
'2.3
0.90
'
VERSION
=
'2.3
1
'
cat
>>
confdefs.h
<<
_ACEOF
...
...
@@ -13086,7 +13086,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by gprof
$as_me
2.3
0.90
, which was
This file was extended by gprof
$as_me
2.3
1
, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
$CONFIG_FILES
...
...
@@ -13152,7 +13152,7 @@ _ACEOF
cat
>>
$CONFIG_STATUS
<<
_ACEOF
|| ac_write_fail=1
ac_cs_config="`
$as_echo
"
$ac_configure_args
" | sed 's/^ //; s/[
\\
""
\`\$
]/
\\\\
&/g'`"
ac_cs_version="
\\
gprof config.status 2.3
0.90
gprof config.status 2.3
1
configured by
$0
, generated by GNU Autoconf 2.69,
with options
\\
"
\$
ac_cs_config
\\
"
...
...
include/ChangeLog
View file @
af127c21
2018-07-14 Nick Clifton <nickc@redhat.com>
2.31 Release point.
2018-07-06 Alan Modra <amodra@gmail.com>
* diagnostics.h: Comment on macro usage.
...
...
ld/ChangeLog
View file @
af127c21
2018-07-14 Nick Clifton <nickc@redhat.com>
2.31 Release point.
* configure: Regenerate.
2018-07-09 H.J. Lu <hongjiu.lu@intel.com>
PR ld/23372
...
...
ld/configure
View file @
af127c21
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for ld 2.3
0.90
.
# Generated by GNU Autoconf 2.69 for ld 2.3
1
.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
...
...
@@ -587,8 +587,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME
=
'ld'
PACKAGE_TARNAME
=
'ld'
PACKAGE_VERSION
=
'2.3
0.90
'
PACKAGE_STRING
=
'ld 2.3
0.90
'
PACKAGE_VERSION
=
'2.3
1
'
PACKAGE_STRING
=
'ld 2.3
1
'
PACKAGE_BUGREPORT
=
''
PACKAGE_URL
=
''
...
...
@@ -1389,7 +1389,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat
<<
_ACEOF
\`
configure' configures ld 2.3
0.90
to adapt to many kinds of systems.
\`
configure' configures ld 2.3
1
to adapt to many kinds of systems.
Usage:
$0
[OPTION]... [VAR=VALUE]...
...
...
@@ -1460,7 +1460,7 @@ fi
if
test
-n
"
$ac_init_help
"
;
then
case
$ac_init_help
in
short
|
recursive
)
echo
"Configuration of ld 2.3
0.90
:"
;;
short
|
recursive
)
echo
"Configuration of ld 2.3
1
:"
;;
esac
cat
<<
\
_ACEOF
...
...
@@ -1595,7 +1595,7 @@ fi
test
-n
"
$ac_init_help
"
&&
exit
$ac_status
if
$ac_init_version
;
then
cat
<<
\
_ACEOF
ld configure 2.3
0.90
ld configure 2.3
1
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
...
...
@@ -2310,7 +2310,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by ld
$as_me
2.3
0.90
, which was
It was created by ld
$as_me
2.3
1
, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0
$@
...
...
@@ -4261,7 +4261,7 @@ fi
# Define the identity of the package.
PACKAGE
=
'ld'
VERSION
=
'2.3
0.90
'
VERSION
=
'2.3
1
'
cat
>>
confdefs.h
<<
_ACEOF
...
...
@@ -18221,7 +18221,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by ld
$as_me
2.3
0.90
, which was
This file was extended by ld
$as_me
2.3
1
, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
$CONFIG_FILES
...
...
@@ -18287,7 +18287,7 @@ _ACEOF
cat
>>
$CONFIG_STATUS
<<
_ACEOF
|| ac_write_fail=1
ac_cs_config="`
$as_echo
"
$ac_configure_args
" | sed 's/^ //; s/[
\\
""
\`\$
]/
\\\\
&/g'`"
ac_cs_version="
\\
ld config.status 2.3
0.90
ld config.status 2.3
1
configured by
$0
, generated by GNU Autoconf 2.69,
with options
\\
"
\$
ac_cs_config
\\
"
...
...
opcodes/ChangeLog
View file @
af127c21
2018-07-14 Nick Clifton <nickc@redhat.com>
2.31 Release point.
* configure: Regenerate.
* po/opcodes.pot: Regenerate.
2018-07-12 Sudakshina Das <sudi.das@arm.com>
* aarch64-tbl.h (aarch64_opcode_table): Add entry for
...
...
opcodes/configure
View file @
af127c21
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for opcodes 2.3
0.90
.
# Generated by GNU Autoconf 2.69 for opcodes 2.3
1
.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
...
...
@@ -587,8 +587,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME
=
'opcodes'
PACKAGE_TARNAME
=
'opcodes'
PACKAGE_VERSION
=
'2.3
0.90
'
PACKAGE_STRING
=
'opcodes 2.3
0.90
'
PACKAGE_VERSION
=
'2.3
1
'
PACKAGE_STRING
=
'opcodes 2.3
1
'
PACKAGE_BUGREPORT
=
''
PACKAGE_URL
=
''
...
...
@@ -1357,7 +1357,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat
<<
_ACEOF
\`
configure' configures opcodes 2.3
0.90
to adapt to many kinds of systems.
\`
configure' configures opcodes 2.3
1
to adapt to many kinds of systems.
Usage:
$0
[OPTION]... [VAR=VALUE]...
...
...
@@ -1428,7 +1428,7 @@ fi
if
test
-n
"
$ac_init_help
"
;
then