mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-11-16 12:34:43 +00:00
Compare commits
16 Commits
gdb-12-bra
...
binutils-2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2870b1ba83 | ||
|
|
618c19918a | ||
|
|
24ef2be9b6 | ||
|
|
15b8aefa8c | ||
|
|
22eb86c7ff | ||
|
|
92ee2f0de0 | ||
|
|
94e9769b6a | ||
|
|
1238122531 | ||
|
|
bebef2cf94 | ||
|
|
d1188133df | ||
|
|
492a7a54d6 | ||
|
|
7bb2fa73cb | ||
|
|
8d1a739279 | ||
|
|
5bf729d5ca | ||
|
|
c60b6acb19 | ||
|
|
65f8a06640 |
@@ -1,3 +1,37 @@
|
|||||||
|
2016-08-03 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* version.m4: Bump version to 2.27
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-08-03 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* development.sh: Set development to false.
|
||||||
|
|
||||||
|
2016-08-02 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
PR ld/20428
|
||||||
|
* elf64-ppc.c (ppc_get_stub_entry): Don't segfault on NULL group.
|
||||||
|
|
||||||
|
2016-07-27 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* Import this patch from the mainline:
|
||||||
|
2016-07-27 Ozkan Sezer <sezeroz@gmail.com>
|
||||||
|
Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
PR ld/20401
|
||||||
|
* coffgen.c (fini_reloc_cookie_rels): Check for the extistence
|
||||||
|
of the coff_section_data before using it.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* version.m4: Bump version to 2.26.90
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* version.m4: Bump version to 2.27.51
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-06-29 Nick Clifton <nickc@redhat.com>
|
2016-06-29 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* elfnn-aarch64.c (is_aarch64_mapping_symbol): New function.
|
* elfnn-aarch64.c (is_aarch64_mapping_symbol): New function.
|
||||||
|
|||||||
@@ -2691,7 +2691,13 @@ static void
|
|||||||
fini_reloc_cookie_rels (struct coff_reloc_cookie *cookie,
|
fini_reloc_cookie_rels (struct coff_reloc_cookie *cookie,
|
||||||
asection *sec)
|
asection *sec)
|
||||||
{
|
{
|
||||||
if (cookie->rels && coff_section_data (NULL, sec)->relocs != cookie->rels)
|
if (cookie->rels
|
||||||
|
/* PR 20401. The relocs may not have been cached, so check first.
|
||||||
|
If the relocs were loaded by init_reloc_cookie_rels() then this
|
||||||
|
will be the case. FIXME: Would performance be improved if the
|
||||||
|
relocs *were* cached ? */
|
||||||
|
&& coff_section_data (NULL, sec)
|
||||||
|
&& coff_section_data (NULL, sec)->relocs != cookie->rels)
|
||||||
free (cookie->rels);
|
free (cookie->rels);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
20
bfd/configure
vendored
20
bfd/configure
vendored
@@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.64 for bfd 2.26.51.
|
# Generated by GNU Autoconf 2.64 for bfd 2.27.
|
||||||
#
|
#
|
||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||||
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
||||||
@@ -556,8 +556,8 @@ MAKEFLAGS=
|
|||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='bfd'
|
PACKAGE_NAME='bfd'
|
||||||
PACKAGE_TARNAME='bfd'
|
PACKAGE_TARNAME='bfd'
|
||||||
PACKAGE_VERSION='2.26.51'
|
PACKAGE_VERSION='2.27'
|
||||||
PACKAGE_STRING='bfd 2.26.51'
|
PACKAGE_STRING='bfd 2.27'
|
||||||
PACKAGE_BUGREPORT=''
|
PACKAGE_BUGREPORT=''
|
||||||
PACKAGE_URL=''
|
PACKAGE_URL=''
|
||||||
|
|
||||||
@@ -1353,7 +1353,7 @@ if test "$ac_init_help" = "long"; then
|
|||||||
# Omit some internal or obsolete options to make the list less imposing.
|
# 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.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures bfd 2.26.51 to adapt to many kinds of systems.
|
\`configure' configures bfd 2.27 to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
@@ -1424,7 +1424,7 @@ fi
|
|||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of bfd 2.26.51:";;
|
short | recursive ) echo "Configuration of bfd 2.27:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
@@ -1545,7 +1545,7 @@ fi
|
|||||||
test -n "$ac_init_help" && exit $ac_status
|
test -n "$ac_init_help" && exit $ac_status
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
bfd configure 2.26.51
|
bfd configure 2.27
|
||||||
generated by GNU Autoconf 2.64
|
generated by GNU Autoconf 2.64
|
||||||
|
|
||||||
Copyright (C) 2009 Free Software Foundation, Inc.
|
Copyright (C) 2009 Free Software Foundation, Inc.
|
||||||
@@ -2187,7 +2187,7 @@ cat >config.log <<_ACEOF
|
|||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by bfd $as_me 2.26.51, which was
|
It was created by bfd $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
@@ -3996,7 +3996,7 @@ fi
|
|||||||
|
|
||||||
# Define the identity of the package.
|
# Define the identity of the package.
|
||||||
PACKAGE='bfd'
|
PACKAGE='bfd'
|
||||||
VERSION='2.26.51'
|
VERSION='2.27'
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
cat >>confdefs.h <<_ACEOF
|
||||||
@@ -16576,7 +16576,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by bfd $as_me 2.26.51, which was
|
This file was extended by bfd $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@@ -16640,7 +16640,7 @@ Report bugs to the package provider."
|
|||||||
_ACEOF
|
_ACEOF
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
bfd config.status 2.26.51
|
bfd config.status 2.27
|
||||||
configured by $0, generated by GNU Autoconf 2.64,
|
configured by $0, generated by GNU Autoconf 2.64,
|
||||||
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||||
|
|
||||||
|
|||||||
@@ -16,4 +16,4 @@
|
|||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
# Controls whether to enable development-mode features by default.
|
# Controls whether to enable development-mode features by default.
|
||||||
development=true
|
development=false
|
||||||
|
|||||||
@@ -4505,6 +4505,8 @@ ppc_get_stub_entry (const asection *input_section,
|
|||||||
more than one stub used to reach say, printf, and we need to
|
more than one stub used to reach say, printf, and we need to
|
||||||
distinguish between them. */
|
distinguish between them. */
|
||||||
group = htab->sec_info[input_section->id].u.group;
|
group = htab->sec_info[input_section->id].u.group;
|
||||||
|
if (group == NULL)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
if (h != NULL && h->u.stub_cache != NULL
|
if (h != NULL && h->u.stub_cache != NULL
|
||||||
&& h->u.stub_cache->h == h
|
&& h->u.stub_cache->h == h
|
||||||
|
|||||||
4110
bfd/po/bfd.pot
4110
bfd/po/bfd.pot
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
|||||||
#define BFD_VERSION_DATE 20160701
|
#define BFD_VERSION_DATE 20160803
|
||||||
#define BFD_VERSION @bfd_version@
|
#define BFD_VERSION @bfd_version@
|
||||||
#define BFD_VERSION_STRING @bfd_version_package@ @bfd_version_string@
|
#define BFD_VERSION_STRING @bfd_version_package@ @bfd_version_string@
|
||||||
#define REPORT_BUGS_TO @report_bugs_to@
|
#define REPORT_BUGS_TO @report_bugs_to@
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
m4_define([BFD_VERSION], [2.26.51])
|
m4_define([BFD_VERSION], [2.27])
|
||||||
|
|||||||
@@ -1,3 +1,25 @@
|
|||||||
|
2016-08-03 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-07-01 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* Import this patch from the mainline:
|
||||||
|
2016-07-01 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* testsuite/binutils-all/objcopy.exp
|
||||||
|
(objcopy_test_without_global_symbol): Expect this test to fail on
|
||||||
|
the AArch64 and ARM targets, since they preserve their mapping
|
||||||
|
symbols.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
* NEWS: Add marker for 2.27.
|
* NEWS: Add marker for 2.27.
|
||||||
|
|||||||
20
binutils/configure
vendored
20
binutils/configure
vendored
@@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.64 for binutils 2.26.51.
|
# Generated by GNU Autoconf 2.64 for binutils 2.27.
|
||||||
#
|
#
|
||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||||
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
||||||
@@ -556,8 +556,8 @@ MAKEFLAGS=
|
|||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='binutils'
|
PACKAGE_NAME='binutils'
|
||||||
PACKAGE_TARNAME='binutils'
|
PACKAGE_TARNAME='binutils'
|
||||||
PACKAGE_VERSION='2.26.51'
|
PACKAGE_VERSION='2.27'
|
||||||
PACKAGE_STRING='binutils 2.26.51'
|
PACKAGE_STRING='binutils 2.27'
|
||||||
PACKAGE_BUGREPORT=''
|
PACKAGE_BUGREPORT=''
|
||||||
PACKAGE_URL=''
|
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.
|
# 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.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures binutils 2.26.51 to adapt to many kinds of systems.
|
\`configure' configures binutils 2.27 to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
@@ -1408,7 +1408,7 @@ fi
|
|||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of binutils 2.26.51:";;
|
short | recursive ) echo "Configuration of binutils 2.27:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
@@ -1529,7 +1529,7 @@ fi
|
|||||||
test -n "$ac_init_help" && exit $ac_status
|
test -n "$ac_init_help" && exit $ac_status
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
binutils configure 2.26.51
|
binutils configure 2.27
|
||||||
generated by GNU Autoconf 2.64
|
generated by GNU Autoconf 2.64
|
||||||
|
|
||||||
Copyright (C) 2009 Free Software Foundation, Inc.
|
Copyright (C) 2009 Free Software Foundation, Inc.
|
||||||
@@ -2171,7 +2171,7 @@ cat >config.log <<_ACEOF
|
|||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by binutils $as_me 2.26.51, which was
|
It was created by binutils $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
@@ -3980,7 +3980,7 @@ fi
|
|||||||
|
|
||||||
# Define the identity of the package.
|
# Define the identity of the package.
|
||||||
PACKAGE='binutils'
|
PACKAGE='binutils'
|
||||||
VERSION='2.26.51'
|
VERSION='2.27'
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
cat >>confdefs.h <<_ACEOF
|
||||||
@@ -15179,7 +15179,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by binutils $as_me 2.26.51, which was
|
This file was extended by binutils $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@@ -15243,7 +15243,7 @@ Report bugs to the package provider."
|
|||||||
_ACEOF
|
_ACEOF
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
binutils config.status 2.26.51
|
binutils config.status 2.27
|
||||||
configured by $0, generated by GNU Autoconf 2.64,
|
configured by $0, generated by GNU Autoconf 2.64,
|
||||||
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1159,4 +1159,8 @@ proc objcopy_test_without_global_symbol { } {
|
|||||||
pass $test
|
pass $test
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# The AArch64 and ARM targets preserve mapping symbols
|
||||||
|
# in object files, so they will fail this test.
|
||||||
|
setup_xfail aarch64*-*-* arm*-*-*
|
||||||
|
|
||||||
objcopy_test_without_global_symbol
|
objcopy_test_without_global_symbol
|
||||||
|
|||||||
@@ -1,3 +1,15 @@
|
|||||||
|
2016-08-03 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
* NEWS: Add marker for 2.27.
|
* NEWS: Add marker for 2.27.
|
||||||
|
|||||||
20
gas/configure
vendored
20
gas/configure
vendored
@@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.64 for gas 2.26.51.
|
# Generated by GNU Autoconf 2.64 for gas 2.27.
|
||||||
#
|
#
|
||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||||
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
||||||
@@ -556,8 +556,8 @@ MAKEFLAGS=
|
|||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='gas'
|
PACKAGE_NAME='gas'
|
||||||
PACKAGE_TARNAME='gas'
|
PACKAGE_TARNAME='gas'
|
||||||
PACKAGE_VERSION='2.26.51'
|
PACKAGE_VERSION='2.27'
|
||||||
PACKAGE_STRING='gas 2.26.51'
|
PACKAGE_STRING='gas 2.27'
|
||||||
PACKAGE_BUGREPORT=''
|
PACKAGE_BUGREPORT=''
|
||||||
PACKAGE_URL=''
|
PACKAGE_URL=''
|
||||||
|
|
||||||
@@ -1328,7 +1328,7 @@ if test "$ac_init_help" = "long"; then
|
|||||||
# Omit some internal or obsolete options to make the list less imposing.
|
# 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.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures gas 2.26.51 to adapt to many kinds of systems.
|
\`configure' configures gas 2.27 to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
@@ -1399,7 +1399,7 @@ fi
|
|||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of gas 2.26.51:";;
|
short | recursive ) echo "Configuration of gas 2.27:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
@@ -1521,7 +1521,7 @@ fi
|
|||||||
test -n "$ac_init_help" && exit $ac_status
|
test -n "$ac_init_help" && exit $ac_status
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
gas configure 2.26.51
|
gas configure 2.27
|
||||||
generated by GNU Autoconf 2.64
|
generated by GNU Autoconf 2.64
|
||||||
|
|
||||||
Copyright (C) 2009 Free Software Foundation, Inc.
|
Copyright (C) 2009 Free Software Foundation, Inc.
|
||||||
@@ -1931,7 +1931,7 @@ cat >config.log <<_ACEOF
|
|||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by gas $as_me 2.26.51, which was
|
It was created by gas $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
@@ -3740,7 +3740,7 @@ fi
|
|||||||
|
|
||||||
# Define the identity of the package.
|
# Define the identity of the package.
|
||||||
PACKAGE='gas'
|
PACKAGE='gas'
|
||||||
VERSION='2.26.51'
|
VERSION='2.27'
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
cat >>confdefs.h <<_ACEOF
|
||||||
@@ -15137,7 +15137,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by gas $as_me 2.26.51, which was
|
This file was extended by gas $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@@ -15201,7 +15201,7 @@ Report bugs to the package provider."
|
|||||||
_ACEOF
|
_ACEOF
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
gas config.status 2.26.51
|
gas config.status 2.27
|
||||||
configured by $0, generated by GNU Autoconf 2.64,
|
configured by $0, generated by GNU Autoconf 2.64,
|
||||||
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||||
|
|
||||||
|
|||||||
8297
gas/po/gas.pot
8297
gas/po/gas.pot
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,15 @@
|
|||||||
|
2016-08-03 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-04-20 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
|
2016-04-20 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
|
||||||
|
|
||||||
* basic_blocks.c: Update old style function definitions.
|
* basic_blocks.c: Update old style function definitions.
|
||||||
|
|||||||
20
gprof/configure
vendored
20
gprof/configure
vendored
@@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.64 for gprof 2.26.51.
|
# Generated by GNU Autoconf 2.64 for gprof 2.27.
|
||||||
#
|
#
|
||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||||
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
||||||
@@ -556,8 +556,8 @@ MAKEFLAGS=
|
|||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='gprof'
|
PACKAGE_NAME='gprof'
|
||||||
PACKAGE_TARNAME='gprof'
|
PACKAGE_TARNAME='gprof'
|
||||||
PACKAGE_VERSION='2.26.51'
|
PACKAGE_VERSION='2.27'
|
||||||
PACKAGE_STRING='gprof 2.26.51'
|
PACKAGE_STRING='gprof 2.27'
|
||||||
PACKAGE_BUGREPORT=''
|
PACKAGE_BUGREPORT=''
|
||||||
PACKAGE_URL=''
|
PACKAGE_URL=''
|
||||||
|
|
||||||
@@ -1301,7 +1301,7 @@ if test "$ac_init_help" = "long"; then
|
|||||||
# Omit some internal or obsolete options to make the list less imposing.
|
# 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.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures gprof 2.26.51 to adapt to many kinds of systems.
|
\`configure' configures gprof 2.27 to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
@@ -1372,7 +1372,7 @@ fi
|
|||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of gprof 2.26.51:";;
|
short | recursive ) echo "Configuration of gprof 2.27:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
@@ -1478,7 +1478,7 @@ fi
|
|||||||
test -n "$ac_init_help" && exit $ac_status
|
test -n "$ac_init_help" && exit $ac_status
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
gprof configure 2.26.51
|
gprof configure 2.27
|
||||||
generated by GNU Autoconf 2.64
|
generated by GNU Autoconf 2.64
|
||||||
|
|
||||||
Copyright (C) 2009 Free Software Foundation, Inc.
|
Copyright (C) 2009 Free Software Foundation, Inc.
|
||||||
@@ -1843,7 +1843,7 @@ cat >config.log <<_ACEOF
|
|||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by gprof $as_me 2.26.51, which was
|
It was created by gprof $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
@@ -3652,7 +3652,7 @@ fi
|
|||||||
|
|
||||||
# Define the identity of the package.
|
# Define the identity of the package.
|
||||||
PACKAGE='gprof'
|
PACKAGE='gprof'
|
||||||
VERSION='2.26.51'
|
VERSION='2.27'
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
cat >>confdefs.h <<_ACEOF
|
||||||
@@ -12743,7 +12743,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by gprof $as_me 2.26.51, which was
|
This file was extended by gprof $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@@ -12807,7 +12807,7 @@ Report bugs to the package provider."
|
|||||||
_ACEOF
|
_ACEOF
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
gprof config.status 2.26.51
|
gprof config.status 2.27
|
||||||
configured by $0, generated by GNU Autoconf 2.64,
|
configured by $0, generated by GNU Autoconf 2.64,
|
||||||
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
|
"Report-Msgid-Bugs-To: bug-binutils@gnu.org\n"
|
||||||
"POT-Creation-Date: 2014-02-10 09:42+1030\n"
|
"POT-Creation-Date: 2016-08-03 10:16+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@@ -36,27 +36,27 @@ msgstr ""
|
|||||||
msgid "[find_call] 0x%lx: bsr"
|
msgid "[find_call] 0x%lx: bsr"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: basic_blocks.c:129 call_graph.c:89 hist.c:107
|
#: basic_blocks.c:128 call_graph.c:89 hist.c:106
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: %s: unexpected end of file\n"
|
msgid "%s: %s: unexpected end of file\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: basic_blocks.c:197
|
#: basic_blocks.c:196
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: warning: ignoring basic-block exec counts (use -l or --line)\n"
|
msgid "%s: warning: ignoring basic-block exec counts (use -l or --line)\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. FIXME: This only works if bfd_vma is unsigned long.
|
#. FIXME: This only works if bfd_vma is unsigned long.
|
||||||
#: basic_blocks.c:290 basic_blocks.c:300
|
#: basic_blocks.c:289 basic_blocks.c:299
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s:%d: (%s:0x%lx) %lu executions\n"
|
msgid "%s:%d: (%s:0x%lx) %lu executions\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: basic_blocks.c:291 basic_blocks.c:301
|
#: basic_blocks.c:290 basic_blocks.c:300
|
||||||
msgid "<unknown>"
|
msgid "<unknown>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: basic_blocks.c:544
|
#: basic_blocks.c:543
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
@@ -67,7 +67,7 @@ msgid ""
|
|||||||
"\n"
|
"\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: basic_blocks.c:568
|
#: basic_blocks.c:567
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
@@ -75,29 +75,29 @@ msgid ""
|
|||||||
"\n"
|
"\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: basic_blocks.c:569
|
#: basic_blocks.c:568
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%9ld Executable lines in this file\n"
|
msgid "%9ld Executable lines in this file\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: basic_blocks.c:571
|
#: basic_blocks.c:570
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%9ld Lines executed\n"
|
msgid "%9ld Lines executed\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: basic_blocks.c:572
|
#: basic_blocks.c:571
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%9.2f Percent of the file executed\n"
|
msgid "%9.2f Percent of the file executed\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: basic_blocks.c:576
|
#: basic_blocks.c:575
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
"%9lu Total number of line executions\n"
|
"%9lu Total number of line executions\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: basic_blocks.c:578
|
#: basic_blocks.c:577
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%9.2f Average executions per line\n"
|
msgid "%9.2f Average executions per line\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -107,106 +107,106 @@ msgstr ""
|
|||||||
msgid "[cg_tally] arc from %s to %s traversed %lu times\n"
|
msgid "[cg_tally] arc from %s to %s traversed %lu times\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:75
|
#: cg_print.c:74
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\t\t Call graph (explanation follows)\n"
|
"\t\t Call graph (explanation follows)\n"
|
||||||
"\n"
|
"\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:77
|
#: cg_print.c:76
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\t\t\tCall graph\n"
|
"\t\t\tCall graph\n"
|
||||||
"\n"
|
"\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:80 hist.c:471
|
#: cg_print.c:79 hist.c:470
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
"granularity: each sample hit covers %ld byte(s)"
|
"granularity: each sample hit covers %ld byte(s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:84
|
#: cg_print.c:83
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
" for %.2f%% of %.2f seconds\n"
|
" for %.2f%% of %.2f seconds\n"
|
||||||
"\n"
|
"\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:88
|
#: cg_print.c:87
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
" no time propagated\n"
|
" no time propagated\n"
|
||||||
"\n"
|
"\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:97 cg_print.c:102 cg_print.c:105
|
#: cg_print.c:96 cg_print.c:101 cg_print.c:104
|
||||||
msgid "called"
|
msgid "called"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:97 cg_print.c:105
|
#: cg_print.c:96 cg_print.c:104
|
||||||
msgid "total"
|
msgid "total"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:97
|
#: cg_print.c:96
|
||||||
msgid "parents"
|
msgid "parents"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:99 cg_print.c:103
|
#: cg_print.c:98 cg_print.c:102
|
||||||
msgid "index"
|
msgid "index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:101
|
#: cg_print.c:100
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "%time"
|
msgid "%time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:102
|
#: cg_print.c:101
|
||||||
msgid "self"
|
msgid "self"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:102
|
#: cg_print.c:101
|
||||||
msgid "descendants"
|
msgid "descendants"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:103 hist.c:497
|
#: cg_print.c:102 hist.c:496
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:105
|
#: cg_print.c:104
|
||||||
msgid "children"
|
msgid "children"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:110
|
#: cg_print.c:109
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "index %% time self children called name\n"
|
msgid "index %% time self children called name\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:133
|
#: cg_print.c:132
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " <cycle %d as a whole> [%d]\n"
|
msgid " <cycle %d as a whole> [%d]\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:359
|
#: cg_print.c:358
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%6.6s %5.5s %7.7s %11.11s %7.7s %7.7s <spontaneous>\n"
|
msgid "%6.6s %5.5s %7.7s %11.11s %7.7s %7.7s <spontaneous>\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:360
|
#: cg_print.c:359
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%6.6s %5.5s %7.7s %7.7s %7.7s %7.7s <spontaneous>\n"
|
msgid "%6.6s %5.5s %7.7s %7.7s %7.7s %7.7s <spontaneous>\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:594
|
#: cg_print.c:593
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Index by function name\n"
|
"Index by function name\n"
|
||||||
"\n"
|
"\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: cg_print.c:651 cg_print.c:660
|
#: cg_print.c:650 cg_print.c:659
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "<cycle %d>"
|
msgid "<cycle %d>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -256,92 +256,92 @@ msgstr ""
|
|||||||
msgid "%s: somebody miscounted: ltab.len=%d instead of %ld\n"
|
msgid "%s: somebody miscounted: ltab.len=%d instead of %ld\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:84
|
#: gmon_io.c:83
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: address size has unexpected value of %u\n"
|
msgid "%s: address size has unexpected value of %u\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:319 gmon_io.c:415
|
#: gmon_io.c:318 gmon_io.c:414
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: file too short to be a gmon file\n"
|
msgid "%s: file too short to be a gmon file\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:329 gmon_io.c:458
|
#: gmon_io.c:328 gmon_io.c:457
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: file `%s' has bad magic cookie\n"
|
msgid "%s: file `%s' has bad magic cookie\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:340
|
#: gmon_io.c:339
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: file `%s' has unsupported version %d\n"
|
msgid "%s: file `%s' has unsupported version %d\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:370
|
#: gmon_io.c:369
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: %s: found bad tag %d (file corrupted?)\n"
|
msgid "%s: %s: found bad tag %d (file corrupted?)\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:437
|
#: gmon_io.c:436
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: profiling rate incompatible with first gmon file\n"
|
msgid "%s: profiling rate incompatible with first gmon file\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:488
|
#: gmon_io.c:487
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: incompatible with first gmon file\n"
|
msgid "%s: incompatible with first gmon file\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:518
|
#: gmon_io.c:517
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: file '%s' does not appear to be in gmon.out format\n"
|
msgid "%s: file '%s' does not appear to be in gmon.out format\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:531
|
#: gmon_io.c:530
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: unexpected EOF after reading %d/%d bins\n"
|
msgid "%s: unexpected EOF after reading %d/%d bins\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:563
|
#: gmon_io.c:562
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "time is in ticks, not seconds\n"
|
msgid "time is in ticks, not seconds\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:569 gmon_io.c:749
|
#: gmon_io.c:568 gmon_io.c:748
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: don't know how to deal with file format %d\n"
|
msgid "%s: don't know how to deal with file format %d\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:579
|
#: gmon_io.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "File `%s' (version %d) contains:\n"
|
msgid "File `%s' (version %d) contains:\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:582
|
#: gmon_io.c:581
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "\t%d histogram record\n"
|
msgid "\t%d histogram record\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:583
|
#: gmon_io.c:582
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "\t%d histogram records\n"
|
msgid "\t%d histogram records\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:585
|
#: gmon_io.c:584
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "\t%d call-graph record\n"
|
msgid "\t%d call-graph record\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:586
|
#: gmon_io.c:585
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "\t%d call-graph records\n"
|
msgid "\t%d call-graph records\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:588
|
#: gmon_io.c:587
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "\t%d basic-block count record\n"
|
msgid "\t%d basic-block count record\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gmon_io.c:589
|
#: gmon_io.c:588
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "\t%d basic-block count records\n"
|
msgid "\t%d basic-block count records\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -424,7 +424,7 @@ msgstr ""
|
|||||||
msgid "%s: gmon.out file is missing call-graph data\n"
|
msgid "%s: gmon.out file is missing call-graph data\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:135
|
#: hist.c:134
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"%s: dimension unit changed between histogram records\n"
|
"%s: dimension unit changed between histogram records\n"
|
||||||
@@ -432,7 +432,7 @@ msgid ""
|
|||||||
"%s: to '%s'\n"
|
"%s: to '%s'\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:145
|
#: hist.c:144
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"%s: dimension abbreviation changed between histogram records\n"
|
"%s: dimension abbreviation changed between histogram records\n"
|
||||||
@@ -440,68 +440,68 @@ msgid ""
|
|||||||
"%s: to '%c'\n"
|
"%s: to '%c'\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:159
|
#: hist.c:158
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: different scales in histogram records"
|
msgid "%s: different scales in histogram records"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:196
|
#: hist.c:195
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: overlapping histogram records\n"
|
msgid "%s: overlapping histogram records\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:230
|
#: hist.c:229
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: %s: unexpected EOF after reading %u of %u samples\n"
|
msgid "%s: %s: unexpected EOF after reading %u of %u samples\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:467
|
#: hist.c:466
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%c%c/call"
|
msgid "%c%c/call"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:475
|
#: hist.c:474
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
" for %.2f%% of %.2f %s\n"
|
" for %.2f%% of %.2f %s\n"
|
||||||
"\n"
|
"\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:481
|
#: hist.c:480
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
"Each sample counts as %g %s.\n"
|
"Each sample counts as %g %s.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:486
|
#: hist.c:485
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
" no time accumulated\n"
|
" no time accumulated\n"
|
||||||
"\n"
|
"\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:493
|
#: hist.c:492
|
||||||
msgid "cumulative"
|
msgid "cumulative"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:493
|
#: hist.c:492
|
||||||
msgid "self "
|
msgid "self "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:493
|
#: hist.c:492
|
||||||
msgid "total "
|
msgid "total "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:496
|
#: hist.c:495
|
||||||
msgid "time"
|
msgid "time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:496
|
#: hist.c:495
|
||||||
msgid "calls"
|
msgid "calls"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:585
|
#: hist.c:584
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
@@ -510,12 +510,12 @@ msgid ""
|
|||||||
"flat profile:\n"
|
"flat profile:\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:591
|
#: hist.c:590
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Flat profile:\n"
|
msgid "Flat profile:\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: hist.c:712
|
#: hist.c:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s: found a symbol that covers several histogram records"
|
msgid "%s: found a symbol that covers several histogram records"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
19
ld/ChangeLog
19
ld/ChangeLog
@@ -1,3 +1,20 @@
|
|||||||
|
2016-08-03 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-07-19 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
|
* emulparams/aarch64elf.sh (GENERATE_PIE_SCRIPT): Set to yes.
|
||||||
|
* emulparams/aarch64elf32.sh: Likewise.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
* NEWS: Add marker for 2.27.
|
* NEWS: Add marker for 2.27.
|
||||||
@@ -799,7 +816,7 @@
|
|||||||
* testsuite/ld-plugin/pr20103c.c: Likewise.
|
* testsuite/ld-plugin/pr20103c.c: Likewise.
|
||||||
|
|
||||||
2016-05-24 Maciej W. Rozycki <macro@imgtec.com>
|
2016-05-24 Maciej W. Rozycki <macro@imgtec.com>
|
||||||
|
|
||||||
* testsuite/ld-mips-elf/jalx-local.d: New test.
|
* testsuite/ld-mips-elf/jalx-local.d: New test.
|
||||||
* testsuite/ld-mips-elf/jalx-local-n32.d: New test.
|
* testsuite/ld-mips-elf/jalx-local-n32.d: New test.
|
||||||
* testsuite/ld-mips-elf/jalx-local-n64.d: New test.
|
* testsuite/ld-mips-elf/jalx-local-n64.d: New test.
|
||||||
|
|||||||
20
ld/configure
vendored
20
ld/configure
vendored
@@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.64 for ld 2.26.51.
|
# Generated by GNU Autoconf 2.64 for ld 2.27.
|
||||||
#
|
#
|
||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||||
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
||||||
@@ -556,8 +556,8 @@ MAKEFLAGS=
|
|||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='ld'
|
PACKAGE_NAME='ld'
|
||||||
PACKAGE_TARNAME='ld'
|
PACKAGE_TARNAME='ld'
|
||||||
PACKAGE_VERSION='2.26.51'
|
PACKAGE_VERSION='2.27'
|
||||||
PACKAGE_STRING='ld 2.26.51'
|
PACKAGE_STRING='ld 2.27'
|
||||||
PACKAGE_BUGREPORT=''
|
PACKAGE_BUGREPORT=''
|
||||||
PACKAGE_URL=''
|
PACKAGE_URL=''
|
||||||
|
|
||||||
@@ -1353,7 +1353,7 @@ if test "$ac_init_help" = "long"; then
|
|||||||
# Omit some internal or obsolete options to make the list less imposing.
|
# 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.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures ld 2.26.51 to adapt to many kinds of systems.
|
\`configure' configures ld 2.27 to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
@@ -1424,7 +1424,7 @@ fi
|
|||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of ld 2.26.51:";;
|
short | recursive ) echo "Configuration of ld 2.27:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
@@ -1549,7 +1549,7 @@ fi
|
|||||||
test -n "$ac_init_help" && exit $ac_status
|
test -n "$ac_init_help" && exit $ac_status
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
ld configure 2.26.51
|
ld configure 2.27
|
||||||
generated by GNU Autoconf 2.64
|
generated by GNU Autoconf 2.64
|
||||||
|
|
||||||
Copyright (C) 2009 Free Software Foundation, Inc.
|
Copyright (C) 2009 Free Software Foundation, Inc.
|
||||||
@@ -2258,7 +2258,7 @@ cat >config.log <<_ACEOF
|
|||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by ld $as_me 2.26.51, which was
|
It was created by ld $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
@@ -4068,7 +4068,7 @@ fi
|
|||||||
|
|
||||||
# Define the identity of the package.
|
# Define the identity of the package.
|
||||||
PACKAGE='ld'
|
PACKAGE='ld'
|
||||||
VERSION='2.26.51'
|
VERSION='2.27'
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
cat >>confdefs.h <<_ACEOF
|
||||||
@@ -17769,7 +17769,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by ld $as_me 2.26.51, which was
|
This file was extended by ld $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@@ -17833,7 +17833,7 @@ Report bugs to the package provider."
|
|||||||
_ACEOF
|
_ACEOF
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
ld config.status 2.26.51
|
ld config.status 2.27
|
||||||
configured by $0, generated by GNU Autoconf 2.64,
|
configured by $0, generated by GNU Autoconf 2.64,
|
||||||
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||||
|
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ TEMPLATE_NAME=elf32
|
|||||||
EXTRA_EM_FILE=aarch64elf
|
EXTRA_EM_FILE=aarch64elf
|
||||||
|
|
||||||
GENERATE_SHLIB_SCRIPT=yes
|
GENERATE_SHLIB_SCRIPT=yes
|
||||||
|
GENERATE_PIE_SCRIPT=yes
|
||||||
|
|
||||||
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
||||||
|
|
||||||
ENTRY=_start
|
ENTRY=_start
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ TEMPLATE_NAME=elf32
|
|||||||
EXTRA_EM_FILE=aarch64elf
|
EXTRA_EM_FILE=aarch64elf
|
||||||
|
|
||||||
GENERATE_SHLIB_SCRIPT=yes
|
GENERATE_SHLIB_SCRIPT=yes
|
||||||
|
GENERATE_PIE_SCRIPT=yes
|
||||||
|
|
||||||
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
||||||
|
|
||||||
ENTRY=_start
|
ENTRY=_start
|
||||||
|
|||||||
1479
ld/po/ld.pot
1479
ld/po/ld.pot
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,15 @@
|
|||||||
|
2016-08-03 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
|
2016-07-01 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-07-01 Jan Beulich <jbeulich@suse.com>
|
2016-07-01 Jan Beulich <jbeulich@suse.com>
|
||||||
|
|
||||||
* i386-opc.tbl (movzbl, movzbw, movzbq, movzwl, movzwq): Remove.
|
* i386-opc.tbl (movzbl, movzbw, movzbq, movzwl, movzwq): Remove.
|
||||||
|
|||||||
20
opcodes/configure
vendored
20
opcodes/configure
vendored
@@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.64 for opcodes 2.26.51.
|
# Generated by GNU Autoconf 2.64 for opcodes 2.27.
|
||||||
#
|
#
|
||||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||||
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
|
||||||
@@ -556,8 +556,8 @@ MAKEFLAGS=
|
|||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='opcodes'
|
PACKAGE_NAME='opcodes'
|
||||||
PACKAGE_TARNAME='opcodes'
|
PACKAGE_TARNAME='opcodes'
|
||||||
PACKAGE_VERSION='2.26.51'
|
PACKAGE_VERSION='2.27'
|
||||||
PACKAGE_STRING='opcodes 2.26.51'
|
PACKAGE_STRING='opcodes 2.27'
|
||||||
PACKAGE_BUGREPORT=''
|
PACKAGE_BUGREPORT=''
|
||||||
PACKAGE_URL=''
|
PACKAGE_URL=''
|
||||||
|
|
||||||
@@ -1321,7 +1321,7 @@ if test "$ac_init_help" = "long"; then
|
|||||||
# Omit some internal or obsolete options to make the list less imposing.
|
# 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.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures opcodes 2.26.51 to adapt to many kinds of systems.
|
\`configure' configures opcodes 2.27 to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
@@ -1392,7 +1392,7 @@ fi
|
|||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of opcodes 2.26.51:";;
|
short | recursive ) echo "Configuration of opcodes 2.27:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
@@ -1499,7 +1499,7 @@ fi
|
|||||||
test -n "$ac_init_help" && exit $ac_status
|
test -n "$ac_init_help" && exit $ac_status
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
opcodes configure 2.26.51
|
opcodes configure 2.27
|
||||||
generated by GNU Autoconf 2.64
|
generated by GNU Autoconf 2.64
|
||||||
|
|
||||||
Copyright (C) 2009 Free Software Foundation, Inc.
|
Copyright (C) 2009 Free Software Foundation, Inc.
|
||||||
@@ -1909,7 +1909,7 @@ cat >config.log <<_ACEOF
|
|||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by opcodes $as_me 2.26.51, which was
|
It was created by opcodes $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
@@ -3718,7 +3718,7 @@ fi
|
|||||||
|
|
||||||
# Define the identity of the package.
|
# Define the identity of the package.
|
||||||
PACKAGE='opcodes'
|
PACKAGE='opcodes'
|
||||||
VERSION='2.26.51'
|
VERSION='2.27'
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
cat >>confdefs.h <<_ACEOF
|
||||||
@@ -13260,7 +13260,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by opcodes $as_me 2.26.51, which was
|
This file was extended by opcodes $as_me 2.27, which was
|
||||||
generated by GNU Autoconf 2.64. Invocation command line was
|
generated by GNU Autoconf 2.64. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@@ -13324,7 +13324,7 @@ Report bugs to the package provider."
|
|||||||
_ACEOF
|
_ACEOF
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
opcodes config.status 2.26.51
|
opcodes config.status 2.27
|
||||||
configured by $0, generated by GNU Autoconf 2.64,
|
configured by $0, generated by GNU Autoconf 2.64,
|
||||||
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user